diff --git a/code/_global_vars/lists/misc.dm b/code/_global_vars/lists/misc.dm
index 97cc3753a1..f8666fc68e 100644
--- a/code/_global_vars/lists/misc.dm
+++ b/code/_global_vars/lists/misc.dm
@@ -10,4 +10,8 @@ GLOBAL_LIST_EMPTY(tagger_locations)
GLOBAL_LIST_INIT(char_directory_tags, list("Pred", "Pred-Pref", "Prey", "Prey-Pref", "Switch", "Non-Vore", "Unset"))
GLOBAL_LIST_INIT(char_directory_erptags, list("Top", "Bottom", "Switch", "No ERP", "Unset"))
+// CHOMPStation Edit Start: Directory Update
+GLOBAL_LIST_INIT(char_directory_sexualitytags, list("Straight", "Bisexual", "Pansexual", "Gay", "Lesbian", "Asexual", "Demisexual", "Unset"))
+GLOBAL_LIST_INIT(char_directory_gendertags, list("Male", "Female", "Nonbinary", "Trans Man", "Trans Woman", "Other", "Ungendered", "Unset"))
+// CHOMPStation Edit End: Directory Update
GLOBAL_LIST_EMPTY(crafting_recipes) //list of all table craft recipes
diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm
index 50c500fd64..76c930deee 100644
--- a/code/_helpers/global_lists_vr.dm
+++ b/code/_helpers/global_lists_vr.dm
@@ -534,7 +534,7 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN,
"Research Intern",
"Security Cadet",
"Jr. Cargo Tech",
- "Jr. Explorer",
+ "Jr. Explorer", //CHOMP explo keep
"Server",
"Electrician",
"Barista")
@@ -973,7 +973,7 @@ var/global/list/BUILDABLE_AREA_TYPES = list(
// /area/maintenance/groundbase/level1,
// /area/submap/groundbase/wilderness,
// /area/groundbase/mining,
-// /area/offmap/aerostat/surface,
+// /area/offmap/aerostat/surface,
// /area/tether_away/beach,
// /area/tether_away/cave,
)
diff --git a/code/controllers/communications.dm b/code/controllers/communications.dm
index acfa32d52f..b129bc2a63 100644
--- a/code/controllers/communications.dm
+++ b/code/controllers/communications.dm
@@ -141,7 +141,7 @@ var/list/radiochannels = list(
"Raider" = RAID_FREQ,
"Supply" = SUP_FREQ,
"Service" = SRV_FREQ,
- "Explorer" = EXP_FREQ,
+ "Explorer" = EXP_FREQ, //CHOMP explo keep
"AI Private" = AI_FREQ,
"Entertainment" = ENT_FREQ,
"Medical(I)" = MED_I_FREQ,
diff --git a/code/datums/supplypacks/materials.dm b/code/datums/supplypacks/materials.dm
index d06238dc41..532ec83680 100644
--- a/code/datums/supplypacks/materials.dm
+++ b/code/datums/supplypacks/materials.dm
@@ -57,20 +57,47 @@
containername = "Cardboard sheets crate"
/datum/supply_pack/materials/carpet
- name = "Imported carpet"
+ name = "Imported standard carpet"
containertype = /obj/structure/closet/crate/grayson
containername = "Imported carpet crate"
cost = 15
contains = list(
/obj/fiftyspawner/carpet,
- /obj/fiftyspawner/tealcarpet
+ /obj/fiftyspawner/tealcarpet,
+ /obj/fiftyspawner/turcarpet
+ )
+
+/datum/supply_pack/materials/carpet_ornate
+ name = "Imported ornate carpet"
+ containertype = /obj/structure/closet/crate/grayson
+ containername = "Imported ornate carpet crate"
+ cost = 20
+ contains = list(
+ /obj/fiftyspawner/brncarpet,
+ /obj/fiftyspawner/blucarpet2,
+ /obj/fiftyspawner/greencarpet,
+ /obj/fiftyspawner/purplecarpet
+ )
+
+/datum/supply_pack/materials/carpet_diamond
+ name = "Imported diamond carpet"
+ containertype = /obj/structure/closet/crate/grayson
+ containername = "Imported diamond carpet crate"
+ cost = 30
+ contains = list(
+ /obj/fiftyspawner/bcarpet,
+ /obj/fiftyspawner/blucarpet,
+ /obj/fiftyspawner/sblucarpet,
+ /obj/fiftyspawner/gaycarpet,
+ /obj/fiftyspawner/purcarpet,
+ /obj/fiftyspawner/oracarpet
)
/datum/supply_pack/materials/retrocarpet
- name = "Retro carpet"
+ name = "Imported retro carpet"
containertype = /obj/structure/closet/crate/grayson
- containername = "Retro carpet crate"
- cost = 15
+ containername = "Imported retro carpet crate"
+ cost = 20
contains = list(
/obj/fiftyspawner/geocarpet,
/obj/fiftyspawner/retrocarpet,
diff --git a/code/datums/supplypacks/misc_vr.dm b/code/datums/supplypacks/misc_vr.dm
index 67cdfbb562..56f3bf1b82 100644
--- a/code/datums/supplypacks/misc_vr.dm
+++ b/code/datums/supplypacks/misc_vr.dm
@@ -26,7 +26,7 @@
containername = "eva hardsuit crate"
access = list(access_mining,
access_eva,
- access_explorer,
+ access_explorer, //CHOMP explo keep
access_pilot)
one_access = TRUE
@@ -125,12 +125,12 @@
access = list(access_mining,
access_xenoarch,
access_eva,
- access_explorer,
+ access_explorer, //CHOMP explo keep
access_pilot)
one_access = TRUE
/datum/supply_pack/randomised/misc/explorer_shield
- name = "Explorer shield"
+ name = "Explorer shield" //CHOMP explo keep
num_contained = 2
contains = list(
/obj/item/weapon/shield/riot/explorer,
@@ -139,7 +139,7 @@
cost = 75
containertype = /obj/structure/closet/crate/secure/gear
containername = "exploration shield crate"
- access = list(access_explorer,
+ access = list(access_explorer, //CHOMP explo keep
access_eva,
access_pilot)
one_access = TRUE
@@ -171,7 +171,7 @@
containertype = /obj/structure/closet/crate/secure/gear
containername = "exploration radio headsets crate"
access = list(
- access_explorer,
+ access_explorer, //CHOMP explo keep
access_eva,
access_pilot
)
diff --git a/code/datums/supplypacks/munitions_vr.dm b/code/datums/supplypacks/munitions_vr.dm
index d53a496928..f18f8a6044 100644
--- a/code/datums/supplypacks/munitions_vr.dm
+++ b/code/datums/supplypacks/munitions_vr.dm
@@ -1,23 +1,25 @@
-/datum/supply_pack/munitions/expeditionguns
- name = "Frontier phaser (station-locked) crate"
+/datum/supply_pack/munitions/expeditionguns //CHOMP Edit begin: Re-appropriating this whole block. Changing frontier phasers to phaseguns.
+ name = "Exploration phasegun (station-locked) crate"
contains = list(
- /obj/item/weapon/gun/energy/locked/frontier = 2,
- /obj/item/weapon/gun/energy/locked/frontier/holdout = 2,
+ /obj/item/weapon/gun/energy/locked/phasegun/pistol = 2,
+ /obj/item/weapon/gun/energy/locked/phasegun/rifle = 2,
+ /obj/item/weapon/gun/energy/locked/phasegun = 2
)
cost = 35
containertype = /obj/structure/closet/crate/secure
- containername = "frontier phaser crate"
+ containername = "phasegun crate"
access = access_explorer
-/datum/supply_pack/munitions/expeditionbows
- name = "Frontier bows (station-locked) crate"
+/datum/supply_pack/munitions/expeditioncannon
+ name = "Exploration phasecannon (station-locked) crate"
contains = list(
- /obj/item/weapon/gun/energy/locked/frontier/handbow=2
+ /obj/item/weapon/gun/energy/locked/phasegun/cannon = 1
)
- cost = 20
+ cost = 50
containertype = /obj/structure/closet/crate/secure
- containername = "phaser handbow crate"
- access = access_explorer
+ containername = "phasegun cannon crate"
+ access = access_explorer
+//CHOMP Edit end
/datum/supply_pack/munitions/ofd_charge_emp
name = "OFD Charge - EMP"
diff --git a/code/datums/supplypacks/supply.dm b/code/datums/supplypacks/supply.dm
index 70f8386a91..d80f7d1bc4 100644
--- a/code/datums/supplypacks/supply.dm
+++ b/code/datums/supplypacks/supply.dm
@@ -157,7 +157,7 @@
containername = "Cargo Train Trolley Crate"
/datum/supply_pack/explorergear
- name="Explorer gear"
+ name="Explorer gear" //CHOMP explo keep
contains = list (
/obj/item/device/cataloguer,
/obj/item/device/geiger,
@@ -178,8 +178,8 @@
)
cost=25
containertype = /obj/structure/closet/crate/secure/xion
- containername = "Explorer equipment"
- access = access_explorer
+ containername = "Explorer equipment" //CHOMP explo keep
+ access = access_explorer //CHOMP explo keep
/datum/supply_pack/pilotgear
name= "Pilot gear"
@@ -192,16 +192,16 @@
/obj/item/stack/marker_beacon/thirty,
/obj/item/device/gps/explorer,
/obj/item/clothing/gloves/fingerless,
- /obj/item/device/cataloguer/compact,
+ /obj/item/device/cataloguer/compact, //CHOMP explo keep
/obj/item/clothing/suit/storage/toggle/bomber/pilot,
/obj/item/clothing/shoes/boots/winter/explorer,
/obj/item/device/flashlight,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/head/pilot_vr,
/obj/item/clothing/under/rank/pilot1,
+ /obj/item/clothing/suit/storage/toggle/bomber/pilot
)
cost=20
containertype = /obj/structure/closet/crate/secure/xion
containername = "Pilot equipment"
access = access_pilot
-
diff --git a/code/datums/supplypacks/voidsuits_vr.dm b/code/datums/supplypacks/voidsuits_vr.dm
index a769cc805d..37cd0563c4 100644
--- a/code/datums/supplypacks/voidsuits_vr.dm
+++ b/code/datums/supplypacks/voidsuits_vr.dm
@@ -1,5 +1,5 @@
/datum/supply_pack/voidsuits/explorer
- name = "Exploration voidsuits"
+ name = "Exploration voidsuits" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/exploration = 2,
/obj/item/clothing/head/helmet/space/void/exploration = 2,
@@ -9,11 +9,11 @@
)
cost = 45
containertype = /obj/structure/closet/crate/secure
- containername = "Exploration voidsuit crate"
- access = access_explorer
+ containername = "Exploration voidsuit crate" //CHOMP explo keep
+ access = access_explorer //CHOMP explo keep
/datum/supply_pack/voidsuits/explorer_medic
- name = "Expedition Medic voidsuits"
+ name = "Expedition Medic voidsuits" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/exploration = 2,
/obj/item/clothing/head/helmet/space/void/exploration = 2,
@@ -23,8 +23,8 @@
)
cost = 45
containertype = /obj/structure/closet/crate/secure
- containername = "Expedition Medic voidsuit crate"
- access = access_explorer
+ containername = "Expedition Medic voidsuit crate" //CHOMP explo keep
+ access = access_explorer //CHOMP explo keep
/datum/supply_pack/voidsuits/pilot
name = "Pilot voidsuits"
@@ -53,9 +53,9 @@
containertype = /obj/structure/closet/crate/secure
name = "Solgov mining voidsuit crate"
access = access_mining
-
-/datum/supply_pack/voidsuits/solgov_anomaly
- name = "Solgov anomaly suit"
+
+/datum/supply_pack/voidsuits/solgov_anomaly //CHOMP explo keep
+ name = "Solgov anomaly suit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/anomaly/alt,
/obj/item/clothing/head/helmet/space/anomaly/alt
@@ -64,9 +64,9 @@
containertype = /obj/structure/closet/crate/secure
name = "Solgov anomaly suit crate"
access = access_xenoarch
-
-/datum/supply_pack/voidsuits/solgov_riot
- name = "Solgov riot voidsuit"
+
+/datum/supply_pack/voidsuits/solgov_riot //CHOMP explo keep
+ name = "Solgov riot voidsuit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/security/riot/alt,
/obj/item/clothing/head/helmet/space/void/security/riot/alt
@@ -75,9 +75,9 @@
containertype = /obj/structure/closet/crate/secure
name = "Solgov riot voidsuit crate"
access = access_brig
-
-/datum/supply_pack/voidsuits/solgov_pilot
- name = "Solgov pilot voidsuit"
+
+/datum/supply_pack/voidsuits/solgov_pilot //CHOMP explo keep
+ name = "Solgov pilot voidsuit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/pilot/alt2,
/obj/item/clothing/head/helmet/space/void/pilot/alt2
@@ -86,9 +86,9 @@
containertype = /obj/structure/closet/crate/secure
name = "Solgov pilot voidsuit crate"
access = access_pilot
-
-/datum/supply_pack/voidsuits/solgov_medical
- name = "Solgov medical voidsuit"
+
+/datum/supply_pack/voidsuits/solgov_medical //CHOMP explo keep
+ name = "Solgov medical voidsuit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/medical/alt2,
/obj/item/clothing/head/helmet/space/void/medical/alt2
@@ -105,11 +105,11 @@
)
cost = 150
containertype = /obj/structure/closet/crate/secure
- name = "Solgov exploration voidsuit crate"
- access = access_explorer
+ name = "Solgov exploration voidsuit crate" //CHOMP explo keep
+ access = access_explorer //CHOMP explo keep
-/datum/supply_pack/voidsuits/solgov_engineer
- name = "Solgov engineering voidsuit"
+/datum/supply_pack/voidsuits/solgov_engineer //CHOMP explo keep
+ name = "Solgov engineering voidsuit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/engineering/alt2,
/obj/item/clothing/head/helmet/space/void/engineering/alt2
@@ -118,9 +118,9 @@
containertype = /obj/structure/closet/crate/secure
name = "Solgov engineering voidsuit crate"
access = access_engine
-
-/datum/supply_pack/voidsuits/solgov_atmos
- name = "Solgov atmos voidsuit"
+
+/datum/supply_pack/voidsuits/solgov_atmos //CHOMP explo keep
+ name = "Solgov atmos voidsuit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/atmos/alt2,
/obj/item/clothing/head/helmet/space/void/atmos/alt2
@@ -129,9 +129,9 @@
containertype = /obj/structure/closet/crate/secure
name = "Solgov atmos voidsuit crate"
access = access_atmospherics
-
-/datum/supply_pack/voidsuits/solgov_captain
- name = "Solgov captain voidsuit"
+
+/datum/supply_pack/voidsuits/solgov_captain //CHOMP explo keep
+ name = "Solgov captain voidsuit" //CHOMP explo keep
contains = list(
/obj/item/clothing/suit/space/void/captain/alt,
/obj/item/clothing/head/helmet/space/void/captain/alt
@@ -141,4 +141,4 @@
name = "Solgov captain voidsuit crate"
access = access_captain
-// CHOMPStation EDIT End
\ No newline at end of file
+// CHOMPStation EDIT End
diff --git a/code/datums/underwear/bottom.dm b/code/datums/underwear/bottom.dm
index 944d373889..3458c6bab2 100644
--- a/code/datums/underwear/bottom.dm
+++ b/code/datums/underwear/bottom.dm
@@ -67,4 +67,9 @@
/datum/category_item/underwear/bottom/longjon
name = "Long John Bottoms"
icon_state = "ljonb"
+ has_color = TRUE
+
+/datum/category_item/underwear/bottom/thinpanties
+ name = "Panties, Thin"
+ icon_state = "thinpanties"
has_color = TRUE
\ No newline at end of file
diff --git a/code/datums/underwear/socks.dm b/code/datums/underwear/socks.dm
index 16465cfb61..72803644df 100644
--- a/code/datums/underwear/socks.dm
+++ b/code/datums/underwear/socks.dm
@@ -185,3 +185,7 @@
/datum/category_item/underwear/socks/trans_thigh
name = "Trans Pride Thigh Socks"
icon_state = "trans_thigh"
+
+/datum/category_item/underwear/socks/rippedpantyhose
+ name = "Pantyhose, Ripped"
+ icon_state = "rippedpantyhose"
\ No newline at end of file
diff --git a/code/datums/underwear/top.dm b/code/datums/underwear/top.dm
index 28a17c3ab7..3811bf4fbd 100644
--- a/code/datums/underwear/top.dm
+++ b/code/datums/underwear/top.dm
@@ -70,4 +70,10 @@
/datum/category_item/underwear/top/straplessbinder
name = "Binder Strapless"
- icon_state = "straplessbinder_s"
\ No newline at end of file
+ icon_state = "straplessbinder_s"
+
+/datum/category_item/underwear/top/onesleeve
+ name = "One Sleeve"
+ icon_state = "onesleeve"
+ has_color = TRUE
+
diff --git a/code/datums/uplink/tools_vr.dm b/code/datums/uplink/tools_vr.dm
index 1cf66457d0..702a8ae37b 100644
--- a/code/datums/uplink/tools_vr.dm
+++ b/code/datums/uplink/tools_vr.dm
@@ -73,10 +73,20 @@
item_cost = 15
path = /obj/fiftyspawner/glass
-/datum/uplink_item/item/tools/holdingpouch
- name = "Pouch of Holding"
- item_cost = 20
- path = /obj/item/weapon/storage/pouch/holding
+/datum/uplink_item/item/tools/smallpouch
+ name = "Small Pouch"
+ item_cost = 5
+ path = /obj/item/weapon/storage/pouch/small
+
+/datum/uplink_item/item/tools/normalpouch
+ name = "Standard Pouch"
+ item_cost = 10
+ path = /obj/item/weapon/storage/pouch
+
+/datum/uplink_item/item/tools/largepouch
+ name = "Large Pouch"
+ item_cost = 15
+ path = /obj/item/weapon/storage/pouch/large
/datum/uplink_item/item/tools/elitelaptop
name = "Laptop (Advanced)"
@@ -119,3 +129,18 @@
name = "Survival Capsule (Bar)"
item_cost = 80
path = /obj/item/device/survivalcapsule/luxurybar
+
+/datum/uplink_item/item/tools/capturecrystal
+ name = "Capture Crystal"
+ item_cost = 30
+ path = /obj/item/capture_crystal/basic
+
+/datum/uplink_item/item/tools/capturecrystal/great
+ name = "Capture Crystal (Great)"
+ item_cost = 40
+ path = /obj/item/capture_crystal/great
+
+/datum/uplink_item/item/tools/capturecrystal/ultra
+ name = "Capture Crystal (Ultra)"
+ item_cost = 50
+ path = /obj/item/capture_crystal/ultra
diff --git a/code/game/jobs/access_datum_vr.dm b/code/game/jobs/access_datum_vr.dm
index 4500e061a5..5c144e9d9a 100644
--- a/code/game/jobs/access_datum_vr.dm
+++ b/code/game/jobs/access_datum_vr.dm
@@ -1,16 +1,16 @@
//Moved from southern_cross_jobs.vr to fix a runtime
-var/const/access_explorer = 43
-/datum/access/explorer
- id = access_explorer
- desc = "Explorer"
+var/const/access_explorer = 43 //CHOMP explo keep
+/datum/access/explorer //CHOMP explo keep
+ id = access_explorer //CHOMP explo keep
+ desc = "Explorer" //CHOMP explo keep
region = ACCESS_REGION_GENERAL
-
+ //CHOMP explo keep removed a wide comment field on this line
/var/const/access_pathfinder = 44
/datum/access/pathfinder
id = access_pathfinder
desc = "Pathfinder"
region = ACCESS_REGION_GENERAL
-
+ //CHOMP explo keep removed the closing wide comment field on this line. KEEP THE PATHFINDER
var/const/access_pilot = 67
/datum/access/pilot
id = access_pilot
diff --git a/code/game/jobs/job/assistant_vr.dm b/code/game/jobs/job/assistant_vr.dm
index 1aa1f7cb55..c573d1300a 100644
--- a/code/game/jobs/job/assistant_vr.dm
+++ b/code/game/jobs/job/assistant_vr.dm
@@ -21,7 +21,7 @@
"Lab Assistant" = /datum/alt_title/intern_sci, //CHOMPEdit
"Security Cadet" = /datum/alt_title/intern_sec,
"Jr. Cargo Tech" = /datum/alt_title/intern_crg,
- "Jr. Explorer" = /datum/alt_title/intern_exp,
+ "Jr. Explorer" = /datum/alt_title/intern_exp, //CHOMP Explo keep
"Server" = /datum/alt_title/server,
"Assistant" = /datum/alt_title/assistant)
job_description = "An Intern does whatever is requested of them, often doing so in process of learning \
@@ -58,13 +58,13 @@
title_blurb = "A Jr. Cargo Tech attempts to provide whatever the Cargo department needs. They are not proper Cargo Technicians, and are \
often in training to become a Cargo Technician. A Jr. Cargo Tech has no real authority."
title_outfit = /decl/hierarchy/outfit/job/assistant/cargo
-
+ //CHOMP explo keep removed a wide comment field here
/datum/alt_title/intern_exp
title = "Jr. Explorer"
title_blurb = "A Jr. Explorer attempts to provide whatever the Exploration department needs. They are not proper Explorers, and are \
often in training to become an Explorer. A Jr. Explorer has no real authority."
title_outfit = /decl/hierarchy/outfit/job/assistant/explorer
-
+ //CHOMP explo keep removed the end of the wide comment field here
/datum/alt_title/server
title = "Server"
title_blurb = "A Server helps out kitchen and diner staff with various tasks, primarily food delivery. A Server has no real authority."
diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm
index 9c5de6d54b..75663dfe47 100644
--- a/code/game/jobs/job/civilian_vr.dm
+++ b/code/game/jobs/job/civilian_vr.dm
@@ -95,7 +95,7 @@
pto_type = PTO_CARGO
alt_titles = list(/*CHOMPEdit Removal "Deep Space Miner" = /datum/alt_title/deep_space_miner*/, "Drill Technician" = /datum/alt_title/drill_tech, "Prospector" = /datum/alt_title/prospector,
"Excavator" = /datum/alt_title/excavator)
-
+
/datum/alt_title/deep_space_miner
title = "Deep Space Miner"
title_blurb = "A Deep Space Miner specializes primarily in mining operations in zero-g environments, mostly in asteroid and debris fields."
@@ -214,8 +214,8 @@
departments = list(DEPARTMENT_CIVILIAN)
department_flag = CIVILIAN
faction = "Station"
- total_positions = 5
- spawn_positions = 5
+ total_positions = 5 //CHOMP explo keep
+ spawn_positions = 5 //CHOMP explo keep
supervisors = "the Head of Personnel"
selection_color = "#515151"
economic_modifier = 5
diff --git a/code/game/jobs/job/medical_vr.dm b/code/game/jobs/job/medical_vr.dm
index 8c2140c5a0..1b9e3f49b1 100644
--- a/code/game/jobs/job/medical_vr.dm
+++ b/code/game/jobs/job/medical_vr.dm
@@ -81,6 +81,8 @@
/datum/job/paramedic
pto_type = PTO_MEDICAL
alt_titles = list("Emergency Medical Technician" = /datum/alt_title/emt, "Medical Responder" = /datum/alt_title/medical_responder) //CHOMPedit: Removed SAR because that's an actual job here
+// total_positions = 3 //CHOMP Remove these two lines were added by the Virgo Explo Removal, because I guess they wanted more station paramedics because no more field medics on their code
+// spawn_positions = 3 //CHOMP Remove ^
/datum/alt_title/medical_responder
title = "Medical Responder"
diff --git a/code/game/jobs/job/offduty_vr.dm b/code/game/jobs/job/offduty_vr.dm
index 11a1b3d526..e9ba0bb99d 100644
--- a/code/game/jobs/job/offduty_vr.dm
+++ b/code/game/jobs/job/offduty_vr.dm
@@ -80,7 +80,7 @@
outfit_type = /decl/hierarchy/outfit/job/assistant/scientist
job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off."
pto_type = PTO_SCIENCE
- economic_modifier = 5
+ economic_modifier = 5
/datum/job/offduty_security
title = "Off-duty Officer"
diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm
index 9ee8ad6f6e..c8a980c2ce 100644
--- a/code/game/machinery/suit_storage_unit.dm
+++ b/code/game/machinery/suit_storage_unit.dm
@@ -663,14 +663,12 @@ GLOBAL_LIST_EMPTY(suit_cycler_typecache)
/datum/suit_cycler_choice/department/emag
)
can_repair = 1
-
/obj/machinery/suit_cycler/exploration
name = "Explorer suit cycler"
model_text = "Exploration"
limit_departments = list(
/datum/suit_cycler_choice/department/exp
)
-
/obj/machinery/suit_cycler/pilot
name = "Pilot suit cycler"
model_text = "Pilot"
diff --git a/code/game/machinery/suit_storage_unit_vr.dm b/code/game/machinery/suit_storage_unit_vr.dm
index 8eab955554..5dda239b93 100644
--- a/code/game/machinery/suit_storage_unit_vr.dm
+++ b/code/game/machinery/suit_storage_unit_vr.dm
@@ -1,7 +1,7 @@
// Old Exploration is too WIP to use right now
/obj/machinery/suit_cycler/exploration
req_access = null
- req_one_access = list(access_explorer,access_medical_equip)
+ req_one_access = list(access_explorer,access_medical_equip) //CHOMP explo keep
/obj/machinery/suit_cycler/pilot
req_access = list(access_pilot)
diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm
index 8d3ab1c8b4..b39d46b453 100644
--- a/code/game/mecha/mecha.dm
+++ b/code/game/mecha/mecha.dm
@@ -2905,3 +2905,15 @@
occupant.throw_alert("mech damage", /obj/screen/alert/low_mech_integrity, 3)
else
occupant.clear_alert("mech damage")
+
+/obj/mecha/blob_act(var/obj/structure/blob/B)
+ var/datum/blob_type/blob = B?.overmind?.blob_type
+ if(!istype(blob))
+ return FALSE
+
+ var/damage = rand(blob.damage_lower, blob.damage_upper)
+ src.take_damage(damage, blob.damage_type)
+ visible_message("\The [B] [blob.attack_verb] \the [src]!", "[blob.attack_message_synth]!")
+ playsound(src, 'sound/effects/attackblob.ogg', 50, 1)
+
+ return ..()
diff --git a/code/game/objects/effects/decals/Cleanable/misc.dm b/code/game/objects/effects/decals/Cleanable/misc.dm
index cf26c6463d..55cdcfa4ff 100644
--- a/code/game/objects/effects/decals/Cleanable/misc.dm
+++ b/code/game/objects/effects/decals/Cleanable/misc.dm
@@ -38,11 +38,24 @@
icon_state = "dirt"
mouse_opacity = 0
-/obj/effect/decal/cleanable/Initialize(var/mapload, var/_age)
+/obj/effect/decal/cleanable/dirt/Initialize(var/mapload, var/_age, var/dirt)
.=..()
var/turf/simulated/our_turf = src.loc
- if(our_turf && istype(our_turf) && our_turf.can_dirty && _age)
- our_turf.dirt = 101
+ if(our_turf && istype(our_turf) && our_turf.can_dirty)
+ our_turf.dirt = clamp(max(age ? (dirt ? dirt : 101) : our_turf.dirt, our_turf.dirt), 0, 101)
+ var/calcalpha = our_turf.dirt > 50 ? min((our_turf.dirt - 50) * 5, 255) : 0
+ var/alreadyfound = FALSE
+ for (var/obj/effect/decal/cleanable/dirt/alreadythere in our_turf) //in case of multiple
+ if (alreadythere == src)
+ continue
+ else if (alreadyfound)
+ qdel(alreadythere)
+ continue
+ alreadyfound = TRUE
+ alreadythere.alpha = calcalpha //don't need to constantly recalc for all of them in it because it'll just max if a non-persistent dirt overlay gets added, and then the new dirt overlay will be deleted
+ if (alreadyfound)
+ return INITIALIZE_HINT_QDEL
+ alpha = calcalpha
/obj/effect/decal/cleanable/flour
name = "flour"
diff --git a/code/game/objects/effects/job_start_landmarks.dm b/code/game/objects/effects/job_start_landmarks.dm
index 974b34a93f..1ce5b1de78 100644
--- a/code/game/objects/effects/job_start_landmarks.dm
+++ b/code/game/objects/effects/job_start_landmarks.dm
@@ -44,12 +44,14 @@
name = "Cargo Technician"
/obj/effect/landmark/start/miner
name = "Shaft Miner"
+ //CHOMP explo keep removed wide comment field
/obj/effect/landmark/start/pf
name = "Pathfinder"
/obj/effect/landmark/start/explorer
name = "Explorer"
/obj/effect/landmark/start/fieldmedic
name = "Field Medic"
+ //CHOMP explo keep removed wide comment field end
/obj/effect/landmark/start/bartender
name = "Bartender"
/obj/effect/landmark/start/botanist
diff --git a/code/game/objects/effects/semirandom_mobs_vr.dm b/code/game/objects/effects/semirandom_mobs_vr.dm
index e6b26da087..261c2d8620 100644
--- a/code/game/objects/effects/semirandom_mobs_vr.dm
+++ b/code/game/objects/effects/semirandom_mobs_vr.dm
@@ -534,7 +534,7 @@ var/global/list/semirandom_mob_spawner_decisions = list()
/mob/living/simple_mob/vore/oregrub = 5,
/mob/living/simple_mob/vore/oregrub/lava = 1
) = 15,
- list(/mob/living/simple_mob/vore/alienanimals/teppi) = 15,
+ list(/mob/living/simple_mob/vore/alienanimals/teppi) = 15, //CHOMP explo keep
list(/mob/living/simple_mob/vore/alienanimals/space_jellyfish) = 5,
list(/mob/living/simple_mob/vore/alienanimals/space_ghost) = 5,
list(
diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm
index a944d8c172..27b86f6df0 100644
--- a/code/game/objects/items/devices/paicard.dm
+++ b/code/game/objects/items/devices/paicard.dm
@@ -12,7 +12,7 @@ var/global/list/radio_channels_by_freq = list(
num2text(SCI_FREQ) = "Science",
num2text(SUP_FREQ) = "Supply",
num2text(SRV_FREQ) = "Service",
- num2text(EXP_FREQ) = "Explorer"
+ num2text(EXP_FREQ) = "Explorer" //CHOMP explo keep
)
GLOBAL_LIST_BOILERPLATE(all_pai_cards, /obj/item/device/paicard)
diff --git a/code/game/objects/items/devices/radio/encryptionkey_vr.dm b/code/game/objects/items/devices/radio/encryptionkey_vr.dm
index 92a5ed142b..c61d6bf39a 100644
--- a/code/game/objects/items/devices/radio/encryptionkey_vr.dm
+++ b/code/game/objects/items/devices/radio/encryptionkey_vr.dm
@@ -1,54 +1,54 @@
-/obj/item/device/encryptionkey/heads/hop //YW Edit: removes Explorer channel access, not in line with our chain of command.
+/obj/item/device/encryptionkey/heads/hop
name = "head of personnel's encryption key"
icon_state = "hop_cypherkey"
- channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 1)
+ channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 1) //YW Edit: removes Explorer channel access, not in line with our chain of command. CHOMP: We accept this
/obj/item/device/encryptionkey/heads/ai_integrated
name = "ai integrated encryption key"
desc = "Integrated encryption key"
icon_state = "cap_cypherkey"
- channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1, "AI Private" = 1, "Explorer" = 1)
+ channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1, "AI Private" = 1, "Away Team" = 1)
/obj/item/device/encryptionkey/heads/captain
name = "site manager's encryption key"
icon_state = "cap_cypherkey"
- channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1)
+ channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1, "Away Team" = 1)
-/obj/item/device/encryptionkey/heads/rd //YW Edit: adds Explorer channel access, to come in line with our chain of command.
+/obj/item/device/encryptionkey/heads/rd
name = "research director's encryption key"
icon_state = "rd_cypherkey"
- channels = list("Command" = 1, "Science" = 1, "Explorer" = 1)
+ channels = list("Command" = 1, "Science" = 1, "Explorer" = 1) //YW Edit: adds Explorer channel access, to come in line with our chain of command. CHOMP: We accept this
/obj/item/device/encryptionkey/ert
- channels = list("Response Team" = 1, "Science" = 1, "Command" = 1, "Medical" = 1, "Engineering" = 1, "Security" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1)
+ channels = list("Response Team" = 1, "Science" = 1, "Command" = 1, "Medical" = 1, "Engineering" = 1, "Security" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1) //CHOMP explo keep
/obj/item/device/encryptionkey/omni //Literally only for the admin intercoms
- channels = list("Mercenary" = 1, "Raider" = 1, "Response Team" = 1, "Science" = 1, "Command" = 1, "Medical" = 1, "Engineering" = 1, "Security" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1)
+ channels = list("Mercenary" = 1, "Raider" = 1, "Response Team" = 1, "Science" = 1, "Command" = 1, "Medical" = 1, "Engineering" = 1, "Security" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1) //CHOMP explo keep
-/obj/item/device/encryptionkey/pathfinder //YW Edit: removes command channel access, not in line with our chain of command.
+/obj/item/device/encryptionkey/pathfinder
name = "pathfinder's encryption key"
icon_state = "com_cypherkey"
- channels = list("Explorer" = 1)
+ channels = list("Explorer" = 1) //YW Edit: removes command channel access, not in line with our chain of command. CHOMP: We accept this
-/obj/item/device/encryptionkey/qm //YW Edit: removes command channel access, not in line with our chain of command.
+/obj/item/device/encryptionkey/qm
name = "quartermaster's encryption key"
icon_state = "qm_cypherkey"
- channels = list("Supply" = 1)
+ channels = list("Supply" = 1) //YW Edit: removes command channel access, not in line with our chain of command. CHOMP: We accept this
/obj/item/device/encryptionkey/pilot
name = "pilot's encryption key"
icon_state = "cypherkey"
- channels = list("Explorer" = 1)
+ channels = list("Explorer" = 1) //CHOMP explo keep
/obj/item/device/encryptionkey/explorer
- name = "explorer's encryption key"
+ name = "explorer's encryption key" //CHOMP explo keep
icon_state = "rob_cypherkey"
- channels = list("Explorer" = 1)
+ channels = list("Explorer" = 1) //CHOMP explo keep
/obj/item/device/encryptionkey/sar
name = "fm's encryption key"
icon_state = "med_cypherkey"
- channels = list("Medical" = 1, "Explorer" = 1)
+ channels = list("Medical" = 1, "Explorer" = 1) //CHOMP explo keep
/obj/item/device/encryptionkey/talon
channels = list("Talon" = 1)
diff --git a/code/game/objects/items/devices/radio/headset_vr.dm b/code/game/objects/items/devices/radio/headset_vr.dm
index 59259dc7d4..b36702e469 100644
--- a/code/game/objects/items/devices/radio/headset_vr.dm
+++ b/code/game/objects/items/devices/radio/headset_vr.dm
@@ -91,15 +91,15 @@
icon_state = "pilot_headset_alt"
/obj/item/device/radio/headset/explorer
- name = "explorer's headset"
- desc = "Headset used by explorers for exploring. Access to the explorer channel."
+ name = "explorer's headset" //CHOMP explo keep
+ desc = "Headset used by explorers for exploring. Access to the explorer channel." //CHOMP explo keep
icon_state = "exp_headset"
adhoc_fallback = TRUE
ks2type = /obj/item/device/encryptionkey/explorer
/obj/item/device/radio/headset/explorer/alt
- name = "explorer's bowman headset"
- desc = "Bowman headset used by explorers for exploring. Access to the explorer channel."
+ name = "explorer's bowman headset" //CHOMP explo keep
+ desc = "Bowman headset used by explorers for exploring. Access to the explorer channel." //CHOMP explo keep
icon_state = "exp_headset_alt"
/obj/item/device/radio/headset/sar
@@ -114,12 +114,14 @@
desc = "A bowman headset for field medics."
icon_state = "sar_headset_alt"
+ //CHOMP explo removed wide comment field
/obj/item/device/radio/headset/volunteer
name = "volunteer's headset"
- desc = "A headset used by volunteers to expedition teams, has access to the exploration channel."
+ desc = "A headset used by volunteers to expedition teams, has access to the exploration channel." //CHOMP explo keep
icon_state = "pilot_headset"
adhoc_fallback = TRUE
ks2type = /obj/item/device/encryptionkey/explorer
+ //CHOMP explo keep removed wide comment field end
/obj/item/device/radio/headset/talon
name = "talon headset"
diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm
index 147b7327e8..4810ea8375 100644
--- a/code/game/objects/items/devices/radio/radio.dm
+++ b/code/game/objects/items/devices/radio/radio.dm
@@ -14,7 +14,7 @@ var/global/list/default_internal_channels = list(
num2text(SCI_FREQ) = list(access_tox, access_robotics, access_xenobiology),
num2text(SUP_FREQ) = list(access_cargo, access_mining_station),
num2text(SRV_FREQ) = list(access_janitor, access_library, access_hydroponics, access_bar, access_kitchen),
- num2text(EXP_FREQ) = list(access_explorer, access_pilot)
+ num2text(EXP_FREQ) = list(access_explorer, access_pilot) //CHOMP explo keep
)
var/global/list/default_medbay_channels = list(
diff --git a/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm b/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm
index deec4b6964..598eb7a591 100644
--- a/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm
+++ b/code/game/objects/items/stacks/tiles/fifty_spawner_tiles.dm
@@ -28,6 +28,50 @@
name = "stack of teal carpet"
type_to_spawn = /obj/item/stack/tile/carpet/teal
+/obj/fiftyspawner/turcarpet
+ name = "stack of turqoise carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/turcarpet
+
+/obj/fiftyspawner/bcarpet
+ name = "stack of black diamond-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/bcarpet
+
+/obj/fiftyspawner/blucarpet
+ name = "stack of blue diamond-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/blucarpet
+
+/obj/fiftyspawner/sblucarpet
+ name = "stack of silver-blue diamond-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/sblucarpet
+
+/obj/fiftyspawner/gaycarpet
+ name = "stack of pink diamond-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/gaycarpet
+
+/obj/fiftyspawner/purcarpet
+ name = "stack of purple diamond-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/purcarpet
+
+/obj/fiftyspawner/oracarpet
+ name = "stack of orange diamond-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/oracarpet
+
+/obj/fiftyspawner/brncarpet
+ name = "stack of brown ornate-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/brncarpet
+
+/obj/fiftyspawner/blucarpet2
+ name = "stack of blue ornate-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/blucarpet2
+
+/obj/fiftyspawner/greencarpet
+ name = "stack of green ornate-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/greencarpet
+
+/obj/fiftyspawner/purplecarpet
+ name = "stack of purple ornate-pattern carpet"
+ type_to_spawn = /obj/item/stack/tile/carpet/purplecarpet
+
/obj/fiftyspawner/geocarpet
name = "stack of geometric carpet"
type_to_spawn = /obj/item/stack/tile/carpet/geo
@@ -44,22 +88,6 @@
name = "stack of happy carpet"
type_to_spawn = /obj/item/stack/tile/carpet/happy
-/obj/fiftyspawner/brncarpet
- name = "stack of brown carpet"
- type_to_spawn = /obj/item/stack/tile/carpet/brncarpet
-
-/obj/fiftyspawner/blucarpet2
- name = "stack of blue carpet"
- type_to_spawn = /obj/item/stack/tile/carpet/blucarpet2
-
-/obj/fiftyspawner/greencarpet
- name = "stack of green carpet"
- type_to_spawn = /obj/item/stack/tile/carpet/greencarpet
-
-/obj/fiftyspawner/purplecarpet
- name = "stack of purple carpet"
- type_to_spawn = /obj/item/stack/tile/carpet/purplecarpet
-
/obj/fiftyspawner/floor
name = "stack of floor tiles"
type_to_spawn = /obj/item/stack/tile/floor
diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm
index 6c50140a65..69742e0fcd 100644
--- a/code/game/objects/items/stacks/tiles/tile_types.dm
+++ b/code/game/objects/items/stacks/tiles/tile_types.dm
@@ -113,9 +113,6 @@
stacktype = /obj/item/stack/tile/wood
build_type = /obj/item/stack/tile/wood
-
-//CHOMPEDIT: Moving carpets to tile_types_ch to give them proper names, descriptions and material variables
-/*
/obj/item/stack/tile/carpet
name = "carpet"
singular_name = "carpet"
@@ -131,11 +128,52 @@
pickup_sound = 'sound/items/pickup/cloth.ogg'
/obj/item/stack/tile/carpet/teal
- name = "teal carpet"
- singular_name = "teal carpet"
desc = "A piece of teal carpet. It is the same size as a normal floor tile!"
icon_state = "tile-tealcarpet"
- no_variants = FALSE
+
+/obj/item/stack/tile/carpet/turcarpet
+ desc = "A piece of turqoise carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-turcarpet"
+
+/obj/item/stack/tile/carpet/bcarpet
+ desc = "A piece of black diamond-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-bcarpet"
+
+/obj/item/stack/tile/carpet/blucarpet
+ desc = "A piece of blue diamond-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-blucarpet"
+
+/obj/item/stack/tile/carpet/sblucarpet
+ desc = "A piece of silver-blue diamond-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-sblucarpet"
+
+/obj/item/stack/tile/carpet/gaycarpet
+ desc = "A piece of pink diamond-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-gaycarpet"
+
+/obj/item/stack/tile/carpet/purcarpet
+ desc = "A piece of purple diamond-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-purcarpet"
+
+/obj/item/stack/tile/carpet/oracarpet
+ desc = "A piece of orange diamond-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-oracarpet"
+
+/obj/item/stack/tile/carpet/brncarpet
+ desc = "A piece of brown ornate-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-brncarpet"
+
+/obj/item/stack/tile/carpet/blucarpet2
+ desc = "A piece of blue ornate-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-blucarpet2"
+
+/obj/item/stack/tile/carpet/greencarpet
+ desc = "A piece of green ornate-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-greencarpet"
+
+/obj/item/stack/tile/carpet/purplecarpet
+ desc = "A piece of purple ornate-pattern carpet. It is the same size as a normal floor tile!"
+ icon_state = "tile-purplecarpet"
/obj/item/stack/tile/carpet/geo
icon_state = "tile-carpet-deco"
@@ -153,30 +191,6 @@
icon_state = "tile-carpet-happy"
desc = "A piece of carpet with happy patterns. It is the same size as a normal floor tile!"
-/obj/item/stack/tile/carpet/bcarpet //YW EDIT: Commented out to help with upstream merging. Get on this you fucking virgo bois. -yw //CHOMP Comment: Yawn commented out this block, but CHOMP already commented out this stuff so I just removed theirs.
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/blucarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/turcarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/sblucarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/gaycarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/purcarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/oracarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/brncarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/blucarpet2
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/greencarpet
- icon_state = "tile-carpet"
-/obj/item/stack/tile/carpet/purplecarpet
- icon_state = "tile-carpet"
-*/
-
/obj/item/stack/tile/floor
name = "floor tile"
singular_name = "floor tile"
diff --git a/code/game/objects/items/weapons/shields_vr.dm b/code/game/objects/items/weapons/shields_vr.dm
index a311a74089..684e940f20 100644
--- a/code/game/objects/items/weapons/shields_vr.dm
+++ b/code/game/objects/items/weapons/shields_vr.dm
@@ -22,7 +22,7 @@
/obj/item/weapon/shield/riot/explorer
- name = "green explorer shield"
+ name = "green explorer shield" //CHOMP explo keep
desc = "A shield issued to exploration teams to help protect them when advancing into the unknown. It is lighter and cheaper but less protective than some of its counterparts. It has a flashlight straight in the middle to help draw attention."
icon = 'icons/obj/weapons_vr.dmi'
icon_state = "explorer_shield"
@@ -74,7 +74,7 @@
icon_state = "explorer_shield"
/obj/item/weapon/shield/riot/explorer/purple
- name = "purple explorer shield"
+ name = "purple explorer shield" //CHOMP explo keep
desc = "A shield issued to exploration teams to help protect them when advancing into the unknown. It is lighter and cheaper but less protective than some of its counterparts. It has a flashlight straight in the middle to help draw attention. This one is POURPEL"
icon_state = "explorer_shield_P"
diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm
index 5b93d14456..1bf0d3e3b3 100644
--- a/code/game/objects/items/weapons/storage/boxes_vr.dm
+++ b/code/game/objects/items/weapons/storage/boxes_vr.dm
@@ -1,7 +1,7 @@
/obj/item/weapon/storage/box/explorerkeys
name = "box of volunteer headsets"
desc = "A box full of volunteer headsets, for issuing out to exploration volunteers."
- starts_with = list(/obj/item/device/radio/headset/volunteer = 7)
+ starts_with = list(/obj/item/device/radio/headset/volunteer = 7) //CHOMP explo keep
/obj/item/weapon/storage/box/commandkeys
name = "box of command keys"
@@ -38,4 +38,4 @@
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red = 6)
/obj/item/weapon/storage/box/freezer
- can_hold = list(/obj/item/organ, /obj/item/weapon/reagent_containers/blood, /obj/item/weapon/reagent_containers/glass, /obj/item/weapon/reagent_containers/food)
\ No newline at end of file
+ can_hold = list(/obj/item/organ, /obj/item/weapon/reagent_containers/blood, /obj/item/weapon/reagent_containers/glass, /obj/item/weapon/reagent_containers/food)
diff --git a/code/game/objects/items/weapons/storage/pouches.dm b/code/game/objects/items/weapons/storage/pouches.dm
index f2a1892fa3..92daef2deb 100644
--- a/code/game/objects/items/weapons/storage/pouches.dm
+++ b/code/game/objects/items/weapons/storage/pouches.dm
@@ -49,12 +49,14 @@
desc = "This storage pouch can be used to provide a good amount of additional storage for quick access."
icon_state = "large_generic"
max_storage_space = ITEMSIZE_COST_SMALL*6
+ remove_delay = 3 SECONDS //VOREStation Add: Slightly more cumbersome
/obj/item/weapon/storage/pouch/small
name = "storage pouch (small)"
desc = "This storage pouch can be used to provide a small amount of additional storage for quick access."
icon_state = "small_generic"
max_storage_space = ITEMSIZE_COST_SMALL*2
+ remove_delay = 1 SECOND //VOREStation Add: Slightly less cumbersome
/obj/item/weapon/storage/pouch/ammo
name = "storage pouch (ammo)"
@@ -214,6 +216,6 @@
name = "storage pouch of holding"
desc = "This storage pouch can be used to provide some additional storage for quick access. Seems to use extradimensional storage!"
icon_state = "holdingpouch"
- max_storage_space = INVENTORY_STANDARD_SPACE // Size of a normal backpack, compared to a normal BoH, which is way bigger
+ max_storage_space = INVENTORY_POUCH_SPACE*2 //VOREStation Edit: Consistency with normal bags of holding
#undef INVENTORY_POUCH_SPACE
diff --git a/code/game/objects/structures/crates_lockers/closets/misc_vr.dm b/code/game/objects/structures/crates_lockers/closets/misc_vr.dm
index 73becfc093..51aa20c049 100644
--- a/code/game/objects/structures/crates_lockers/closets/misc_vr.dm
+++ b/code/game/objects/structures/crates_lockers/closets/misc_vr.dm
@@ -24,7 +24,7 @@
/obj/structure/closet/secure_closet/guncabinet/rifle
name = "rifle cabinet"
- req_one_access = list(access_explorer,access_brig)
+ req_one_access = list(access_explorer,access_brig) //CHOMP explo keep
starts_with = list(
/obj/item/ammo_magazine/clip/c762/hunter = 9,
@@ -38,8 +38,8 @@
return ..()
/obj/structure/closet/secure_closet/guncabinet/phase
- name = "explorer weapon cabinet"
- req_one_access = list(access_explorer,access_brig)
+ name = "explorer weapon cabinet" //CHOMP explo keep
+ req_one_access = list(access_explorer,access_brig) //CHOMP explo keep
starts_with = list(
/obj/item/weapon/gun/energy/locked/phasegun = 2,
@@ -51,8 +51,8 @@
* Explorer
*/
/obj/structure/closet/secure_closet/explorer
- name = "explorer locker"
- req_access = list(access_explorer)
+ name = "explorer locker" //CHOMP explo keep
+ req_access = list(access_explorer) //CHOMP explo keep
closet_appearance = /decl/closet_appearance/secure_closet/expedition/explorer
starts_with = list(
@@ -93,7 +93,7 @@
*/
/obj/structure/closet/secure_closet/pathfinder
name = "pathfinder locker"
- req_access = list(access_pathfinder)
+ req_access = list(access_pathfinder) //CHOMP explo keep
closet_appearance = /decl/closet_appearance/secure_closet/expedition/pathfinder
starts_with = list(
@@ -197,7 +197,7 @@
starts_with = list(
/obj/item/weapon/storage/backpack/parachute,
/obj/item/weapon/material/knife/tacknife/survival,
- /obj/item/weapon/gun/energy/locked/frontier/holdout,
+ /obj/item/weapon/gun/energy/locked/frontier/holdout, //CHOMP explo keep
/obj/item/clothing/head/pilot_vr,
/obj/item/clothing/under/rank/pilot1,
/obj/item/clothing/suit/storage/toggle/bomber/pilot,
@@ -215,7 +215,8 @@
/obj/item/weapon/cell/device,
/obj/item/device/radio,
/obj/item/device/gps/explorer,
- /obj/item/device/cataloguer/compact)
+ /obj/item/device/cataloguer/compact) //CHOMP edit
+ // /obj/item/weapon/gun/energy/gun/protector/pilotgun/locked) //CHOMP Removed
/obj/structure/closet/secure_closet/pilot/Initialize()
if(prob(50))
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
index b5e3e39150..01c34b642d 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm
@@ -52,7 +52,7 @@
//VOREStation Add Start
/obj/structure/closet/secure_closet/guncabinet/excursion
name = "expedition weaponry cabinet"
- req_one_access = list(access_explorer,access_armory)
+ req_one_access = list(access_explorer,access_armory) //CHOMP keep explo
/obj/structure/closet/secure_closet/guncabinet/excursion/New()
..()
@@ -60,4 +60,4 @@
new /obj/item/weapon/gun/energy/locked/frontier(src)
for(var/i = 1 to 2)
new /obj/item/weapon/gun/energy/locked/frontier/holdout(src)
-//VOREStation Add End
\ No newline at end of file
+//VOREStation Add End
diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm
index fa9d9dc2a0..d4f779fba9 100644
--- a/code/game/objects/structures/window.dm
+++ b/code/game/objects/structures/window.dm
@@ -185,9 +185,9 @@
user.do_attack_animation(src)
shatter()
- else if (usr.a_intent == I_HURT)
+ else if(usr && usr.a_intent == I_HURT) //CHOMPEdit
- if (istype(usr,/mob/living/carbon/human))
+ if(istype(usr,/mob/living/carbon/human))
var/mob/living/carbon/human/H = usr
if(H.species.can_shred(H))
attack_generic(H,25)
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index cea2049d4b..8a77a2b854 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -469,7 +469,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
switch(location)
if("Right Here") //Spawn them on your turf
spawnloc = get_turf(src.mob)
- showy = tgui_alert(src,"Showy entrance?", "Showy", list("No", "Telesparks", "Drop Pod", "Cancel"))
+ showy = tgui_input_list(src,"Showy entrance?", "Showy", list("No", "Telesparks", "Drop Pod", "Fall", "Cancel"))
if(showy == "Cancel")
return
if(showy == "Drop Pod")
@@ -559,7 +559,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
feedback_add_details("admin_verb","RSPCH") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
- // Drop pods
+ // Drop pods and fall
if(showy == "Polite")
var/turf/T = get_turf(new_character)
new /obj/structure/drop_pod/polite(T, new_character)
@@ -568,7 +568,18 @@ Traitors and the like can also be revived with the previous role mostly intact.
var/turf/T = get_turf(new_character)
new /obj/structure/drop_pod(T, new_character)
to_chat(new_character, "Please wait for your arrival.")
- else
+ else if(showy == "Fall")
+ spawn(1)
+ var/initial_x = new_character.pixel_x
+ var/initial_y = new_character.pixel_y
+ new_character.plane = 1
+ new_character.pixel_x = rand(-150, 150)
+ new_character.pixel_y = 500 // When you think that pixel_z is height but you are wrong
+ new_character.density = FALSE
+ new_character.opacity = FALSE
+ animate(new_character, pixel_y = initial_y, pixel_x = initial_x , time = 7)
+ spawn(7)
+ new_character.end_fall()
to_chat(new_character, "You have been fully spawned. Enjoy the game.")
return new_character
diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm
index 652544d7e0..9bfdac3f32 100644
--- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm
@@ -57,44 +57,44 @@
path = /obj/item/clothing/accessory/collar/holo/indigestible
/datum/gear/accessory/holster
- display_name = "holster selection (Security, SM, HoP, Exploration)"
- allowed_roles = list("Site Manager", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Field Medic","Explorer","Pathfinder","Talon Captain","Talon Guard")
+ display_name = "holster selection (Security, SM, HoP, Exploration)" //CHOMP keep explo
+ allowed_roles = list("Site Manager", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Field Medic","Explorer","Pathfinder","Talon Captain","Talon Guard") //CHOMP keep explo
/datum/gear/accessory/brown_vest
- display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)"
+ display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)" //CHOMP keep explo
allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Blueshield Guard","Security Pilot", "Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") //YW ADDITIONS
/datum/gear/accessory/black_vest
- display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)"
+ display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)" //CHOMP keep explo
allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Blueshield Guard","Security Pilot", "Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") //YW ADDITIONS
/datum/gear/accessory/white_vest
display_name = "webbing, white (Medical)"
- allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic")
+ allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic") //CHOMP keep explo
/datum/gear/accessory/brown_drop_pouches
- display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)"
+ display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)" //CHOMP keep explo
allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Blueshield Guard","Security Pilot", "Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") //YW ADDITIONS
/datum/gear/accessory/black_drop_pouches
- display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)"
+ display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)" //CHOMP keep explo
allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Blueshield Guard","Security Pilot", "Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") //YW ADDITIONS
/datum/gear/accessory/white_drop_pouches
display_name = "drop pouches, white (Medical)"
- allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic")
+ allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic") //CHOMP keep explo
/datum/gear/accessory/bluespace
- display_name = "bluespace badge (Eng, Sec, Med, Exploration, Miner, Pilot)"
+ display_name = "bluespace badge (Eng, Sec, Med, Exploration, Miner, Pilot)" //CHOMP keep explo
path = /obj/item/clothing/accessory/storage/bluespace
- allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard","Talon Miner","Pilot")
+ allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard","Talon Miner","Pilot") //CHOMP keep explo
cost = 2
/datum/gear/accessory/webbing
cost = 1
/datum/gear/accessory/stethoscope
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic","Field Medic") //CHOMP keep explo
/datum/gear/accessory/khcrystal
display_name = "Life Crystal"
@@ -110,7 +110,7 @@
display_name = "pilot qualification pin"
description = "An iron pin denoting the qualification to fly USG spacecraft."
path = /obj/item/clothing/accessory/solgov/specialty/pilot
- allowed_roles = list("Pathfinder","Pilot","Field Medic","Talon Pilot")
+ allowed_roles = list("Pathfinder","Pilot","Field Medic","Talon Pilot") //CHOMP keep explo
/datum/gear/accessory/flops
display_name = "drop straps"
@@ -138,4 +138,4 @@ Talon pin
/datum/gear/accessory/altevian_badge
display_name = "altevian badge"
- path = /obj/item/clothing/accessory/altevian_badge
\ No newline at end of file
+ path = /obj/item/clothing/accessory/altevian_badge
diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm
index e444dcaa85..3432623fbb 100644
--- a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm
@@ -1,9 +1,9 @@
/datum/gear/eyes/medical
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist","Field Medic") //CHOMP keep explo
/datum/gear/eyes/meson
display_name = "Optical Meson Scanners (Eng, Sci, Explo)"
- allowed_roles = list("Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Explorer", "Pathfinder")
+ allowed_roles = list("Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Explorer", "Pathfinder") //CHOMP keep explo
/datum/gear/eyes/arglasses
display_name = "AR glasses"
@@ -38,7 +38,7 @@
/datum/gear/eyes/arglasses/med
display_name = "AR-M glasses (Medical)"
path = /obj/item/clothing/glasses/omnihud/med
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic") //CHOMP keep explo
/datum/gear/eyes/arglasses/all
display_name = "AR-B glasses (SM, HoP)"
diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
index 7dccf2dc13..ced1e44307 100644
--- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm
@@ -499,6 +499,13 @@
ckeywhitelist = list("jemli")
character_name = list("Jemli")
+/datum/gear/fluff/fen_crown
+ path = /obj/item/clothing/head/crown
+ display_name = "Princess Crown"
+ slot = slot_head
+ ckeywhitelist = list("jemli")
+ character_name = list("Princess Afenia")
+
/datum/gear/fluff/jeremiah_holster
path = /obj/item/clothing/accessory/holster/armpit
display_name = "Ace's Holster"
@@ -649,7 +656,7 @@
display_name = "Kenzie's Hypospray"
ckeywhitelist = list("lm40")
character_name = list("Kenzie Houser")
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") //CHOMP keep explo
/datum/gear/fluff/brianna_backpack
path = /obj/item/weapon/storage/backpack/messenger/black/fluff/briana
@@ -886,7 +893,7 @@
display_name = "LUNA's Nobel Science Award"
ckeywhitelist = list("residentcody")
character_name = list("LUNA")
-
+
/datum/gear/fluff/luna_conduct_medal
path = /obj/item/clothing/accessory/medal/conduct
display_name = "LUNA's Distinguished Conduct Medal"
@@ -1289,7 +1296,7 @@
slot = slot_glasses
ckeywhitelist = list("wickedtemp")
character_name = list("Chakat Tempest Venosare")
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic", "Off-duty Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic","Field Medic","Off-duty Medic") //CHOMP keep explo
/datum/gear/fluff/tempest_hypospray
path = /obj/item/weapon/reagent_containers/hypospray/vial/tempest
@@ -1297,7 +1304,7 @@
slot = slot_belt
ckeywhitelist = list("wickedtemp")
character_name = list("Chakat Tempest Venosare")
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic", "Off-duty Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic", "Off-duty Medic") //CHOMP keep explo
/datum/gear/fluff/tempest_backpack
path = /obj/item/weapon/storage/backpack/saddlebag/tempest
diff --git a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm
index 3ddc8c5388..e272e1df60 100644
--- a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm
@@ -1,7 +1,7 @@
/datum/gear/head/cap/med
display_name = "cap, medical (Medical)"
path = /obj/item/clothing/head/soft/med
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic","Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic","Field Medic") //CHOMP keep explo
/*/datum/gear/head/cap/sol
display_name = "cap, sol"
diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm
index 66e93fbbf6..e27caf4672 100644
--- a/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm
@@ -1,5 +1,5 @@
/datum/gear/shoes/boots/winter/medical
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic") //CHOMP keep explo
/datum/gear/shoes/black/cuffs
display_name = "legwraps, black"
diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm
index 14cc60208d..d3bef86d72 100644
--- a/code/modules/client/preference_setup/loadout/loadout_suit.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm
@@ -247,7 +247,7 @@
/datum/gear/suit/roles/cloak
display_name = "cloak selection, departments"
- path = /obj/item/clothing/accessory/poncho/roles/cloak/cargo
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/cargo
cost = 1
/datum/gear/suit/roles/cloak/New()
@@ -390,12 +390,12 @@
/datum/gear/suit/wintercoat/medical
display_name = "winter coat, medical"
path = /obj/item/clothing/suit/storage/hooded/wintercoat/medical
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic") //CHOMP keep explo
/datum/gear/suit/wintercoat/medical/alt
display_name = "winter coat, medical alt"
path = /obj/item/clothing/suit/storage/hooded/wintercoat/medical/alt
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist","Field Medic") //CHOMP keep explo
/datum/gear/suit/wintercoat/medical/viro
display_name = "winter coat, virologist"
@@ -420,7 +420,7 @@
/datum/gear/suit/wintercoat/medical/sar
display_name = "winter coat, search and rescue"
path = /obj/item/clothing/suit/storage/hooded/wintercoat/medical/sar
- allowed_roles = list("Chief Medical Officer", "Field Medic")
+ allowed_roles = list("Chief Medical Officer", "Field Medic") //CHOMP keep explo
/datum/gear/suit/wintercoat/science
display_name = "winter coat, science"
diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
index 2ee40df1d8..bedec4c0aa 100644
--- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm
@@ -1,5 +1,5 @@
/datum/gear/suit/snowsuit/medical
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist", "Field Medic") //CHOMP keep explo
/datum/gear/suit/labcoat_colorable
display_name = "labcoat, colorable"
@@ -74,7 +74,7 @@
/datum/gear/suit/roles/medical/ems_jacket
display_name = "first responder jacket"
path = /obj/item/clothing/suit/storage/toggle/fr_jacket
- allowed_roles = list("Chief Medical Officer","Paramedic","Medical Doctor","Field Medic")
+ allowed_roles = list("Chief Medical Officer","Paramedic","Medical Doctor","Field Medic") //CHOMP keep explo
//imo-superior 'martian' style jacket with the star-of-life design
/datum/gear/suit/roles/medical/ems_jacket/alt
@@ -85,7 +85,7 @@
/datum/gear/suit/roles/medical/paramedic_vest
display_name = "paramedic vest"
path = /obj/item/clothing/suit/storage/toggle/paramedic
- allowed_roles = list("Chief Medical Officer","Paramedic","Medical Doctor","Field Medic")
+ allowed_roles = list("Chief Medical Officer","Paramedic","Medical Doctor","Field Medic") //CHOMP keep explo
//greek thing
/datum/gear/suit/chiton
@@ -113,7 +113,7 @@ Talon winter coat
/datum/gear/suit/armor/combat/crusader_explo
display_name = "knight, explo"
path = /obj/item/clothing/suit/armor/combat/crusader_explo
- allowed_roles = list("Explorer","Field Medic","Pathfinder")
+ allowed_roles = list("Explorer","Field Medic","Pathfinder") //CHOMP keep explo
/datum/gear/suit/armor/combat/crusader_explo/FM
display_name = "knight, Field Medic"
diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm
index da716f5f6e..06c3b34182 100644
--- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm
@@ -20,7 +20,7 @@
/datum/gear/uniform/job_turtle/medical
display_name = "turtleneck, medical"
path = /obj/item/clothing/under/rank/medical/turtleneck
- allowed_roles = list("Chief Medical Officer", "Paramedic", "Medical Doctor", "Psychiatrist", "Field Medic", "Chemist")
+ allowed_roles = list("Chief Medical Officer", "Paramedic", "Medical Doctor", "Psychiatrist", "Field Medic", "Chemist") //CHOMP keep explo
//KHI Uniforms
/datum/gear/uniform/job_khi/cmd
@@ -36,7 +36,7 @@
/datum/gear/uniform/job_khi/med
display_name = "ge uniform, med" //CHOMPedit: changed to GE suit
path = /obj/item/clothing/under/rank/khi/med
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Field Medic","Psychiatrist")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Field Medic","Psychiatrist") //CHOMP keep explo
/datum/gear/uniform/job_khi/eng
display_name = "ge uniform, eng" //CHOMPedit: changed to GE suit
@@ -66,7 +66,7 @@
/datum/gear/suit/job_fed/medsci
display_name = "fed uniform, med/sci"
path = /obj/item/clothing/suit/storage/fluff/fedcoat/fedblue
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist","Xenobotanist","Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist","Xenobotanist", "Field Medic") //CHOMP keep explo
/datum/gear/suit/job_fed/eng
display_name = "fed uniform, eng"
@@ -83,13 +83,13 @@
/datum/gear/uniform/job_trek/medsci/tos
display_name = "TOS uniform, med/sci"
path = /obj/item/clothing/under/rank/trek/medsci
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic") //CHOMP keep explo
/datum/gear/uniform/job_trek/eng/tos
display_name = "TOS uniform, eng" //CHOMPEdit: Removed sec from the name. Gonna separate sec into its own so that I can apply armor value.
path = /obj/item/clothing/under/rank/trek/eng //CHOMPEdit: Engineering only
allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") //CHOMPEdit: Removed sec from the allowed list. Gonna separate sec into its own so that I can apply armor value.
-
+
//CHOMPEdit: See loadout_uniform_vr_ch.dm for a security-specific variant that has standard armor values.
//TNG
@@ -101,13 +101,13 @@
/datum/gear/uniform/job_trek/medsci/tng
display_name = "TNG uniform, med/sci"
path = /obj/item/clothing/under/rank/trek/medsci/next
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic") //CHOMP keep explo
/datum/gear/uniform/job_trek/eng/tng
display_name = "TNG uniform, eng" //CHOMPEdit: Removed sec from the name. Gonna separate sec into its own so that I can apply armor value.
path = /obj/item/clothing/under/rank/trek/eng/next //CHOMPEdit: Engineering only
allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") //CHOMPEdit: Removed sec from the allowed list. Gonna separate sec into its own so that I can apply armor value.
-
+
//CHOMPEdit: See loadout_uniform_vr_ch.dm for a security-specific variant that has standard armor values.
//VOY
@@ -119,13 +119,13 @@
/datum/gear/uniform/job_trek/medsci/voy
display_name = "VOY uniform, med/sci"
path = /obj/item/clothing/under/rank/trek/medsci/voy
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic") //CHOMP keep explo
/datum/gear/uniform/job_trek/eng/voy
display_name = "VOY uniform, eng" //CHOMPEdit: Removed sec from the name. Gonna separate sec into its own so that I can apply armor value.
path = /obj/item/clothing/under/rank/trek/eng/voy //CHOMPEdit: Engineering only
allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") //CHOMPEdit: Removed sec from the allowed list. Gonna separate sec into its own so that I can apply armor value.
-
+
//CHOMPEdit: See loadout_uniform_vr_ch.dm for a security-specific variant that has standard armor values.
//DS9
@@ -136,7 +136,7 @@
allowed_roles = list("Head of Security","Site Manager","Head of Personnel","Chief Engineer","Research Director",
"Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist",
"Scientist","Roboticist","Xenobiologist","Xenobotanist","Atmospheric Technician",
- "Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") //YW ADDITIONS
+ "Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") //YW ADDITIONS //CHOMP keep explo
/datum/gear/uniform/job_trek/cmd/ds9
@@ -147,7 +147,7 @@
/datum/gear/uniform/job_trek/medsci/ds9
display_name = "DS9 uniform, med/sci"
path = /obj/item/clothing/under/rank/trek/medsci/ds9
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic") //CHOMP keep explo
/datum/gear/uniform/job_trek/eng/ds9
display_name = "DS9 uniform, eng" //CHOMPEdit: Removed sec from the name. Gonna separate sec into its own so that I can apply armor value.
@@ -165,15 +165,15 @@
/datum/gear/uniform/job_trek/medsci/ent
display_name = "ENT uniform, med/sci"
path = /obj/item/clothing/under/rank/trek/medsci/ent
- allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic")
+ allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Research Director","Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Field Medic") //CHOMP keep explo
/datum/gear/uniform/job_trek/eng/ent
display_name = "ENT uniform, eng" //CHOMPEdit: Removed sec from the name. Gonna separate sec into its own so that I can apply armor value.
path = /obj/item/clothing/under/rank/trek/eng/ent //CHOMPEdit: Engineering only
allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") //CHOMPEdit: Removed sec from the allowed list. Gonna separate sec into its own so that I can apply armor value.
-
+
//CHOMPEdit: See loadout_uniform_vr_ch.dm for a security-specific variant that has standard armor values.
-
+
/*
Swimsuits
*/
@@ -316,3 +316,9 @@ Talon jumpsuit
var/obj/item/clothing/under/color/fjumpsuit/jumpsuit = jumpsuit_style
jumpsuits[initial(jumpsuit.name)] = jumpsuit
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(jumpsuits))
+
+//Modernized Sec Jumpsuit
+/datum/gear/uniform/modernsec
+ display_name = "undersuit, security, modernized (Security)"
+ allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer")
+ path = /obj/item/clothing/under/rank/security/modern
diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm
index 3755d62c1e..7fb5b0a08b 100644
--- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm
@@ -35,7 +35,7 @@
/datum/gear/utility/dufflebag/med
display_name = "medical dufflebag"
path = /obj/item/weapon/storage/backpack/dufflebag/med
- allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist","Psychiatrist","Field Medic")
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist","Psychiatrist","Field Medic") //CHOMP explo keep
/datum/gear/utility/dufflebag/med/emt
display_name = "EMT dufflebag"
@@ -57,9 +57,9 @@
allowed_roles = list("Research Director","Scientist","Roboticist","Xenobiologist","Xenobotanist")
/datum/gear/utility/dufflebag/explorer
- display_name = "explorer dufflebag"
+ display_name = "explorer dufflebag" //CHOMP explo keep
path = /obj/item/weapon/storage/backpack/dufflebag/explorer
- allowed_roles = list("Pathfinder","Explorer")
+ allowed_roles = list("Pathfinder","Explorer") //CHOMP explo keep
/datum/gear/utility/dufflebag/talon
display_name = "Talon dufflebag"
diff --git a/code/modules/client/preference_setup/vore/09_misc.dm b/code/modules/client/preference_setup/vore/09_misc.dm
index 12601b2fd9..2091566980 100644
--- a/code/modules/client/preference_setup/vore/09_misc.dm
+++ b/code/modules/client/preference_setup/vore/09_misc.dm
@@ -5,6 +5,8 @@
/datum/category_item/player_setup_item/vore/misc/load_character(var/savefile/S)
S["show_in_directory"] >> pref.show_in_directory
S["directory_tag"] >> pref.directory_tag
+ S["directory_gendertag"] >> pref.directory_gendertag // CHOMPStation Edit: Character Directory Update
+ S["directory_sexualitytag"] >> pref.directory_sexualitytag // CHOMPStation Edit: Character Directory Update
S["directory_erptag"] >> pref.directory_erptag
S["directory_ad"] >> pref.directory_ad
S["sensorpref"] >> pref.sensorpref
@@ -13,6 +15,8 @@
/datum/category_item/player_setup_item/vore/misc/save_character(var/savefile/S)
S["show_in_directory"] << pref.show_in_directory
S["directory_tag"] << pref.directory_tag
+ S["directory_gendertag"] << pref.directory_gendertag // CHOMPStation Edit: Character Directory Update
+ S["directory_sexualitytag"] << pref.directory_sexualitytag // CHOMPStation Edit: Character Directory Update
S["directory_erptag"] << pref.directory_erptag
S["directory_ad"] << pref.directory_ad
S["sensorpref"] << pref.sensorpref
@@ -28,7 +32,9 @@
/datum/category_item/player_setup_item/vore/misc/sanitize_character()
pref.show_in_directory = sanitize_integer(pref.show_in_directory, 0, 1, initial(pref.show_in_directory))
pref.directory_tag = sanitize_inlist(pref.directory_tag, GLOB.char_directory_tags, initial(pref.directory_tag))
- pref.directory_erptag = sanitize_inlist(pref.directory_erptag, GLOB.char_directory_erptags, initial(pref.directory_erptag))
+ pref.directory_gendertag = sanitize_inlist(pref.directory_gendertag, GLOB.char_directory_gendertags, initial(pref.directory_gendertag)) // CHOMPStation Edit: Character Directory Update
+ pref.directory_sexualitytag = sanitize_inlist(pref.directory_sexualitytag, GLOB.char_directory_sexualitytags, initial(pref.directory_sexualitytag)) // CHOMPStation Edit: Character Directory Update
+ pref.directory_erptag = sanitize_inlist(pref.directory_erptag, GLOB.char_directory_erptags, initial(pref.directory_erptag))
pref.sensorpref = sanitize_integer(pref.sensorpref, 1, sensorpreflist.len, initial(pref.sensorpref))
pref.capture_crystal = sanitize_integer(pref.capture_crystal, 0, 1, initial(pref.capture_crystal))
@@ -36,6 +42,8 @@
. += "
"
. += "Appear in Character Directory: [pref.show_in_directory ? "Yes" : "No"]
"
. += "Character Directory Vore Tag: [pref.directory_tag]
"
+ . += "Character Directory Gender: [pref.directory_gendertag]
" // CHOMPStation Edit: Character Directory Update
+ . += "Character Directory Sexuality: [pref.directory_sexualitytag]
" // CHOMPStation Edit: Character Directory Update
. += "Character Directory ERP Tag: [pref.directory_erptag]
"
. += "Character Directory Advertisement: Set Directory Ad
"
. += "Suit Sensors Preference: [sensorpreflist[pref.sensorpref]]
"
@@ -51,6 +59,20 @@
return
pref.directory_tag = new_tag
return TOPIC_REFRESH
+ // CHOMPStation Edit Start: Directory Update
+ else if(href_list["directory_gendertag"])
+ var/new_gendertag = tgui_input_list(user, "Pick a new Gender tag for the character directory. This is YOUR gender, not what you prefer.", "Character Gender Tag", GLOB.char_directory_gendertags, pref.directory_gendertag)
+ if(!new_gendertag)
+ return
+ pref.directory_gendertag = new_gendertag
+ return TOPIC_REFRESH
+ else if(href_list["directory_sexualitytag"])
+ var/new_sexualitytag = tgui_input_list(user, "Pick a new Sexuality/Orientation tag for the character directory", "Character Sexuality/Orientation Tag", GLOB.char_directory_sexualitytags, pref.directory_sexualitytag)
+ if(!new_sexualitytag)
+ return
+ pref.directory_sexualitytag = new_sexualitytag
+ return TOPIC_REFRESH
+ // CHOMPStation Edit End: Directory Update
else if(href_list["directory_erptag"])
var/new_erptag = tgui_input_list(user, "Pick a new ERP tag for the character directory", "Character ERP Tag", GLOB.char_directory_erptags, pref.directory_erptag)
if(!new_erptag)
diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm
index df898e15f6..87de2213a4 100644
--- a/code/modules/client/preferences_vr.dm
+++ b/code/modules/client/preferences_vr.dm
@@ -2,6 +2,10 @@
var/show_in_directory = 1 //Show in Character Directory
var/directory_tag = "Unset" //Sorting tag to use in character directory
var/directory_erptag = "Unset" //ditto, but for non-vore scenes
+ // CHOMPStation Edit Start: Directory Update
+ var/directory_gendertag = "Unset" // Gender stuff!
+ var/directory_sexualitytag = "Unset" // Sexuality!
+ // CHOMPStation Edit End: Directory Update
var/directory_ad = "" //Advertisement stuff to show in character directory.
var/sensorpref = 5 //Set character's suit sensor level
var/capture_crystal = 1 //Whether or not someone is able to be caught with capture crystals
diff --git a/code/modules/client/verbs/character_directory.dm b/code/modules/client/verbs/character_directory.dm
index e737360234..ddc14fd8c5 100644
--- a/code/modules/client/verbs/character_directory.dm
+++ b/code/modules/client/verbs/character_directory.dm
@@ -32,6 +32,8 @@ GLOBAL_DATUM(character_directory, /datum/character_directory)
data["personalVisibility"] = user?.client?.prefs?.show_in_directory
data["personalTag"] = user?.client?.prefs?.directory_tag || "Unset"
+ data["personalGenderTag"] = user?.client?.prefs?.directory_gendertag || "Unset" // CHOMPStation Edit: Character Directory Update
+ data["personalSexualityTag"] = user?.client?.prefs?.directory_sexualitytag || "Unset" // CHOMPStation Edit: Character Directory Update
data["personalErpTag"] = user?.client?.prefs?.directory_erptag || "Unset"
data["personalEventTag"] = vantag_choices_list[user?.client?.prefs?.vantag_preference] //CHOMPEdit
@@ -53,6 +55,8 @@ GLOBAL_DATUM(character_directory, /datum/character_directory)
var/ooc_notes = null
var/flavor_text = null
var/tag = C.prefs.directory_tag || "Unset"
+ var/gendertag = C.prefs.directory_gendertag || "Unset" // CHOMPStation Edit: Character Directory Update
+ var/sexualitytag = C.prefs.directory_sexualitytag || "Unset" // CHOMPStation Edit: Character Directory Update
var/erptag = C.prefs.directory_erptag || "Unset"
var/eventtag = vantag_choices_list[C.prefs.vantag_preference] //CHOMPEdit
var/character_ad = C.prefs.directory_ad
@@ -113,6 +117,8 @@ GLOBAL_DATUM(character_directory, /datum/character_directory)
"species" = species,
"ooc_notes" = ooc_notes,
"tag" = tag,
+ "gendertag" = gendertag, // CHOMPStation Edit: Character Directory Update
+ "sexualitytag" = sexualitytag, // CHOMPStation Edit: Character Directory Update
"erptag" = erptag,
"eventtag" = eventtag, //CHOMPEdit
"character_ad" = character_ad,
@@ -144,6 +150,20 @@ GLOBAL_DATUM(character_directory, /datum/character_directory)
return
usr?.client?.prefs?.directory_tag = new_tag
return TRUE
+ // CHOMPStation Edit Start: Directory Update
+ if("setGenderTag")
+ var/list/new_gendertag = tgui_input_list(usr, "Pick a new Gender tag for the character directory. This is YOUR gender, not what you prefer.", "Character Gender Tag", GLOB.char_directory_gendertags)
+ if(!new_gendertag)
+ return
+ usr?.client?.prefs?.directory_gendertag = new_gendertag
+ return TRUE
+ if("setSexualityTag")
+ var/list/new_sexualitytag = tgui_input_list(usr, "Pick a new Sexuality/Orientation tag for the character directory", "Character Sexuality/Orientation Tag", GLOB.char_directory_sexualitytags)
+ if(!new_sexualitytag)
+ return
+ usr?.client?.prefs?.directory_sexualitytag = new_sexualitytag
+ return TRUE
+ // CHOMPStation Edit End: Directory Update
if("setErpTag")
var/list/new_erptag = tgui_input_list(usr, "Pick a new ERP tag for the character directory", "Character ERP Tag", GLOB.char_directory_erptags)
if(!new_erptag)
diff --git a/code/modules/clothing/masks/tesh_synth_facemask.dm b/code/modules/clothing/masks/tesh_synth_facemask.dm
index f269bc596c..4778d74cdc 100644
--- a/code/modules/clothing/masks/tesh_synth_facemask.dm
+++ b/code/modules/clothing/masks/tesh_synth_facemask.dm
@@ -2,7 +2,7 @@
/obj/item/clothing/mask/synthfacemask
name = "Synth Face"
desc = "A round dark muzzle made of LEDs."
- body_parts_covered = FACE|EYES
+ body_parts_covered = EYES //CHOMPedit, though isnt this chomp exclusive item?
icon = 'icons/mob/species/teshari/synth_facemask.dmi'
icon_override = 'icons/mob/species/teshari/synth_facemask.dmi'
icon_state = "synth_facemask"
diff --git a/code/modules/clothing/shoes/boots.dm b/code/modules/clothing/shoes/boots.dm
index 4ee4395109..343e8a80f0 100644
--- a/code/modules/clothing/shoes/boots.dm
+++ b/code/modules/clothing/shoes/boots.dm
@@ -169,7 +169,7 @@
icon_state = "winterboots_hydro"
/obj/item/clothing/shoes/boots/winter/explorer
- name = "explorer winter boots"
+ name = "explorer winter boots" //CHOMP keep explo
desc = "Steel-toed winter boots for mining or exploration in hazardous environments. Very good at keeping toes warm and uncrushed."
icon_state = "explorer"
armor = list(melee = 30, bullet = 10, laser = 10, energy = 15, bomb = 20, bio = 0, rad = 0)
diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm
index 7ae2f5f82b..42e752d78e 100644
--- a/code/modules/clothing/under/accessories/accessory.dm
+++ b/code/modules/clothing/under/accessories/accessory.dm
@@ -544,6 +544,26 @@
name = "green neck gaiter"
icon_state = "gaiter_green"
+/obj/item/clothing/accessory/gaiter/blue
+ name = "blue neck gaiter"
+ icon_state = "gaiter_blue"
+
+/obj/item/clothing/accessory/gaiter/purple
+ name = "purple neck gaiter"
+ icon_state = "gaiter_purple"
+
+/obj/item/clothing/accessory/gaiter/orange
+ name = "orange neck gaiter"
+ icon_state = "gaiter_orange"
+
+/obj/item/clothing/accessory/gaiter/charcoal
+ name = "charcoal neck gaiter"
+ icon_state = "gaiter_charcoal"
+
+/obj/item/clothing/accessory/gaiter/snow
+ name = "white neck gaiter"
+ icon_state = "gaiter_snow"
+
/*
* Pride Pins
*/
diff --git a/code/modules/clothing/under/accessories/permits_vr.dm b/code/modules/clothing/under/accessories/permits_vr.dm
index 2e3d15fb7c..b3ff8b0bde 100644
--- a/code/modules/clothing/under/accessories/permits_vr.dm
+++ b/code/modules/clothing/under/accessories/permits_vr.dm
@@ -2,5 +2,5 @@
desc = "A card issued by the EIO, indicating that the owner is a Drone Intelligence. Drones are mandated to carry this card within SolGov space, by law." //YW EDIT: SolGov
/obj/item/clothing/accessory/permit/gun/planetside
- name = "explorer gun permit"
- desc = "A card indicating that the owner is allowed to carry a firearm during active exploration missions."
+ name = "explorer gun permit" //CHOMP keep explo
+ desc = "A card indicating that the owner is allowed to carry a firearm during active exploration missions." //CHOMP keep explo
diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm
index 9154bc0818..13ca4c9c7b 100644
--- a/code/modules/clothing/under/jobs/security.dm
+++ b/code/modules/clothing/under/jobs/security.dm
@@ -26,6 +26,17 @@
siemens_coefficient = 0.9
rolled_sleeves = 0
+/obj/item/clothing/under/rank/security/modern
+ name = "modernized security officer's jumpsuit"
+ desc = "A recent redesign of the classic Security jumpsuit, featuring sturdy materials, joint padding, one giant zipper, and tight-fitting synthleather."
+ icon_state = "securitymodern"
+ item_state = "securitymodern"
+ item_state_slots = list(slot_r_hand_str = "red", slot_l_hand_str = "red")
+ rolled_sleeves = -1
+ worn_state = "securitymodern"
+ icon = 'icons/inventory/uniform/item.dmi'
+ default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
+
/obj/item/clothing/under/rank/security/turtleneck
name = "security turtleneck"
desc = "It's a stylish turtleneck made of a robust nanoweave. Nobody said the Law couldn't be fashionable."
diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm
index ad70b62ac5..9d084b3119 100644
--- a/code/modules/clothing/under/miscellaneous.dm
+++ b/code/modules/clothing/under/miscellaneous.dm
@@ -873,18 +873,6 @@
desc = "It is a dark blue cheongsam dress."
icon_state = "cheongsam-darkblue"
-/obj/item/clothing/under/qipao_colorable
- name = "qipao"
- desc = "A traditional Chinese women's garment, typically made from silk."
- icon_state = "qipao"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO
-
-/obj/item/clothing/under/qipao2_colorable
- name = "slim qipao"
- desc = "A traditional Chinese women's garment, typically made from silk. This one is fairly slim."
- icon_state = "qipao2"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO
-
/obj/item/clothing/under/blazer
name = "blue blazer"
desc = "A bold but yet conservative outfit, red corduroys, navy blazer and a tie."
@@ -1114,7 +1102,7 @@
/obj/item/clothing/under/explorer
desc = "A green uniform for operating in hazardous environments."
- name = "explorer's jumpsuit"
+ name = "explorer's jumpsuit" //CHOMP keep explo
icon_state = "explorer"
/obj/item/clothing/under/explorer/armored
@@ -1481,7 +1469,7 @@
worn_state = "hedberg_tech"
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) // Equivalent to engineer's jumpsuit.
rolled_sleeves = 0
-
+
//christmas stuff
/obj/item/clothing/under/christmas/red
name = "red christmas suit"
@@ -1501,4 +1489,4 @@
/obj/item/clothing/under/christmas/croptop/green
name = "green crop-top christmas suit"
desc = "A simple green christmas suit that doesn't quite looks like Mrs Claus'. Smells minty!"
- icon_state = "christmascroppedgreen"
+ icon_state = "christmascroppedgreen"
diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm
index 90285f561c..06576db377 100644
--- a/code/modules/clothing/under/miscellaneous_vr.dm
+++ b/code/modules/clothing/under/miscellaneous_vr.dm
@@ -468,3 +468,23 @@
name = "yellow-green feminine jumpsuit"
icon_state = "yellowgreen"
worn_state = "yellowgreenf"
+
+/obj/item/clothing/under/qipao_colorable
+ name = "qipao"
+ desc = "A traditional Chinese women's garment, typically made from silk."
+ icon = 'icons/inventory/uniform/item.dmi'
+ default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
+ icon_state = "qipao3"
+ item_state = "qipao3"
+ worn_state = "qipao3"
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO
+
+/obj/item/clothing/under/qipao2_colorable
+ name = "slim qipao"
+ desc = "A traditional Chinese women's garment, typically made from silk. This one is fairly slim."
+ icon = 'icons/inventory/uniform/item.dmi'
+ default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi'
+ icon_state = "qipao2"
+ item_state = "qipao2"
+ worn_state = "qipao2"
+ body_parts_covered = UPPER_TORSO|LOWER_TORSO
diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm
index 114c01f912..b16d6baab4 100644
--- a/code/modules/economy/vending_machines.dm
+++ b/code/modules/economy/vending_machines.dm
@@ -1229,6 +1229,7 @@
/obj/item/clothing/under/rank/security = 5,
/obj/item/clothing/under/rank/security2 = 5,
/obj/item/clothing/under/rank/security/turtleneck = 5,
+ /obj/item/clothing/under/rank/security/modern = 5,
/obj/item/clothing/under/rank/security/skirt = 5,
/obj/item/clothing/shoes/boots/jackboots = 5,
/obj/item/clothing/head/soft/sec = 5,
diff --git a/code/modules/materials/materials/plastic_ch.dm b/code/modules/materials/materials/plastic_ch.dm
index 9cf1a4b918..9af9475a20 100644
--- a/code/modules/materials/materials/plastic_ch.dm
+++ b/code/modules/materials/materials/plastic_ch.dm
@@ -1,9 +1,12 @@
/datum/material/plastic/generate_recipes()
. = ..()
+
+ recipes += list(
+ new /datum/stack_recipe("Feeder", /obj/machinery/feeder, 4, time = 20, one_per_turf = 1, on_floor = 1, recycle_material = "[name]"),
+ )
recipes += new/datum/stack_recipe_list("sofas", list( \
new /datum/stack_recipe("sofa middle", /obj/structure/bed/chair/sofa, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \
new /datum/stack_recipe("sofa left", /obj/structure/bed/chair/sofa/left, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \
new /datum/stack_recipe("sofa right", /obj/structure/bed/chair/sofa/right, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \
new /datum/stack_recipe("sofa corner", /obj/structure/bed/chair/sofa/corner, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \
- new /datum/stack_recipe("Feeder", /obj/machinery/feeder, 4, time = 20, one_per_turf = 1, on_floor = 1, recycle_material = "[name]"), \
- ))
+ ))
diff --git a/code/modules/mining/ore_redemption_machine/survey_vendor.dm b/code/modules/mining/ore_redemption_machine/survey_vendor.dm
index 14bac95bf3..99189b3ecf 100644
--- a/code/modules/mining/ore_redemption_machine/survey_vendor.dm
+++ b/code/modules/mining/ore_redemption_machine/survey_vendor.dm
@@ -54,9 +54,10 @@
EQUIPMENT("Defense Equipment - Plasteel Machete", /obj/item/weapon/material/knife/machete, 50),
EQUIPMENT("Defense Equipment - Razor Drone Deployer", /obj/item/weapon/grenade/spawnergrenade/manhacks/station/locked, 100),
EQUIPMENT("Defense Equipment - Sentry Drone Deployer", /obj/item/weapon/grenade/spawnergrenade/ward, 150),
- EQUIPMENT("Defense Equipment - Frontier Carbine", /obj/item/weapon/gun/energy/locked/frontier/carbine, 400), //CHOMPEDIT
- EQUIPMENT("Defense Equipment - Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier, 150), //CHOMPADD
- EQUIPMENT("Defense Equipment - Holdout Phaser", /obj/item/weapon/gun/energy/locked/frontier/holdout, 100), //CHOMPADD
+ EQUIPMENT("Defense Equipment - Marksman Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier/rifle, 1500), //CHOMPADD
+ EQUIPMENT("Defense Equipment - Frontier Carbine", /obj/item/weapon/gun/energy/locked/frontier/carbine, 1500), //CHOMPEDIT
+ EQUIPMENT("Defense Equipment - Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier, 1200), //CHOMPADD
+ EQUIPMENT("Defense Equipment - Holdout Frontier Phaser", /obj/item/weapon/gun/energy/locked/frontier/holdout, 700), //CHOMPADD
EQUIPMENT("Hybrid Equipment - Proto-Kinetic Dagger", /obj/item/weapon/kinetic_crusher/machete/dagger, 75),
EQUIPMENT("Hybrid Equipment - Proto-Kinetic Machete", /obj/item/weapon/kinetic_crusher/machete, 250),
EQUIPMENT("Fishing Net", /obj/item/weapon/material/fishing_net, 50),
diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm
index 2399b489ec..cd4e116cfd 100644
--- a/code/modules/mob/living/carbon/human/update_icons.dm
+++ b/code/modules/mob/living/carbon/human/update_icons.dm
@@ -210,7 +210,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
// blend the individual damage states with our icons
for(var/obj/item/organ/external/O in organs)
- if(isnull(O) || O.is_stump() || O.is_hidden_by_tail())
+ if(isnull(O) || O.is_stump() || O.is_hidden_by_sprite_accessory())
continue
O.update_icon()
@@ -275,7 +275,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
icon_key += "[head.eye_icon]"
for(var/organ_tag in species.has_limbs)
var/obj/item/organ/external/part = organs_by_name[organ_tag]
- if(isnull(part) || part.is_stump() || part.is_hidden_by_tail()) //VOREStation Edit allowing tails to prevent bodyparts rendering, granting more spriter freedom for taur/digitigrade stuff.
+ if(isnull(part) || part.is_stump() || part.is_hidden_by_sprite_accessory()) //VOREStation Edit allowing tails to prevent bodyparts rendering, granting more spriter freedom for taur/digitigrade stuff.
icon_key += "0"
continue
if(part)
@@ -346,7 +346,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
Cutter.Blend("#000000", ICON_MULTIPLY) // Black again.
for(var/obj/item/organ/external/part in organs)
- if(isnull(part) || part.is_stump() || part.is_hidden_by_tail()) //VOREStation Edit allowing tails to prevent bodyparts rendering, granting more spriter freedom for taur/digitigrade stuff.
+ if(isnull(part) || part.is_stump() || part.is_hidden_by_sprite_accessory()) //VOREStation Edit allowing tails to prevent bodyparts rendering, granting more spriter freedom for taur/digitigrade stuff.
continue
var/icon/temp = part.get_icon(skeleton)
@@ -789,7 +789,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
for(var/f in list(BP_L_FOOT, BP_R_FOOT))
var/obj/item/organ/external/foot/foot = get_organ(f)
- if(istype(foot) && foot.is_hidden_by_tail()) //If either foot is hidden by the tail, don't render footwear.
+ if(istype(foot) && foot.is_hidden_by_sprite_accessory(clothing_only = TRUE)) //If either foot is hidden by the tail, don't render footwear.
return
//Allow for shoe layer toggle nonsense
diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm
index 9367044c0d..4e34ec87a3 100644
--- a/code/modules/mob/living/say.dm
+++ b/code/modules/mob/living/say.dm
@@ -16,8 +16,8 @@ var/list/department_radio_keys = list(
":u" = "Supply", ".u" = "Supply",
":v" = "Service", ".v" = "Service",
":p" = "AI Private", ".p" = "AI Private",
- ":y" = "Explorer", ".y" = "Explorer",
- ":a" = "Talon", ".a" = "Talon", //VOREStation Add,
+ ":y" = "Explorer", ".y" = "Explorer", //VOREStation Edit //CHOMP keep explo
+ ":a" = "Talon", ".a" = "Talon", //VOREStation Add, //CHOMP keep explo
":g" = "Casino", ".g" = "Casino",
":R" = "right ear", ".R" = "right ear",
@@ -36,8 +36,8 @@ var/list/department_radio_keys = list(
":U" = "Supply", ".U" = "Supply",
":V" = "Service", ".V" = "Service",
":P" = "AI Private", ".P" = "AI Private",
- ":Y" = "Explorer", ".Y" = "Explorer",
- ":A" = "Talon", ".A" = "Talon", //VOREStation Add,
+ ":Y" = "Explorer", ".Y" = "Explorer", //CHOMP keep explo
+ ":A" = "Talon", ".A" = "Talon", //VOREStation Add, //CHOMP keep explo
":G" = "Casino", ".G" = "Casino",
// Cyrillic characters on the same keys on the Russian QWERTY (phonetic) layout
@@ -58,8 +58,8 @@ var/list/department_radio_keys = list(
":г" = "Supply", ".г" = "Supply",
":м" = "Service", ".м" = "Service",
":з" = "AI Private", ".з" = "AI Private",
- ":н" = "Explorer", ".н" = "Explorer",
- ":Ñ„" = "Talon", ".Ñ„" = "Talon", //VOREStation Add
+ ":н" = "Explorer", ".н" = "Explorer", //CHOMP keep explo
+ ":Ñ„" = "Talon", ".Ñ„" = "Talon", //VOREStation Add //CHOMP keep explo
":п" = "Casino", ".п" = "Casino",
)
diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
index 1af857fe40..9e5ba2030c 100644
--- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
+++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
@@ -164,7 +164,39 @@
message_admins("[key_name(hound)] has eaten [key_name(patient)] as a dogborg. ([hound ? "JMP" : "null"])")
playsound(src, gulpsound, vol = 100, vary = 1, falloff = 0.1, preference = /datum/client_preference/eating_noises)
-/obj/item/device/dogborg/sleeper/proc/go_out(var/target)
+/obj/item/device/dogborg/sleeper/proc/ingest_atom(var/atom/ingesting)
+ if (!ingesting || ingesting == hound)
+ return
+ var/obj/belly/belly = hound.vore_selected
+ if (!istype(hound) || !istype(belly) || !(belly in hound.vore_organs))
+ return
+ if (isliving(ingesting))
+ ingest_living(ingesting, belly)
+ else if (istype(ingesting, /obj/item))
+ var/obj/item/to_eat = ingesting
+ if (is_type_in_list(to_eat, item_vore_blacklist))
+ return
+ if (istype(to_eat, /obj/item/weapon/holder)) //just in case
+ var/obj/item/weapon/holder/micro = ingesting
+ var/delete_holder = TRUE
+ for (var/mob/living/M in micro.contents)
+ if (!ingest_living(M, belly) || M.loc == micro)
+ delete_holder = FALSE
+ if (delete_holder)
+ micro.held_mob = null
+ qdel(micro)
+ return
+ to_eat.forceMove(belly)
+ log_admin("VORE: [hound] used their [src] to swallow [to_eat].")
+
+/obj/item/device/dogborg/sleeper/proc/ingest_living(var/mob/living/victim, var/obj/belly/belly)
+ if (victim.devourable && is_vore_predator(hound))
+ belly.nom_mob(victim, hound)
+ add_attack_logs(hound, victim, "Eaten via [belly.name]")
+ return TRUE
+ return FALSE
+
+/obj/item/device/dogborg/sleeper/proc/go_out()
hound = src.loc
items_preserved.Cut()
cleaning = 0
@@ -181,9 +213,20 @@
var/obj/T = C
T.loc = hound.loc
playsound(src, 'sound/effects/splat.ogg', 50, 1)
- update_patient()
- else //You clicked eject with nothing in you, let's just reset stuff to be sure.
- update_patient()
+ update_patient()
+
+/obj/item/device/dogborg/sleeper/proc/vore_ingest_all()
+ hound = src.loc
+ if (!istype(hound) || length(contents) <= 0)
+ return
+ if (!hound.vore_selected)
+ to_chat(hound, "You don't have a belly selected to empty the contents into!")
+ return
+ for (var/C in contents)
+ if (isliving(C) || isitem(C))
+ ingest_atom(C)
+ hound.updateVRPanel()
+ update_patient()
/obj/item/device/dogborg/sleeper/proc/drain(var/amt = 3) //Slightly reduced cost (before, it was always injecting inaprov)
hound = src.loc
@@ -213,21 +256,23 @@
dat += "Inject [C.name]
"
dat += "
[name] Status
"
+ dat += ""
dat += ""
if(!delivery && compactor && length(contents))//garbage counter for trashpup
@@ -301,7 +346,7 @@
dat += "
[R.name]:
[round(R.volume, 0.1)] units
"
dat += "
"
- var/datum/browser/popup = new(user, "sleeper_b", "[name] Console", 400, 500, src)
+ var/datum/browser/popup = new(user, "sleeper_b", "[name] Console", 450, 500, src)
popup.set_content(dat)
popup.open()
UI_open = TRUE
@@ -350,6 +395,10 @@
eject_port = "ingestion"
sleeperUI(usr)
return
+ if (href_list["ingest"])
+ vore_ingest_all()
+ sleeperUI(usr)
+ return
if(href_list["deliveryslot"])
var/tag = tgui_input_list(usr, "Select active delivery slot:", "Slot Choice", deliverylists)
if(!tag)
diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station.dm b/code/modules/mob/living/silicon/robot/robot_modules/station.dm
index 3b4fdadfe9..f116f3b27f 100644
--- a/code/modules/mob/living/silicon/robot/robot_modules/station.dm
+++ b/code/modules/mob/living/silicon/robot/robot_modules/station.dm
@@ -172,7 +172,7 @@ var/global/list/robot_modules = list(
"Supply" = 1,
"Science" = 1,
"Command" = 1,
- "Explorer" = 1
+ "Explorer" = 1 //CHOMP keep explo
)
// Cyborgs (non-drones), default loadout. This will be given to every module.
diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm
index bc0905b4a4..3112cb2823 100644
--- a/code/modules/mob/living/silicon/robot/robot_vr.dm
+++ b/code/modules/mob/living/silicon/robot/robot_vr.dm
@@ -88,6 +88,10 @@
return
return feed_grabbed_to_self(src,T)
+/mob/living/silicon/robot/lay_down()
+ . = ..()
+ updateicon()
+
/mob/living/silicon/robot/proc/rest_style()
set name = "Switch Rest Style"
set category = "IC"
diff --git a/code/modules/mob/living/silicon/robot/subtypes/thinktank/thinktank_module.dm b/code/modules/mob/living/silicon/robot/subtypes/thinktank/thinktank_module.dm
index fb4cee24c2..77ad14f4dc 100644
--- a/code/modules/mob/living/silicon/robot/subtypes/thinktank/thinktank_module.dm
+++ b/code/modules/mob/living/silicon/robot/subtypes/thinktank/thinktank_module.dm
@@ -11,7 +11,7 @@
var/list/decals
var/list/available_decals = list(
- "Stripe" = "stripe",
+ "Stripe" = "stripe",
"Vertical Stripe" = "stripe_vertical"
)
@@ -31,7 +31,7 @@
var/new_pupil_color = input(usr, "Select a pupil colour.", "Pupil Colour Selection") as color|null
if(usr.incapacitated() || QDELETED(usr) || QDELETED(src) || loc != usr)
return
-
+
pupil_color = new_pupil_color || initial(pupil_color)
usr.update_icon()
@@ -64,7 +64,7 @@
modules += bandaid
synths += medicine
- var/obj/item/weapon/gun/energy/locked/phasegun/unlocked/mounted/cyborg/phasegun = new(src)
+ var/obj/item/weapon/gun/energy/locked/phasegun/unlocked/mounted/cyborg/phasegun = new(src) //CHOMP Edit
modules += phasegun
emag = new /obj/item/weapon/chainsaw(src)
diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm
index 5081c63b8e..399a2851b3 100644
--- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm
@@ -843,6 +843,53 @@
mob_radio.recalculateChannels(1)
mobcard.access |= get_all_station_access()
+//Pilot Catslug
+
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/pilotslug
+ name = "Navigator Purrverick"
+ desc = "A black-furred noodley bodied creature with thin arms and legs, and gloomy dark eyes. This one exudes an aura of coolness, they're so cool that their pilot's liscense was suspended."
+ tt_desc = "Mollusca Felis Mischefterous"
+ color = "#2b2b2b"
+ catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/custom/pilotslug)
+ say_list_type = /datum/say_list/catslug/custom/pilotslug
+
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/pilotslug/Initialize()
+ . = ..()
+ if(prob(25))
+ var/list/possible_targets = list()
+ for(var/obj/machinery/computer/ship/helm/h in world)
+ if(h.z in using_map.player_levels)
+ possible_targets |= h
+ var/final = pick(possible_targets)
+ forceMove(get_turf(final))
+ ghostjoin = TRUE
+
+/datum/category_item/catalogue/fauna/catslug/custom/pilotslug
+ name = "Alien Wildlife - Catslug - Navigator Purrverick"
+ desc = "A resident at NSB Rascal's Pass, Navigator Purrverick \
+ is a catslug who is known to dream big and seek the sky.\
+ Purrverick has proved to be quite capable of utilizing shuttle\
+ controls with excellent grace and skill. Purrverick can however\
+ be rather self assured, which has on more than one occasion\
+ lead to unfortunate mistakes and incidents.\
+ Purrverick's provisionary piloting liscense is marked as suspended.\
+ There are however still more records of the catslug's piloting escapades\
+ dated afer their suspension.\
+ \
+ The Catslug is an omnivorous terrestrial creature.\
+ Exhibiting properties of both a cat and a slug (hence its name)\
+ it moves somewhat awkwardly. However, the unique qualities of\
+ its body make it exceedingly flexible and smooth, allowing it to\
+ wiggle into and move effectively in even extremely tight spaces.\
+ Additionally, it has surprisingly capable hands, and moves quite\
+ well on two legs or four. Caution is advised when interacting\
+ with these creatures, they are quite intelligent, and proficient\
+ tool users."
+ value = CATALOGUER_REWARD_TRIVIAL
+
+/datum/say_list/catslug/custom/pilotslug
+ speak = list("In the pipe, five my five.","Kick the tires and light the fires!","Bogeys on my tail!","GOOSE!","I'm really good at the stick.","I'm not doing nothing.","Heh.","Can you keep up?","Can't keep the sky from me.")
+
//=============================
//Admin-spawn only catslugs end
//=============================
diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/xenobio.dm b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/xenobio.dm
index bc7634effe..712cf34d91 100644
--- a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/xenobio.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/xenobio.dm
@@ -11,7 +11,7 @@
var/mob/living/victim = null // the person the slime is currently feeding on
var/rainbow_core_candidate = TRUE // If false, rainbow cores cannot make this type randomly.
var/mutation_chance = 30 // CHOMPedit Odds of spawning as a new color when reproducing. Can be modified by certain xenobio products. Carried across generations of slimes.
- var/split_amount = 4 // Amount of children we will normally have. Half of that for dead adult slimes. Is NOT carried across generations.
+ var/split_amount = 5 //Chompedit: increased from 4 to 5 to make xenobio faster and deadlier. Amount of children we will normally have. Half of that for dead adult slimes. Is NOT carried across generations.
var/untamable = FALSE //Makes slime untamable via discipline.
var/untamable_inheirit = FALSE //Makes slime inheirit its untamability.
var/list/slime_mutation = list(
diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dominated_brain.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dominated_brain.dm
index e69e0fc54a..56956f080a 100644
--- a/code/modules/mob/living/simple_mob/subtypes/vore/dominated_brain.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/vore/dominated_brain.dm
@@ -297,6 +297,16 @@
possible_mobs |= L
else
continue
+ //CHOMPEdit Start - Let dominate prey work on grabbed people
+ var/obj/item/weapon/grab/G = src.get_active_hand()
+ if(istype(G))
+ var/mob/living/L = G.affecting
+ if(istype(L))
+ if(G.state != GRAB_NECK)
+ possible_mobs |= "~~[L.name]~~ (reinforce grab first)"
+ else
+ possible_mobs |= L
+ //CHOMPEdit End
if(!possible_mobs)
to_chat(src, "There are no valid targets inside of you.")
return
@@ -304,6 +314,11 @@
if(!input)
return
var/mob/living/M = input
+ //CHOMPEdit Start - Let dominate prey work on grabbed people
+ if(!istype(M))
+ to_chat(src, "You must have a tighter grip to dominate this creature.")
+ return
+ //CHOMPEdit End
if(tgui_alert(src, "You selected [M] to attempt to dominate. Are you sure?", "Dominate Prey",list("No","Yes")) != "Yes")
return
log_admin("[key_name_admin(src)] offered to use dominate prey on [M] ([M.ckey]).")
@@ -317,11 +332,15 @@
to_chat(M, "You can feel the will of another pulling you away from your body...")
to_chat(src, "You can feel the will of your prey diminishing as you gather them!")
+ //CHOMPEdit Start - Let dominate prey work on grabbed people
+ if(istype(G) && M == G.affecting)
+ src.visible_message("[src] seems to be doing something to [M], resulting in [M]'s body looking increasingly drowsy with every passing moment!")
+ //CHOMPEdit End
if(!do_after(src, 10 SECONDS, exclusive = TRUE))
to_chat(M, "The alien presence fades, and you are left along in your body...")
to_chat(src, "Your attempt to gather [M]'s mind has been interrupted.")
return
- if(!isbelly(M.loc))
+ if(!isbelly(M.loc) && !(istype(G) && M == G.affecting && G.state == GRAB_NECK)) //CHOMPEdit - Let dominate prey work on grabbed people
to_chat(M, "The alien presence fades, and you are left along in your body...")
to_chat(src, "Your attempt to gather [M]'s mind has been interrupted.")
return
@@ -347,6 +366,10 @@
log_admin("[db] ([db.ckey]) has agreed to [src]'s dominate prey attempt, and so no longer occupies their original body.")
to_chat(src, "You feel your mind expanded as [M] is incorporated into you.")
to_chat(M, "Your mind is gathered into \the [src], becoming part of them...")
+ //CHOMPEdit Start - Let dominate prey work on grabbed people
+ if(istype(G) && M == G.affecting)
+ visible_message("[src] seems to finish whatever they were doing to [M].")
+ //CHOMPEdit End
/mob/living/dominated_brain/proc/cease_this_foolishness()
set category = "Abilities"
@@ -460,4 +483,4 @@
pred.prey_controlled = TRUE
log_and_message_admins("[pred] is now controlled by [pred.ckey], they were taken over via pred submission, and were originally controlled by [pred_brain.pred_ckey].")
if(delete_source)
- qdel(prey)
\ No newline at end of file
+ qdel(prey)
diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm
index b85685803a..a64def1f49 100644
--- a/code/modules/mob/new_player/sprite_accessories.dm
+++ b/code/modules/mob/new_player/sprite_accessories.dm
@@ -42,6 +42,8 @@
/// Should this sprite block emissives?
var/em_block = FALSE
+ var/list/hide_body_parts = list() //Uses organ tag defines. Bodyparts in this list do not have their icons rendered, allowing for more spriter freedom when doing taur/digitigrade stuff.
+
/*
////////////////////////////
/ =--------------------= /
diff --git a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm
index 919d2bedb0..e3ee23efe4 100644
--- a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm
+++ b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm
@@ -2,6 +2,7 @@
//Reminder: BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD
/datum/sprite_accessory/marking //Override for base markings
+ var/organ_override = FALSE
color_blend_mode = ICON_ADD
species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use
@@ -907,3 +908,13 @@
icon_state = "tesh-beak-alt"
color_blend_mode = ICON_MULTIPLY
body_parts = list(BP_HEAD)
+
+/datum/sprite_accessory/marking/vr_generic_hooves
+ name = "Generic Hooves"
+ icon = 'icons/mob/human_races/markings_vr.dmi'
+ icon_state = "generic_hooves"
+ color_blend_mode = ICON_MULTIPLY
+ body_parts = list(BP_L_FOOT,BP_R_FOOT)
+ hide_body_parts = list(BP_L_FOOT,BP_R_FOOT)
+ organ_override = TRUE
+
diff --git a/code/modules/mob/new_player/sprite_accessories_tail.dm b/code/modules/mob/new_player/sprite_accessories_tail.dm
index 8428f6170f..53475d3cd1 100644
--- a/code/modules/mob/new_player/sprite_accessories_tail.dm
+++ b/code/modules/mob/new_player/sprite_accessories_tail.dm
@@ -20,7 +20,6 @@
var/ani_state // State when wagging/animated
var/extra_overlay_w // Wagging state for extra overlay
var/extra_overlay2_w // Tertiary wagging.
- var/list/hide_body_parts = list() //Uses organ tag defines. Bodyparts in this list do not have their icons rendered, allowing for more spriter freedom when doing taur/digitigrade stuff.
var/icon/clip_mask_icon = null //Icon file used for clip mask.
var/clip_mask_state = null //Icon state to generate clip mask. Clip mask is used to 'clip' off the lower part of clothing such as jumpsuits & full suits.
var/icon/clip_mask = null //Instantiated clip mask of given icon and state
diff --git a/code/modules/mob/new_player/sprite_accessories_taur_ch.dm b/code/modules/mob/new_player/sprite_accessories_taur_ch.dm
index bc2b3e6ce0..b2e95a8ae0 100644
--- a/code/modules/mob/new_player/sprite_accessories_taur_ch.dm
+++ b/code/modules/mob/new_player/sprite_accessories_taur_ch.dm
@@ -64,6 +64,34 @@
icon_state = "naga_alt_s"
extra_overlay = "naga_alt_markings"
suit_sprites = 'modular_chomp/icons/mob/taursuits_naga_ch.dmi'
+
+ msg_owner_help_walk = "You carefully slither around %prey."
+ msg_prey_help_walk = "%owner's huge tail slithers past beside you!"
+
+ msg_owner_help_run = "You carefully slither around %prey."
+ msg_prey_help_run = "%owner's huge tail slithers past beside you!"
+
+ msg_owner_disarm_run = "Your tail slides over %prey, pushing them down to the ground!"
+ msg_prey_disarm_run = "%owner's tail slides over you, forcing you down to the ground!"
+
+ msg_owner_disarm_walk = "You push down on %prey with your tail, pinning them down under you!"
+ msg_prey_disarm_walk = "%owner pushes down on you with their tail, pinning you down below them!"
+
+ msg_owner_harm_run = "Your heavy tail carelessly slides past %prey, crushing them!"
+ msg_prey_harm_run = "%owner quickly goes over your body, carelessly crushing you with their heavy tail!"
+
+ msg_owner_harm_walk = "Your heavy tail slowly and methodically slides down upon %prey, crushing against the floor below!"
+ msg_prey_harm_walk = "%owner's thick, heavy tail slowly and methodically slides down upon your body, mercilessly crushing you into the floor below!"
+
+ msg_owner_grab_success = "You slither over %prey with your large, thick tail, smushing them against the ground before coiling up around them, trapping them within the tight confines of your tail!"
+ msg_prey_grab_success = "%owner slithers over you with their large, thick tail, smushing you against the ground before coiling up around you, trapping you within the tight confines of their tail!"
+
+ msg_owner_grab_fail = "You squish %prey under your large, thick tail, forcing them onto the ground!"
+ msg_prey_grab_fail = "%owner pins you under their large, thick tail, forcing you onto the ground!"
+
+ msg_prey_stepunder = "You jump over %prey's thick tail."
+ msg_owner_stepunder = "%owner bounds over your tail."
+
/datum/sprite_accessory/tail/taur/ch/horse/scoli
name = "Scolipede (Taur)"
diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm
index 00b28b5f70..b23f77e377 100644
--- a/code/modules/organs/organ_external.dm
+++ b/code/modules/organs/organ_external.dm
@@ -1411,14 +1411,11 @@ Note that amputating the affected organ does in fact remove the infection from t
if(!istype(I,/obj/item/weapon/implant) && !istype(I,/obj/item/device/nif)) //VOREStation Add - NIFs
return 1
-/obj/item/organ/external/proc/is_hidden_by_tail()
+/obj/item/organ/external/proc/is_hidden_by_sprite_accessory(var/clothing_only = FALSE) // Clothing only will mean the check should only be used in places where we want to hide clothing icon, not organ itself.
if(owner && owner.tail_style && owner.tail_style.hide_body_parts && (organ_tag in owner.tail_style.hide_body_parts))
return 1
-<<<<<<< HEAD
-=======
if(clothing_only && markings.len)
for(var/M in markings)
var/datum/sprite_accessory/marking/mark = markings[M]["datum"]
if(mark.hide_body_parts && (organ_tag in mark.hide_body_parts))
- return 1
->>>>>>> fd94efe521... Merge pull request #14336 from VOREStation/upstream-merge-8870
+ return 1
\ No newline at end of file
diff --git a/code/modules/organs/organ_icon.dm b/code/modules/organs/organ_icon.dm
index fa93fc43b7..a7386bdbe6 100644
--- a/code/modules/organs/organ_icon.dm
+++ b/code/modules/organs/organ_icon.dm
@@ -81,6 +81,19 @@ var/global/list/limb_icon_cache = list()
/obj/item/organ/external/proc/get_icon(var/skeletal)
+ for(var/M in markings)
+ var/datum/sprite_accessory/marking/mark = markings[M]["datum"]
+ if(mark.organ_override)
+ var/icon/mark_s = new/icon("icon" = mark.icon, "icon_state" = "[mark.icon_state]-[organ_tag]")
+ mob_icon = new /icon("icon" = mark.icon, "icon_state" = "blank")
+ mark_s.Blend(markings[M]["color"], mark.color_blend_mode) // VOREStation edit
+ mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons
+ icon_cache_key = "[M][markings[M]["color"]]"
+
+ dir = EAST
+ icon = mob_icon
+ return mob_icon
+
var/gender = "m"
if(owner && owner.gender == FEMALE)
gender = "f"
diff --git a/code/modules/organs/robolimbs_vr.dm b/code/modules/organs/robolimbs_vr.dm
index 79e132d4bd..d34091d80a 100644
--- a/code/modules/organs/robolimbs_vr.dm
+++ b/code/modules/organs/robolimbs_vr.dm
@@ -81,4 +81,20 @@ var/const/cyberbeast_monitor_styles = "blank=cyber_blank;\
monitor_styles = cyberbeast_monitor_styles
/obj/item/weapon/disk/limb/cyber_beast
- company = "Cyber Tech"
\ No newline at end of file
+ company = "Cyber Tech"
+
+/datum/robolimb/zenghu_glacier
+ company = "Zeng-Hu Glacier"
+ desc = "This limb has a rubbery white covering with visible seams."
+ icon = 'icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_main.dmi'
+ species_alternates = list(SPECIES_TAJ = "Zeng-Hu - Tajaran")
+ unavailable_to_build = 1
+ skin_tone = 1
+ modular_bodyparts = MODULAR_BODYPART_PROSTHETIC
+
+/datum/robolimb/zenghu_taj_glacier
+ company = "Zeng-Hu Glacier - Tajaran"
+ desc = "This limb has a rubbery white covering with visible seams."
+ icon = 'icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_taj.dmi'
+ unavailable_to_build = 1
+ parts = list(BP_HEAD)
diff --git a/code/modules/pda/pda_vr.dm b/code/modules/pda/pda_vr.dm
index f354ade3d3..d0ec3c757b 100644
--- a/code/modules/pda/pda_vr.dm
+++ b/code/modules/pda/pda_vr.dm
@@ -3,8 +3,8 @@
/obj/item/device/pda/multicaster/exploration/New()
..()
- owner = "Exploration Department"
- name = "Exploration Department (Relay)"
+ owner = "Exploration Department" //CHOMP keep explo
+ name = "Exploration Department (Relay)" //CHOMP keep explo
cartridges_to_send_to = exploration_cartridges
/obj/item/device/pda/centcom
diff --git a/code/modules/persistence/effects/filth.dm b/code/modules/persistence/effects/filth.dm
index 166c374c02..0b2a34109b 100644
--- a/code/modules/persistence/effects/filth.dm
+++ b/code/modules/persistence/effects/filth.dm
@@ -1,6 +1,7 @@
/datum/persistent/filth
name = "filth"
entries_expire_at = 4 // 4 rounds, 24 hours.
+ var/saves_dirt = TRUE //VOREStation edit
/datum/persistent/filth/IsValidEntry(var/atom/entry)
. = ..() && entry.invisibility == 0
diff --git a/code/modules/persistence/effects/filth_vr.dm b/code/modules/persistence/effects/filth_vr.dm
new file mode 100644
index 0000000000..deea9cb877
--- /dev/null
+++ b/code/modules/persistence/effects/filth_vr.dm
@@ -0,0 +1,21 @@
+/datum/persistent/filth/CheckTokenSanity(var/list/token)
+ . = ..()
+ return saves_dirt ? . && isnum(token["dirt"]) : .
+
+/datum/persistent/filth/CreateEntryInstance(var/turf/creating, var/list/token)
+ var/_path = token["path"]
+ if (saves_dirt)
+ new _path(creating, token["age"]+1, token["dirt"])
+ else
+ new _path(creating, token["age"]+1)
+
+/datum/persistent/filth/proc/GetEntryDirt(var/atom/entry)
+ var/turf/simulated/T = get_turf(entry)
+ if (istype(T))
+ return T.dirt
+ return 0
+
+/datum/persistent/filth/CompileEntry(var/atom/entry)
+ . = ..()
+ if (saves_dirt)
+ LAZYADDASSOC(., "dirt", GetEntryDirt(entry))
diff --git a/code/modules/persistence/effects/trash.dm b/code/modules/persistence/effects/trash.dm
index 3eaa121711..628c1d421f 100644
--- a/code/modules/persistence/effects/trash.dm
+++ b/code/modules/persistence/effects/trash.dm
@@ -1,5 +1,6 @@
/datum/persistent/filth/trash
name = "trash"
+ saves_dirt = FALSE //VOREStation edit
/datum/persistent/filth/trash/CheckTurfContents(var/turf/T, var/list/tokens)
var/too_much_trash = 0
diff --git a/code/modules/projectiles/ammunition/zz_autolathe_ch.dm b/code/modules/projectiles/ammunition/zz_autolathe_ch.dm
index 642c71cb6b..3e4de420b7 100644
--- a/code/modules/projectiles/ammunition/zz_autolathe_ch.dm
+++ b/code/modules/projectiles/ammunition/zz_autolathe_ch.dm
@@ -38,10 +38,25 @@
path = /obj/item/ammo_magazine/a57/rubber
/datum/category_item/autolathe/arms/smg_p90
- name = "large capacity top mounted magazine (5.7x28mm armor-piercing)"
+ name = "large capacity top mounted magazine (5.7x28mm standard)"
path = /obj/item/ammo_magazine/m9mmp90
hidden = 1
+/datum/category_item/autolathe/arms/smg_p90/ap
+ name = "large capacity top mounted magazine (5.7x28mm armor-piercing)"
+ path = /obj/item/ammo_magazine/m9mmp90/ap
+ hidden = 1
+
+/datum/category_item/autolathe/arms/smg_p90/rubber
+ name = "large capacity top mounted magazine (5.7x28mm rubber)"
+ path = /obj/item/ammo_magazine/m9mmp90/rubber
+ hidden = 1
+
+/datum/category_item/autolathe/arms/smg_p90/hp
+ name = "large capacity top mounted magazine (5.7x28mm hollow-point)"
+ path = /obj/item/ammo_magazine/m9mmp90/hp
+ hidden = 1
+
/datum/category_item/autolathe/arms/svd_762
name = "SVD magazine (7.62x54mmR)"
path = /obj/item/ammo_magazine/m762svd
@@ -325,12 +340,12 @@
name = "RPK Drum magazine(7.62x39mm standard)"
path = /obj/item/ammo_magazine/akm/drum
hidden = 1
-
+
/datum/category_item/autolathe/arms/s45lc
name = "speedloader(.45 LC)"
path = /obj/item/ammo_magazine/s45lc
hidden = 1
-
+
/datum/category_item/autolathe/arms/s45lc/rubber
name = "speedloader(.45 LC Rubber)"
path = /obj/item/ammo_magazine/s45lc/rubber
@@ -345,4 +360,4 @@
name = ".45 LC"
path = /obj/item/ammo_casing/a45lc
hidden = 1
-
+
diff --git a/code/modules/projectiles/ammunition/zz_magazines_ch.dm b/code/modules/projectiles/ammunition/zz_magazines_ch.dm
index b2e76efa59..0965900806 100644
--- a/code/modules/projectiles/ammunition/zz_magazines_ch.dm
+++ b/code/modules/projectiles/ammunition/zz_magazines_ch.dm
@@ -1,9 +1,24 @@
//Overrides
/obj/item/ammo_magazine/m9mmp90 //congratulations you are now being converted 5.7x28mm, a.k.a the round the p90 actually uses.
- name = "large capacity top mounted magazine (5.7x28mm armor-piercing)" //Ugh, we'll leave it AP I guess
- ammo_type = /obj/item/ammo_casing/a57/ap
+ name = "large capacity top mounted magazine (5.7x28mm standard)" //Standard boolet. Cheaper to make.
+ ammo_type = /obj/item/ammo_casing/a57
+ matter = list(MAT_STEEL = 2700)
caliber = "5.7x28mm"
+/obj/item/ammo_magazine/m9mmp90/hp
+ name = "large capacity top mounted magazine (5.7x28mm armor-piercing)"
+ ammo_type = /obj/item/ammo_casing/a57/ap
+ matter = list(MAT_STEEL = 3000)
+
+/obj/item/ammo_magazine/m9mmp90/rubber
+ name = "large capacity top mounted magazine (5.7x28mm rubber)"
+ ammo_type = /obj/item/ammo_casing/a57/rubber
+
+/obj/item/ammo_magazine/m9mmp90/ap
+ name = "large capacity top mounted magazine (5.7x28mm hollow-point)"
+ ammo_type = /obj/item/ammo_casing/a57/hp
+ matter = list(MAT_STEEL = 3000)
+
/obj/item/ammo_magazine/m762svd //You are now being converted to 7.62x54mmR :3
name = "\improper SVD magazine (7.62x54mmR)"
icon = 'icons/obj/ammo_ch.dmi'
diff --git a/code/modules/projectiles/guns/energy/laser_vr.dm b/code/modules/projectiles/guns/energy/laser_vr.dm
index 15de81b515..a43ebcc7be 100644
--- a/code/modules/projectiles/guns/energy/laser_vr.dm
+++ b/code/modules/projectiles/guns/energy/laser_vr.dm
@@ -185,7 +185,7 @@
break
playsound(src,'sound/items/change_drill.ogg',25,1)
user.hud_used.update_ammo_hud(user, src)
- if(power_supply.give(phase_power) < phase_power)
+ if(power_supply.give(phase_power/8) < phase_power/8) //CHOMP Edit: Nerfed charge time of all phasers by adding /8 in a couple spots to this line
break
recharging = 0
diff --git a/code/modules/projectiles/guns/energy/protector_vr.dm b/code/modules/projectiles/guns/energy/protector_vr.dm
index e1cf9bb853..a0919bedea 100644
--- a/code/modules/projectiles/guns/energy/protector_vr.dm
+++ b/code/modules/projectiles/guns/energy/protector_vr.dm
@@ -29,6 +29,10 @@
light_state = "prot_light"
flight_x_offset = 0
flight_y_offset = 0
+ action_button_name = "Toggle gun-light"
+ var/gun_light_icon = TRUE
+ var/gun_light_on = FALSE
+ var/brightness_on = 5
w_class = ITEMSIZE_SMALL
@@ -46,6 +50,17 @@
return ..()
+/obj/item/weapon/gun/energy/gun/protector/ui_action_click(mob/user, actiontype)
+ gun_light_on = !gun_light_on
+ playsound(src, 'sound/weapons/empty.ogg', 40, TRUE)
+ update_brightness(user)
+ update_icon()
+
+/obj/item/weapon/gun/energy/gun/protector/proc/update_brightness(mob/user = null)
+ if(gun_light_on)
+ set_light(brightness_on)
+ else
+ set_light(0)
/obj/item/weapon/gun/energy/gun/protector/emag_act(var/remaining_charges,var/mob/user)
..()
@@ -88,11 +103,12 @@
else
add_overlay("[icon_state]_[modifystate][ratio]")
- if(can_flashlight & gun_light)
+ if(can_flashlight & gun_light_on)
var/mutable_appearance/flashlight_overlay = mutable_appearance(icon, light_state)
flashlight_overlay.pixel_x = flight_x_offset
flashlight_overlay.pixel_y = flight_y_offset
- add_overlay(flashlight_overlay)
+ add_overlay(light_state)
+
/* Don't have one for this gun
if(itemState)
@@ -104,3 +120,43 @@
emagged = TRUE
name = "small energy gun"
desc = "The LAEP95 'Protector' is another firearm from Lawson Arms and "+TSC_HEPH+", unlike the Perun this is designed for issue to non-security staff. It contains a detachable cell. It also features an integrated flashlight!"
+
+
+/obj/item/weapon/gun/energy/gun/protector/pilotgun/locked
+ name = "secure shuttle-protection pistol"
+ desc = "The LAEP97 'Defender' is a variant of another firearm from Lawson Arms and "+TSC_HEPH+", designed to be issued to pilots for defence of their craft from trespassers whilst in-flight. It contains a detachable cell, two modes of fire and a safety interlock to minimize workplace accidents. It also features an integrated flashlight!"
+
+ description_info = "This gun can only fire non-lethally. Additionally, it's incapable of firing within the proximity of Nanotrasen facilities courtesy of the built-in safety interlock."
+ description_fluff = "A lighter weapon designed for pilots, this gun has a wireless connection to the computer's datacore to ensure it can't be used within the bounds of NT facilities without authorization from ranking members of security, or the Captain."
+
+ firemodes = list(
+ list(mode_name="stunbeam", projectile_type=/obj/item/projectile/beam/stun/med, modifystate="stun", charge_cost = 400),
+ list(mode_name="electrode", projectile_type=/obj/item/projectile/energy/electrode/strong, modifystate="zap", charge_cost = 800),
+ )
+
+ req_access = list(access_armory) //for toggling safety
+ var/locked = 1
+ var/lockable = 1
+
+/obj/item/weapon/gun/energy/gun/protector/pilotgun/locked/attackby(obj/item/I, mob/user)
+ var/obj/item/weapon/card/id/id = I.GetID()
+ if(istype(id) && lockable)
+ if(check_access(id))
+ locked = !locked
+ to_chat(user, "You [locked ? "enable" : "disable"] the safety interlock on \the [src].")
+ else
+ to_chat(user, "Access denied.")
+ user.visible_message("[user] swipes \the [I] against \the [src].")
+ else
+ return ..()
+
+/obj/item/weapon/gun/energy/gun/protector/pilotgun/locked/emag_act(var/remaining_charges,var/mob/user)
+ return ..()
+
+/obj/item/weapon/gun/energy/gun/protector/pilotgun/locked/special_check(mob/user)
+ if(locked)
+ var/turf/T = get_turf(src)
+ if(T.z in using_map.station_levels)
+ to_chat(user, "The safety device prevents the gun from firing this close to the facility.")
+ return 0
+ return ..()
diff --git a/config/jukebox.json b/config/jukebox.json
index 402cf911f4..313338fec8 100644
--- a/config/jukebox.json
+++ b/config/jukebox.json
@@ -4692,49 +4692,49 @@
"title": "Eristocrats (Discordia Pt.II)",
"duration": 1690,
"artist": "That Handsome Devil",
-"genre": "Rock",
"secret": false,
"lobby": false,
-"jukebox": true
+"jukebox": true,
+"genre": "Rock"
},
{
"url": "https://files.catbox.moe/2ozzmg.m4a",
"title": "Charlie's Inferno",
"duration": 2250,
"artist": "That Handsome Devil",
-"genre": "Rock",
"secret": false,
"lobby": false,
-"jukebox": true
+"jukebox": true,
+"genre": "Rock"
},
{
"url": "https://files.catbox.moe/w8x8qb.m4a",
"title": "Monster Mash",
"duration": 1930,
"artist": "Bobby Pickett",
-"genre": "Pop",
"secret": false,
"lobby": false,
-"jukebox": true
+"jukebox": true,
+"genre": "Pop"
},
{
"url": "https://files.catbox.moe/rjvm4j.mp3",
"title": "What's New Pussycat",
"duration": 1290,
"artist": "Tom Jones",
-"genre": "Pop",
"secret": false,
"lobby": false,
-"jukebox": true
+"jukebox": true,
+"genre": "Pop"
},
{
"url": "https://files.catbox.moe/t19nip.m4a",
"title": "It's Not Unusual",
"duration": 1200,
"artist": "Tom Jones",
-"genre": "Pop",
"secret": false,
"lobby": false,
-"jukebox": true
+"jukebox": true,
+"genre": "Pop"
}
]
diff --git a/icons/_nanomaps/southern_cross_nanomap_z1.png b/icons/_nanomaps/southern_cross_nanomap_z1.png
index 058771e38e..6dd87ed95a 100644
Binary files a/icons/_nanomaps/southern_cross_nanomap_z1.png and b/icons/_nanomaps/southern_cross_nanomap_z1.png differ
diff --git a/icons/_nanomaps/southern_cross_nanomap_z3.png b/icons/_nanomaps/southern_cross_nanomap_z3.png
index 237a10746c..4c72d13a06 100644
Binary files a/icons/_nanomaps/southern_cross_nanomap_z3.png and b/icons/_nanomaps/southern_cross_nanomap_z3.png differ
diff --git a/icons/_nanomaps/southern_cross_nanomap_z5.png b/icons/_nanomaps/southern_cross_nanomap_z5.png
index 4e797c4782..e340e339ea 100644
Binary files a/icons/_nanomaps/southern_cross_nanomap_z5.png and b/icons/_nanomaps/southern_cross_nanomap_z5.png differ
diff --git a/icons/inventory/accessory/item.dmi b/icons/inventory/accessory/item.dmi
index 254e388c57..2dd848102b 100644
Binary files a/icons/inventory/accessory/item.dmi and b/icons/inventory/accessory/item.dmi differ
diff --git a/icons/inventory/face/mob.dmi b/icons/inventory/face/mob.dmi
index 89a210f844..4459d4e85b 100644
Binary files a/icons/inventory/face/mob.dmi and b/icons/inventory/face/mob.dmi differ
diff --git a/icons/inventory/uniform/item.dmi b/icons/inventory/uniform/item.dmi
index bfe961f40b..f7a8187995 100644
Binary files a/icons/inventory/uniform/item.dmi and b/icons/inventory/uniform/item.dmi differ
diff --git a/icons/inventory/uniform/item_vr.dmi b/icons/inventory/uniform/item_vr.dmi
index 0f56681293..7a5e4a27e7 100644
Binary files a/icons/inventory/uniform/item_vr.dmi and b/icons/inventory/uniform/item_vr.dmi differ
diff --git a/icons/inventory/uniform/mob_vr.dmi b/icons/inventory/uniform/mob_vr.dmi
index eeca09d7c0..081e660d6d 100644
Binary files a/icons/inventory/uniform/mob_vr.dmi and b/icons/inventory/uniform/mob_vr.dmi differ
diff --git a/icons/mob/human.dmi b/icons/mob/human.dmi
index e281001d1b..9a0255de62 100644
Binary files a/icons/mob/human.dmi and b/icons/mob/human.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_main.dmi b/icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_main.dmi
new file mode 100644
index 0000000000..b0d542cb8e
Binary files /dev/null and b/icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_main.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_taj.dmi b/icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_taj.dmi
new file mode 100644
index 0000000000..f6e5a1acab
Binary files /dev/null and b/icons/mob/human_races/cyberlimbs/zenghu/zenghu_glacier_taj.dmi differ
diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi
index b2b50f1d69..0b2bc13a73 100644
Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ
diff --git a/icons/mob/human_races/r_vox_ch.dmi b/icons/mob/human_races/r_vox_ch.dmi
new file mode 100644
index 0000000000..cf0c3e88f8
Binary files /dev/null and b/icons/mob/human_races/r_vox_ch.dmi differ
diff --git a/icons/mob/species/vox/tail.dmi b/icons/mob/species/vox/tail.dmi
new file mode 100644
index 0000000000..c0d181051a
Binary files /dev/null and b/icons/mob/species/vox/tail.dmi differ
diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi
index 6bf14c70ec..9c210eb641 100644
Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ
diff --git a/icons/mob/vore/taurs_ch.dmi b/icons/mob/vore/taurs_ch.dmi
index 72d4ddb309..0d8a62706b 100644
Binary files a/icons/mob/vore/taurs_ch.dmi and b/icons/mob/vore/taurs_ch.dmi differ
diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi
index 8ade0ce4ae..2bf50ebc2f 100644
Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ
diff --git a/maps/gateway_vr/eggnogtown.dmm b/maps/gateway_vr/eggnogtown.dmm
index 2b394135f0..5bf9e512c2 100644
--- a/maps/gateway_vr/eggnogtown.dmm
+++ b/maps/gateway_vr/eggnogtown.dmm
@@ -1406,12 +1406,6 @@
},
/turf/simulated/floor/tiled,
/area/gateway/eggnogtown/stokeswashere/bathroom)
-"ma" = (
-/obj/effect/overmap/visitable/sector/common_gateway/eggnogtown,
-/turf/simulated/mineral/ignore_cavegen{
- temperature = 258.15
- },
-/area/gateway/eggnogtown/caves)
"mc" = (
/obj/structure/table/marble,
/obj/machinery/reagentgrinder,
@@ -4691,7 +4685,7 @@ Xb
Xb
Xb
Xb
-ma
+Xb
hj
"}
(4,1,1) = {"
diff --git a/maps/gateway_vr/isle_de_monch.dmm b/maps/gateway_vr/isle_de_monch.dmm
index 501945adeb..b15337cbf5 100644
--- a/maps/gateway_vr/isle_de_monch.dmm
+++ b/maps/gateway_vr/isle_de_monch.dmm
@@ -1,317 +1,21145 @@
-"ah" = (/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"aj" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"bh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/closet/walllocker_double/south{name = "Uniform Locker"},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"bE" = (/obj/structure/table/steel,/obj/machinery/light,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3; pixel_y = -2},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"bR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"cq" = (/turf/simulated/floor/water/beach{dir = 8},/area/tether_away/beach/coast)
-"cA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"cK" = (/obj/structure/bed/chair/bay/comfy{dir = 4},/obj/item/trash/spacercake_wrap,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"cR" = (/turf/simulated/floor/water/beach/corner{dir = 8},/area/tether_away/beach/coast)
-"dZ" = (/turf/simulated/floor/water/beach{dir = 5},/area/tether_away/beach/coast)
-"en" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"ey" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"eI" = (/obj/effect/overlay/palmtree_l,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach)
-"eQ" = (/obj/machinery/door/airlock/hatch{req_one_access = list(160)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"fC" = (/turf/simulated/floor/water/beach{dir = 6},/area/tether_away/beach/coast)
-"fH" = (/turf/simulated/floor/water/deep/ocean,/area/tether_away/beach/water)
-"fO" = (/obj/effect/overlay/palmtree_r,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach/resort)
-"gu" = (/obj/structure/hull_corner{dir = 1},/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"gC" = (/obj/tether_away_spawner/beach_outside,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach)
-"gD" = (/obj/effect/overlay/palmtree_l,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach/resort)
-"gV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"hj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/obj/item/trash/syndi_cakes,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"hC" = (/obj/structure/girder,/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"im" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/item/weapon/melee/baton/cattleprod{desc = "Metal rod with wire attached to it."; name = "jury-rigged antenna"; pixel_x = 5; pixel_y = 4},/turf/simulated/floor/outdoors/grass,/area/tether_away/beach/resort)
-"iM" = (/obj/structure/barricade,/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"jk" = (/turf/simulated/floor/water/beach{dir = 10},/area/tether_away/beach/coast)
-"jo" = (/obj/structure/salvageable/machine,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"ju" = (/obj/structure/girder,/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"jy" = (/turf/simulated/floor/water/beach/corner,/area/tether_away/beach/coast)
-"jH" = (/obj/random/multiple/corp_crate,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"jJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/bed,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"jX" = (/obj/structure/salvageable/console{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"kj" = (/obj/machinery/atmospherics/binary/pump/fuel{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"kk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"ks" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/salvageable/console{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"kx" = (/obj/machinery/gateway{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"kJ" = (/turf/simulated/floor/water/beach,/area/tether_away/beach/coast)
-"kQ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/shull,/area/tether_away/beach/resort)
-"lJ" = (/obj/structure/table/rack,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"mp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"mr" = (/obj/structure/barricade,/turf/simulated/mineral/floor/cave{name = "dirt"},/area/tether_away/beach/resort)
-"mt" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 4; id_tag = "salamander_docking_star"; name = "Starboard Airlock Control"; pixel_x = -22; req_one_access = list(160)},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"mA" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"mV" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"nL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/hatch{req_one_access = list(160)},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"nV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"oe" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_one_access = list(160)},/obj/machinery/door/firedoor/multi_tile{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"oB" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"oI" = (/obj/machinery/gateway{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"oS" = (/turf/simulated/floor/water/ocean,/area/tether_away/beach/water)
-"oY" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"pB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"pJ" = (/obj/structure/salvageable/console{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"pX" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"qf" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/item/clothing/ears/earmuffs,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"qQ" = (/obj/structure/hull_corner{dir = 4},/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"rd" = (/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/machinery/airlock_sensor{dir = 8; pixel_x = 21; req_one_access = list(160)},/obj/structure/handrail{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"rN" = (/obj/machinery/door/airlock/glass_external/public,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"rS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/railing/grey{dir = 1},/obj/machinery/atmospherics/portables_connector/fuel{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"sk" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"so" = (/obj/item/broken_device/random,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"sF" = (/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"tG" = (/obj/structure/bed/chair/bay/chair{dir = 4},/obj/machinery/button/remote/blast_door{id = "trade"; name = "Shop Shutters"; pixel_y = -26; req_access = list(160)},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"tO" = (/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"ue" = (/obj/effect/landmark/gateway_scatter,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach/resort)
-"up" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/structure/railing/grey{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"uL" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"vx" = (/obj/machinery/gateway{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"vy" = (/turf/simulated/floor/water/beach/corner{dir = 4},/area/tether_away/beach/coast)
-"vN" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"vT" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"wo" = (/obj/structure/handrail{dir = 1},/obj/machinery/alarm/alarms_hidden{dir = 4; pixel_x = -26},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/closet/autolok_wall{dir = 1; pixel_y = -32},/obj/structure/railing/grey{dir = 4},/obj/structure/bed/chair/bay/comfy{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"wp" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"ww" = (/mob/living/simple_mob/vore/aggressive/deathclaw,/turf/simulated/mineral/floor/cave{name = "dirt"},/area/tether_away/beach/resort)
-"wY" = (/turf/simulated/floor/water/beach/corner{dir = 1},/area/tether_away/beach/coast)
-"xc" = (/obj/machinery/gateway{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"xe" = (/obj/structure/handrail,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"xf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"xM" = (/obj/item/stack/cable_coil,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/item/weapon/melee/baton/cattleprod{desc = "Metal rod with wire attached to it."; name = "jury-rigged antenna"; pixel_x = 5; pixel_y = 4},/obj/item/weapon/cell/emergency_light{pixel_x = -4},/obj/item/device/radio/off{channels = list("Talon" = 1); pixel_x = 4; pixel_y = -3},/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"xS" = (/obj/item/clothing/head/soft/black,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"xU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"xZ" = (/turf/simulated/mineral/floor/cave{name = "dirt"},/area/tether_away/beach/resort)
-"yc" = (/obj/structure/barricade,/obj/structure/barricade/planks,/turf/simulated/mineral/floor/cave{name = "dirt"},/area/tether_away/beach/resort)
-"yd" = (/turf/simulated/wall/shull,/area/tether_away/beach/resort)
-"yn" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "trade"; name = "Shop Shutters"; opacity = 0},/obj/structure/railing/grey{dir = 1},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/eastleft{layer = 2.9; open_layer = 2.9; req_access = list(); req_one_access = list(160)},/obj/random/mug,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"yw" = (/obj/structure/closet/autolok_wall{pixel_y = 32},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"zX" = (/obj/structure/salvageable/computer,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Af" = (/obj/machinery/door/airlock/glass_external/public,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Aq" = (/obj/machinery/gateway{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"As" = (/obj/tether_away_spawner/beach_outside,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach/resort)
-"AE" = (/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/airlock_sensor{dir = 4; pixel_x = -21; req_one_access = list(160)},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"AI" = (/turf/simulated/floor/water/beach{dir = 1},/area/tether_away/beach/coast)
-"Cd" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Cw" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 26},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Cx" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Dt" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"DJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"DW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Em" = (/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"ET" = (/turf/simulated/floor/outdoors/grass,/area/tether_away/beach/resort)
-"Fr" = (/obj/structure/barricade,/obj/structure/barricade/planks,/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"Ft" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"FK" = (/obj/structure/hull_corner,/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"FP" = (/obj/effect/decal/remains,/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"FX" = (/obj/structure/bed/chair/bay/comfy{dir = 4},/obj/effect/decal/remains,/obj/item/clothing/under/utility,/obj/item/clothing/shoes/boots/workboots,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Gv" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Gy" = (/obj/machinery/light,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"GX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Hg" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Ht" = (/obj/structure/handrail{dir = 1},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Hx" = (/obj/effect/decal/remains,/turf/simulated/floor/outdoors/newdirt,/area/tether_away/beach/resort)
-"HH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"HN" = (/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach)
-"HY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"IZ" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"Jd" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"Jr" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"JB" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/reinforced,/area/tether_away/beach/resort)
-"Km" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"KH" = (/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Lt" = (/obj/effect/overmap/visitable/sector/virgo4,/turf/simulated/floor/water/deep/ocean,/area/tether_away/beach/water)
-"Mm" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/voidcraft{req_one_access = list(160)},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Mr" = (/obj/structure/bed/chair,/obj/effect/decal/remains,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"MI" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"MM" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"MO" = (/obj/structure/table/steel,/obj/machinery/light_switch{dir = 8; pixel_x = -22},/obj/structure/closet/walllocker_double/kitchen/south,/obj/item/device/multitool{pixel_x = 4; pixel_y = 2},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"NH" = (/obj/machinery/light/small{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"NY" = (/obj/effect/overlay/palmtree_r,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach)
-"Od" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"OJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"OR" = (/obj/structure/handrail{dir = 1},/obj/structure/closet/walllocker_double/south{name = "Storage Locker"},/obj/random/multiple/corp_crate,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Pd" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Po" = (/obj/structure/table/standard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"PI" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Qo" = (/turf/simulated/floor/water/beach{dir = 4},/area/tether_away/beach/coast)
-"Qx" = (/obj/structure/bed/chair/bay/chair,/obj/structure/handrail,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/autolok_wall{dir = 8; pixel_x = -32},/obj/effect/decal/remains,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"QK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"QZ" = (/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach/resort)
-"Rs" = (/turf/simulated/wall/r_wall,/area/tether_away/beach/resort)
-"RJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"Sk" = (/obj/structure/handrail{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Sp" = (/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach)
-"Ss" = (/obj/machinery/light_switch{dir = 4; pixel_x = 22},/obj/structure/bed,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"SC" = (/obj/structure/railing/grey{dir = 8},/obj/structure/handrail{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/closet/walllocker_double/south{name = "Voidsuit Locker"},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"SG" = (/obj/effect/decal/remains,/turf/simulated/mineral/floor/cave{name = "dirt"},/area/tether_away/beach/resort)
-"Th" = (/obj/structure/table,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"TB" = (/obj/effect/landmark/gateway_scatter,/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach)
-"TQ" = (/obj/structure/salvageable/console,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"TR" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"TW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/handrail,/obj/machinery/light{dir = 8},/obj/structure/closet/autolok_wall{pixel_y = 32},/obj/structure/railing/grey{dir = 4},/obj/item/weapon/gun/projectile/pistol,/obj/item/ammo_magazine/m9mm/compact,/obj/item/ammo_magazine/m9mm/compact,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Uk" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Uu" = (/obj/machinery/light,/obj/structure/closet/walllocker_double/south{name = "Storage Locker"},/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Uy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"UB" = (/turf/simulated/floor/beach/sand/desert/outdoors,/area/tether_away/beach/resort)
-"Ve" = (/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "trade"; name = "Shop Shutters"; opacity = 0},/obj/structure/table/steel_reinforced,/obj/machinery/door/window/brigdoor/eastright{layer = 2.9; open_layer = 2.9; req_access = list(); req_one_access = list(160)},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Vs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"VD" = (/obj/structure/salvageable/server,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Wb" = (/turf/simulated/floor/water/beach{dir = 9},/area/tether_away/beach/coast)
-"Wm" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"WJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"WS" = (/obj/structure/barricade,/obj/structure/barricade/planks,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Xf" = (/obj/machinery/door/airlock/glass_external/public,/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/sensor/ext_sensor,/obj/machinery/airlock_sensor/airlock_exterior/shuttle{pixel_x = 24; pixel_y = -11},/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"Xl" = (/obj/item/weapon/circuitboard/broken,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"Xo" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/handrail{dir = 1},/obj/structure/closet/walllocker_double/south{name = "Storage Locker"},/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Xw" = (/obj/item/weapon/circuitboard/broken,/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"Xx" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"XA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/outdoors/grass,/area/tether_away/beach/resort)
-"XJ" = (/obj/random/multiple/corp_crate,/turf/simulated/floor/outdoors/grass/forest,/area/tether_away/beach/resort)
-"XT" = (/turf/unsimulated/wall/planetary/normal/virgo4,/area/tether_away/beach/water)
-"Yj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/floor/tiled/techmaint,/area/tether_away/beach/resort)
-"YD" = (/obj/structure/handrail{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/tether_away/beach/resort)
-"YN" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/tether_away/beach/resort)
-"ZX" = (/turf/simulated/mineral/ignore_mapgen,/area/tether_away/beach/resort)
-"ZZ" = (/obj/effect/decal/cleanable/blood,/turf/simulated/mineral/floor/cave{name = "dirt"},/area/tether_away/beach/resort)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ah" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"aj" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"bh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/closet/walllocker_double/south{
+ name = "Uniform Locker"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"bE" = (
+/obj/structure/table/steel,
+/obj/machinery/light,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"bR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"cq" = (
+/turf/simulated/floor/water/beach{
+ dir = 8
+ },
+/area/tether_away/beach/coast)
+"cA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"cK" = (
+/obj/structure/bed/chair/bay/comfy{
+ dir = 4
+ },
+/obj/item/trash/spacercake_wrap,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"cR" = (
+/turf/simulated/floor/water/beach/corner{
+ dir = 8
+ },
+/area/tether_away/beach/coast)
+"dZ" = (
+/turf/simulated/floor/water/beach{
+ dir = 5
+ },
+/area/tether_away/beach/coast)
+"en" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"ey" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"eI" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"eQ" = (
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list(160)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"fC" = (
+/turf/simulated/floor/water/beach{
+ dir = 6
+ },
+/area/tether_away/beach/coast)
+"fH" = (
+/turf/simulated/floor/water/deep/ocean,
+/area/tether_away/beach/water)
+"fO" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"gu" = (
+/obj/structure/hull_corner{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"gC" = (
+/obj/tether_away_spawner/beach_outside,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"gD" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"gV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"hj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/item/trash/syndi_cakes,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"hC" = (
+/obj/structure/girder,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"im" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/weapon/melee/baton/cattleprod{
+ desc = "Metal rod with wire attached to it.";
+ name = "jury-rigged antenna";
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/resort)
+"iM" = (
+/obj/structure/barricade,
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"jk" = (
+/turf/simulated/floor/water/beach{
+ dir = 10
+ },
+/area/tether_away/beach/coast)
+"jo" = (
+/obj/structure/salvageable/machine,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"ju" = (
+/obj/structure/girder,
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"jy" = (
+/turf/simulated/floor/water/beach/corner,
+/area/tether_away/beach/coast)
+"jH" = (
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"jJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/bed,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"jX" = (
+/obj/structure/salvageable/console{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"kj" = (
+/obj/machinery/atmospherics/binary/pump/fuel{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"kk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"ks" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/salvageable/console{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"kx" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"kJ" = (
+/turf/simulated/floor/water/beach,
+/area/tether_away/beach/coast)
+"kQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/shull,
+/area/tether_away/beach/resort)
+"lJ" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"mp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"mr" = (
+/obj/structure/barricade,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/resort)
+"mt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 4;
+ id_tag = "salamander_docking_star";
+ name = "Starboard Airlock Control";
+ pixel_x = -22;
+ req_one_access = list(160)
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"mA" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"mV" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"nL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list(160)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"nV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"oe" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ req_one_access = list(160)
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"oB" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"oI" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"oS" = (
+/turf/simulated/floor/water/ocean,
+/area/tether_away/beach/water)
+"oY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"pB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"pJ" = (
+/obj/structure/salvageable/console{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"pX" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"qf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/item/clothing/ears/earmuffs,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"qQ" = (
+/obj/structure/hull_corner{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"rd" = (
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 21;
+ req_one_access = list(160)
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"rN" = (
+/obj/machinery/door/airlock/glass_external/public,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"rS" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"sk" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"so" = (
+/obj/item/broken_device/random,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"sF" = (
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"tG" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "trade";
+ name = "Shop Shutters";
+ pixel_y = -26;
+ req_access = list(160)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"tO" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"ue" = (
+/obj/effect/landmark/gateway_scatter,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"up" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"uL" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"vx" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"vy" = (
+/turf/simulated/floor/water/beach/corner{
+ dir = 4
+ },
+/area/tether_away/beach/coast)
+"vN" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"vT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"wo" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/autolok_wall{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/bed/chair/bay/comfy{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"wp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"ww" = (
+/mob/living/simple_mob/vore/aggressive/deathclaw,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/resort)
+"wY" = (
+/turf/simulated/floor/water/beach/corner{
+ dir = 1
+ },
+/area/tether_away/beach/coast)
+"xc" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"xe" = (
+/obj/structure/handrail,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"xf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"xM" = (
+/obj/item/stack/cable_coil,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/item/weapon/melee/baton/cattleprod{
+ desc = "Metal rod with wire attached to it.";
+ name = "jury-rigged antenna";
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/emergency_light{
+ pixel_x = -4
+ },
+/obj/item/device/radio/off{
+ channels = list("Talon" = 1);
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"xS" = (
+/obj/item/clothing/head/soft/black,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"xU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"xZ" = (
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/resort)
+"yc" = (
+/obj/structure/barricade,
+/obj/structure/barricade/planks,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/resort)
+"yd" = (
+/turf/simulated/wall/shull,
+/area/tether_away/beach/resort)
+"yn" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "trade";
+ name = "Shop Shutters";
+ opacity = 0
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ layer = 2.9;
+ open_layer = 2.9;
+ req_access = list();
+ req_one_access = list(160)
+ },
+/obj/random/mug,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"yw" = (
+/obj/structure/closet/autolok_wall{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"zX" = (
+/obj/structure/salvageable/computer,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Af" = (
+/obj/machinery/door/airlock/glass_external/public,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Aq" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"As" = (
+/obj/tether_away_spawner/beach_outside,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"AE" = (
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -21;
+ req_one_access = list(160)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"AI" = (
+/turf/simulated/floor/water/beach{
+ dir = 1
+ },
+/area/tether_away/beach/coast)
+"Cd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Cw" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Cx" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Dt" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"DJ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"DW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Em" = (
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"ET" = (
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/resort)
+"Fr" = (
+/obj/structure/barricade,
+/obj/structure/barricade/planks,
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"Ft" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"FK" = (
+/obj/structure/hull_corner,
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"FP" = (
+/obj/effect/decal/remains,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"FX" = (
+/obj/structure/bed/chair/bay/comfy{
+ dir = 4
+ },
+/obj/effect/decal/remains,
+/obj/item/clothing/under/utility,
+/obj/item/clothing/shoes/boots/workboots,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Gv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Gy" = (
+/obj/machinery/light,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"GX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Hg" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Ht" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Hx" = (
+/obj/effect/decal/remains,
+/turf/simulated/floor/outdoors/newdirt,
+/area/tether_away/beach/resort)
+"HH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"HN" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"HY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"IZ" = (
+/obj/machinery/gateway,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"Jd" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"Jr" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"JB" = (
+/obj/machinery/gateway/centeraway{
+ calibrated = 0
+ },
+/turf/simulated/floor/reinforced,
+/area/tether_away/beach/resort)
+"Km" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"KH" = (
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Mm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/voidcraft{
+ req_one_access = list(160)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Mr" = (
+/obj/structure/bed/chair,
+/obj/effect/decal/remains,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"MI" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"MM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"MO" = (
+/obj/structure/table/steel,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -22
+ },
+/obj/structure/closet/walllocker_double/kitchen/south,
+/obj/item/device/multitool{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"NH" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"NY" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"Od" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"OJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"OR" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/structure/closet/walllocker_double/south{
+ name = "Storage Locker"
+ },
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Pd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Po" = (
+/obj/structure/table/standard,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"PI" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Qo" = (
+/turf/simulated/floor/water/beach{
+ dir = 4
+ },
+/area/tether_away/beach/coast)
+"Qx" = (
+/obj/structure/bed/chair/bay/chair,
+/obj/structure/handrail,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/autolok_wall{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/effect/decal/remains,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"QK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"QZ" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"Rs" = (
+/turf/simulated/wall/r_wall,
+/area/tether_away/beach/resort)
+"RJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"Sk" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Sp" = (
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"Ss" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = 22
+ },
+/obj/structure/bed,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"SC" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/closet/walllocker_double/south{
+ name = "Voidsuit Locker"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"SG" = (
+/obj/effect/decal/remains,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/resort)
+"Th" = (
+/obj/structure/table,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"TB" = (
+/obj/effect/landmark/gateway_scatter,
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach)
+"TQ" = (
+/obj/structure/salvageable/console,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"TR" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"TW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/handrail,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/autolok_wall{
+ pixel_y = 32
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Uk" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Uu" = (
+/obj/machinery/light,
+/obj/structure/closet/walllocker_double/south{
+ name = "Storage Locker"
+ },
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Uy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"UB" = (
+/turf/simulated/floor/beach/sand/desert/outdoors,
+/area/tether_away/beach/resort)
+"Ve" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "trade";
+ name = "Shop Shutters";
+ opacity = 0
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ layer = 2.9;
+ open_layer = 2.9;
+ req_access = list();
+ req_one_access = list(160)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Vs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"VD" = (
+/obj/structure/salvageable/server,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Wb" = (
+/turf/simulated/floor/water/beach{
+ dir = 9
+ },
+/area/tether_away/beach/coast)
+"Wm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"WJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"WS" = (
+/obj/structure/barricade,
+/obj/structure/barricade/planks,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Xf" = (
+/obj/machinery/door/airlock/glass_external/public,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
+ pixel_x = 24;
+ pixel_y = -11
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"Xl" = (
+/obj/item/weapon/circuitboard/broken,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"Xo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/structure/closet/walllocker_double/south{
+ name = "Storage Locker"
+ },
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Xw" = (
+/obj/item/weapon/circuitboard/broken,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"Xx" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"XA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/outdoors/grass,
+/area/tether_away/beach/resort)
+"XJ" = (
+/obj/random/multiple/corp_crate,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/tether_away/beach/resort)
+"XT" = (
+/turf/unsimulated/wall/planetary/normal/virgo4,
+/area/tether_away/beach/water)
+"Yj" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/closet/walllocker/emerglocker/east,
+/turf/simulated/floor/tiled/techmaint,
+/area/tether_away/beach/resort)
+"YD" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether_away/beach/resort)
+"YN" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/tether_away/beach/resort)
+"ZX" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/tether_away/beach/resort)
+"ZZ" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/mineral/floor/cave{
+ name = "dirt"
+ },
+/area/tether_away/beach/resort)
(1,1,1) = {"
-XTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbAIAIAIAIdZoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbvySpSpSpSpcRdZoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSWbAIvySpSpSpSpSpSpcRdZoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbvySpSpSpSpUBUBSpSpSpQooSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSWbAIvySpSpSpUBZXZXZXZXSpSpcRdZoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpSpSpUBZXZXZXZXZXUBSpSpcRdZoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSWbvySpSpSpUBZXZXZXZXZXZXZXZXSpSpSpQooSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSWbAIAIAIAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSWbvySpSpSpUBZXZXZXZXZXZXZXZXZXUBSpSpQooSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSWbvySpSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpSpZXZXZXZXZXZXZXZXZXZXZXZXSpSpcRAIdZoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoScqSpSpSpSpSpSpcRAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXUBSpSpSpcRAIAIAIdZoSoSfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoScqSpTBUBUBSpSpSpSpcRAIAIAIAIAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSWbvySpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpSpSpSpSpSpSpcRdZoSoSfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBSpSpSpSpSpSpSpSpSpcRAIAIAIAIAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSWbvySpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpSpSpSpSpSpcRdZoSfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBueUBUBSpSpSpSpSpSpSpSpSpSpSpSpSpcRAIAIAIAIAIAIAIdZoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBSpSpSpQooSoSoSfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoScqSpSpUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpSpSpSpSpSpSpSpSpSpSpSpSpcRAIAIdZoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBSpSpSpQooSoSoSoSfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBUBETETETETETETETETUBUBUBUBUBUBSpSpSpSpSpSpSpSpSpSpSpSpcRdZoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBSpSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpUBETETETETETETETETETETETETETETETUBUBUBUBUBfOUBUBUBUBSpSpSpSpeIcRdZoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpETETETETETETETETETETETETETETETETETETETUBUBUBUBUBUBUBgDQZUBUBSpSpSpcRdZoSoSoSoSoSfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbAIAIvySpSpSpETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBUBUBUBUBUBSpSpSpQooSoSoSoSoSfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpSpSpUBETETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBUBUBUBUBUBgCSpcRdZoSoSoSoSfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSjkwYSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpSpUBUBETETETETETETETETETETETETETsFsFsFsFsFsFETETETETETUBUBUBUBUBUBUBUBfOUBSpSpSpQooSoSoSoSoSfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBETETETETETETETETsFsFsFsFEmydydydydydydydEmETETETETETUBUBUBUBUBUBUBQZUBUBSpSpQooSoSoSoSoSfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoScqSpSpSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBETETETETETETETsFsFsFsFEmEmEmKHKHxeajKHjHEmEmEmETETETETETETETETUBUBUBUBUBUBSpSpQooSoSoSoSoSfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSjkwYSpSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpQooSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBETETETETETETETsFsFsFsFEmEmEmEmEmuLUkUkUkUkKHEmsFsFsFETETETETETETETUBUBUBUBUBSpSpQooSoSoSoSoSfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSjkwYSpSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpQooSoSoSoSoSoSoSoSoSoSoSWbAIvySpSpSpUBUBETETETETETETETsFsFsFsFsFsFsFsFsFEmydnLydydydEmsFsFsFydsFETETETETETETETUBUBUBUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSjkkJwYSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpSpQooSoSoSoSoSoSoSoSoSoSWbvySpSpSpSpUBUBETETETETETETFKydydydjuydsFsFsFhCsFsFsFsFsFsFsFFPsFydydydsFhCsFETETydydETETUBUBUBSpSpcRdZoSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXSpjyfCoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBUBETETETETEmEmydydydNHKHYNXxsFsFsFsFKHsFKHEmEmEmsFsFsFXJsFsFsFsFEmKHSsydETETUBUBUBUBSpSpQooSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpUBZXZXZXZXZXZXZXZXZXZXZXSpSpjyfCoSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBUBETETETEmEmEmEmKHoYMMFtvTJrwpsFEmEmEmEmEmEmEmjuEmEmEmEmsFEmEmEmEmEmUyCwydydenenWmUBUBSpSpQooSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpUBZXZXZXZXZXZXZXZXZXSpSpjyfCoSoSoSoSoSoSoSoSoSoSWbvySpSpSpUBUBUBUBETETETETEmEmEmmVGyCdKHkjOJOdajsFsFsFEmydydydydEmEmjusFsFKHsFEmEmKHHYydydTWjJTQPdWmUBSpSpcRdZoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBZXZXZXZXZXZXZXSpSpQooSoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBUBETETETETETETsFEmjuydydrSpXsFsFsFsFhCsFsFKHsFsFsFsFsFsFydydsFEmEmbRKHpBtOxUhjkkFXpJHHUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpSpSpUBZXZXZXZXZXUBSpSpQooSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFEmEmEmEmKHKHKHsFsFsFEmEmEmEmEmxfDWbhoeqfKHcKpJHHUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkkJwYSpSpSpSpUBUBUBUBUBSpSpQooSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBUBUBETETETETsFsFEmEmKHsFsFEmEmEmEmHxEmEmEmKHKHKHKHKHKHKHsFsFsFsFsFEmEmydMmydydwoxSjXPdgVUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkkJwYSpSpSpSpUBUBSpSpjyfCoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBUBUBETETETETETEmEmKHKHKHKHEmEmEmEmKHmAYDKHKHGvGXahKmeyyntOtOSCHtsFEmEmEmKHWJCwydydcAcAgVUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkkJwYSpSpSpSpSpSpQooSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBUBUBETETETETsFsFEmmVKHuLEmEmEmKHKHKHupahydPIORSkUuXotGVetOrdydydQKKHEmEmEmKHsFETETETETETUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbAIAIAIAIAIAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpSpSpjyfCoSoSoSoSoSoSoSoSoSWbvySpSpUBfOUBUBUBUBETETETETsFEmEmEmHgjuEmEmEmEmEmKHydydydeQydydydydydydrNrNydQxWJKHKHsFsFsFsFETETETETUBUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSWbvySpSpHNSpSpSpcRAIAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkkJkJkJkJfCoSoSoSoSoSoSoSoSoSWbvySpSpgCUBUBQZUBUBETETETETsFsFsFsFEmEmEmEmEmEmEmEmydydajywKHUkKHUkCxoBkQAEYjydMOksbEsFsFTRsFsFETETETETUBUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpNYSpSpSpSpSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpUBUBUBUBUBUBETETETETsFsFsFsFsFsFsFsFsFEmEmEmEmydydskUkjHajjHDJMIydmtYjydydnVydsFsFRJsFsFETETETETUBUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSWbvySpSpUBUBUBUBSpSpSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbAIvySpeISpUBUBUBUBUBUBUBETETETETsFsFsFsFsFsFsFsFsFsFsFsFEmqQydydjujuydydHgydydAfXfydgusFsFsFsFRJsFsFETETETUBUBUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBUBfOUBUBUBUBSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbAIvySpSpSpSpUBUBUBUBUBUBUBUBETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFEmEmEmEmEmsFsFsFsFsFsFsFsFsFsFsFsFxMVsmpXAXAimETUBUBUBUBUBSpSpQooSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpeIUBAsUBUBUBUBUBUBUBSpSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbAIvySpSpSpSpUBUBUBUBgDUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBSpSpSpQooSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBUBUBUBUBUBUBUBfOSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpSpSpUBAsUBUBUBUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBSpSpjyfCoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpUBUBUBUBZXZXUBUBUBUBUBSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpeIUBUBUBUBUBUBUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETETUBUBUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBfOUBUBZXZXZXZXZXUBUBUBSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSWbvySpSpSpQZUBUBUBgDUBUBUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpQZUBUBZXZXZXZXZXZXUBUBUBUBSpSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBUBUBUBUBUBUBUBETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBSpSpjyfCoSoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXUBUBgDUBSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSWbvySpSpUBUBUBUBUBUBUBUBETETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSWbvySpSpUBETZXZXZXZXZXZXZXZXZXUBQZUBUBSpSpcRdZoSoSoSoSoSoSoSoSoSoScqSpSpSpUBUBUBUBUBUBUBETETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoScqSpSpSpUBETZXZXZXZXZXZXZXZXZXUBUBUBUBNYSpSpQooSoSoSoSoSoSoSoSoSoScqSpSpUBUBUBUBUBUBUBETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETETUBUBUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbvySpSpUBETETZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpcRdZoSoSoSoSoSoSoSoSoScqSpSpUBUBfOUBUBUBETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETETUBUBUBUBUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbvySpSpUBETETETZXZXZXZXZXZXZXZXZXZXUBUBUBUBUBSpSpcRdZoSoSoSoSoSoSoSWbvySpSpUBUBUBUBUBUBETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETETETUBUBUBUBSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSWbAIvySpSpSpUBETETETZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpSpQooSoSoSoSoSoSoScqSpSpSpUBUBUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFsFETETETETsFsFETETETETETETETsFsFsFsFETETETETsFsFsFsFsFsFETETETETETETETETUBUBUBUBUBSpSpjyfCoSoSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSWbAIvySpSpSpSpUBETETETETZXZXZXZXZXZXZXZXZXZXZXUBUBgDUBUBSpSpQooSoSoSoSoSoSoScqSpSpUBUBUBUBUBUBUBETETETETETsFsFsFsFsFsFsFsFsFETETETETETETETETETETETETETETETETETETETETETETETsFsFETETETETETETETETETETETUBUBUBUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSWbvySpSpSpSpUBUBETETETETETZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpQooSoSoSoSoSoSWbvySpSpUBUBUBUBUBUBUBUBETETETETsFsFsFsFsFsFETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpSpUBUBUBETETETETETZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpcRdZoSoSoSoSoScqSpSpSpUBUBUBUBUBUBUBUBETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBSpSpSpjyfCoSoSoSoSoSoSfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpSpUBETETETETETETETETZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpcRAIdZoSWbAIvySpSpUBUBUBUBUBUBUBUBUBUBETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBSpSpjyfCoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpSpUBETETETETETETETETZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpSpSpcRAIvySpSpSpSpUBUBUBUBUBUBUBUBUBUBUBETETETETETETETETETETETETETUBUBUBUBUBETETETETETETETETUBUBUBUBUBUBETETETETETETETETETETETETUBUBUBUBUBSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpUBETETETETETETETETZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBSpSpSpSpSpSpSpSpSpUBUBUBUBUBUBUBUBUBUBUBUBUBETETETETETETETETETUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBETETETETETETETETETETUBUBUBSpSpSpSpjyfCoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBETETETETETZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBSpSpSpSpSpUBUBUBUBUBUBUBUBUBUBUBueUBUBUBUBUBUBUBETETETUBUBUBUBUBUBUBUBUBUBUBSpSpSpSpSpSpSpSpSpUBUBUBUBUBUBUBUBETETETETETETETUBUBUBSpSpSpjykJfCoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpETETETZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpSpSpSpSpSpSpSpSpSpSpNYUBQZUBfOUBUBUBUBETETETETUBUBUBSpSpSpjyfCoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpETETZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBUBUBUBUBETETETETETUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpSpSpjykJkJkJkJkJkJkJwYSpSpSpSpUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpjyfCoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpETETZXZXZXZXZXRsRsRsRsRsRsRsRsRsRsZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBUBUBETETETETETETETETETUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpSpSpSpjykJkJfCoSoSoSoSoSoSoSjkkJwYSpSpSpSpUBUBUBfOUBUBUBUBUBUBSpSpjyfCoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBETETZXZXZXZXZXRsoIxckxKHRszXVDjoRsZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXUBETETETETETETETETETETETETETUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpSpSpSpjykJfCoSoSoSoSoSoSoSoSoSoSoSoSjkkJwYSpSpUBUBUBUBUBUBueUBUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHoSoSoSWbvySpSpUBETZXZXZXZXZXZXRsAqJBvxXwKHahahKHRsZXSGxZZXZXZXZXZXZXZXZXZXZXZXZXZXZXETETETETsFsFsFsFETETETETETETETETUBUBUBUBUBUBUBUBSpSpSpSpjykJkJkJfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpUBUBUBUBUBUBUBUBUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHoSoSoScqSpSpSpUBZXZXZXZXZXZXZXRsDtIZJdahKHKHsoKHWSxZxZxZxZxZZXZXZXZXZXZXZXZXZXZXZXZXETETsFsFsFsFsFsFsFETETETETETETETETUBUBUBUBUBUBSpSpSpjykJfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoScqSpNYSpUBueUBUBUBUBgDSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBZXZXZXZXZXZXZXZXRsahKHKHKHKHKHKHKHWSxZxZxZSGxZZXZXZXZXZXZXZXZXZXZXZXETETETsFsFsFsFsFsFsFETETETETETETETETETUBUBUBUBSpSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpSpUBUBUBUBUBUBSpSpjyfCoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBZXZXZXZXZXZXZXZXRsRsRsRsRsKHXlMrThRsZXZXZXxZxZxZZXZXZXZXZXZXZXZXZXETETETETsFsFsFsFsFsFsFsFETETETETETETETETUBUBUBUBSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpSpQZfOUBUBSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXRslJvNvNPoRsZXZXZXZXycycZXZXZXZXZXZXZXZXZXETETETETETsFsFsFsFsFsFsFsFsFETETETETETETUBUBUBUBSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSWbAIdZoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpSpSpSpSpSpSpjyfCoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXRsRsRsRsRsRsZXZXZXZXxZxZZXZXZXZXZXZXZXZXZXZXETETETETsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBUBSpSpcRdZoSoSoSoSoSoSoSoSoSWbAIAIvySpcRdZoSoSoSoSoSWbAIAIdZoSoSjkwYSpSpSpSpSpSpjyfCoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZxZZXZXZXZXZXZXZXZXZXETETETETsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBSpSpSpcRAIAIdZoSoSoSoSoSWbvySpSpSpSpSpcRdZoSoSoSWbvySpSpQooSoSoSjkkJkJkJkJkJkJfCoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZZZxZxZxZxZZXZXZXZXZXZXZXZXETETETETsFsFsFsFsFsFsFsFsFsFETETETETETETUBUBUBSpSpSpSpSpcRAIAIAIAIAIvySpSpSpSpSpSpSpQooSoSWbvyHNeIjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZxZxZxZxZxZxZxZZXZXZXZXZXZXZXZXETETETsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBUBSpSpSpSpSpSpSpSpSpSpNYSpSpSpSpSpNYSpcRdZoSjkwYSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqNYSpUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZSGxZxZxZxZxZxZSGZXZXZXZXZXZXZXZXETETETETsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBUBUBUBfOSpgCSpSpSpSpSpSpSpeISpSpgCSpSpQooSoSjkkJkJfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZZZxZxZxZxZxZxZZZxZxZxZZXZXZXZXZXZXZXETETETETsFsFsFsFsFsFsFsFsFsFsFsFETETETETUBUBUBUBUBSpSpSpSpSpSpSpSpSpgCSpSpSpSpSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZxZxZxZwwxZxZxZxZxZxZZXZXZXZXZXZXETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETUBUBSpSpSpSpSpSpSpSpNYHNSpSpSpSpSpNYSpSpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZxZxZxZxZxZZZxZxZZZxZZXZXZXZXZXETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETUBSpSpSpjykJwYSpSpjykJwYSpSpSpSpSpHNSpSpNYjykJfCoSoSoSfHfHfHoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpgDUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZZZZZxZxZxZxZxZxZxZZXZXZXZXZXETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETUBSpSpjyfCoSjkkJkJfCoSjkkJwYSpSpSpSpSpjykJfCoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZZZxZxZxZxZxZxZZXZXZXZXZXETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETUBUBSpSpQooSoSoSoSoSoSoSoSoSjkkJkJkJkJkJfCoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZxZSGxZxZxZxZZXZXZXZXZXETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBUBSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHoSoSoSoSjkwYSpSpUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZxZxZxZxZiMZXZXETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBUBSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXxZxZmrFrFrEmETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBSpSpSpQooSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHoSoSoSoScqSpNYQZUBUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXiMFrEmEmETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpSpUBUBUBUBUBZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXZXEmETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETUBSpSpSpQooSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHoSoSoSjkwYSpSpSpUBUBUBUBUBETETETETZXZXZXZXZXZXZXZXZXZXZXZXZXETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBSpSpjyfCoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHoSoSoSoSjkwYSpSpUBUBUBUBUBETETETETETZXZXZXZXZXZXZXZXZXZXZXETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBSpSpQooSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpeISpUBfOUBUBUBUBETETETETETETZXZXZXZXZXZXETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBSpSpcRdZoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSjkwYSpSpSpSpHNSpUBUBETETETETETETETETETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBSpSpSpQooSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSjkwYSpSpSpSpSpSpSpUBUBETETETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETUBUBUBSpSpcRdZoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSjkkJkJkJkJwYSpSpSpSpUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBUBSpSpcRAIdZoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSjkkJwYSpSpUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETUBUBUBSpSpSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSjkwYSpSpUBETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBUBSpSpSpcRdZoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoScqSpSpUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETsFsFsFsFsFsFETETETETETETUBUBUBUBSpSpSpcRdZoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoScqSpSpUBETETETETETsFsFsFsFsFsFsFsFsFsFsFsFsFETETETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBUBSpSpSpcRdZoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSjkwYSpSpUBETETETETsFsFsFsFsFsFsFsFsFsFsFETETETETETETETETETETETETETETETETETETETETETETETETETETUBUBUBUBUBUBUBSpSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoScqSpSpUBETETETETsFsFsFsFsFsFsFsFsFsFsFETETETETETUBUBETETETETETETETETETETETETETETETETETETUBUBUBUBUBgDUBUBUBSpSpcRdZoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoScqSpSpUBETETETETETETsFsFsFsFsFsFsFETETETETETUBUBUBUBUBUBUBUBETETETETETETETETETETETETUBUBUBUBUBUBUBUBUBUBUBUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoScqSpSpUBETETETETETETsFsFsFsFsFsFETETETETETUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpUBETETETETETETsFsFsFsFsFETETETETETUBUBgDUBSpSpSpSpUBUBfOUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBAsUBSpSpQooSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSjkwYSpSpETETETETETETETsFsFsFETETETETETETUBQZSpSpSpSpSpSpSpUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBfOUBUBUBUBUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoScqSpSpETETETETETETETETETETETETETETETUBUBSpSpSpjykJwYSpSpUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBfOUBUBSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBETETETETETETETETETETETETETETUBUBSpSpjyfCoScqSpSpSpSpSpUBUBUBUBUBUBUBUBAsUBUBUBfOUBUBUBUBUBUBUBUBSpSpSpQooSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBUBETETETETETETETETETETETETETUBSpSpSpQooSoSjkwYSpSpSpSpSpSpSpHNgDUBUBUBUBUBUBUBUBUBUBUBUBUBUBUBSpSpSpjyfCoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoScqSpSpUBUBUBETETETETETETETETETETETUBfOSpSpjyfCoSoSoSjkkJkJwYSpSpSpSpSpSpSpUBUBUBUBUBUBUBUBUBUBgDQZUBUBSpSpjyfCoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpUBUBUBETETETETETETETETETETUBUBSpSpSpQooSoSoSoSoSoSoSjkkJkJkJkJwYSpSpSpSpUBUBUBUBAsUBUBUBUBUBUBUBSpSpQooSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSjkwYSpSpUBUBETETETETETETETETUBUBUBUBSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSjkkJwYSpSpSpUBUBUBUBUBUBUBUBUBUBUBSpSpQooSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpUBUBETETETETETETETUBUBUBUBUBSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkwYSpSpUBUBUBUBUBUBUBUBAsUBfOSpSpQooSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpUBUBUBETETETUBUBUBUBUBUBfOSpSpSpQooSoSoSoSoSWbAIAIAIAIAIdZoSoSoSoSjkwYSpSpUBUBUBUBfOUBUBUBUBUBSpSpQooSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoScqSpSpUBUBUBUBUBUBUBUBUBfOUBUBSpSpSpjyfCoSoSoSWbAIvySpSpSpSpSpcRdZoSoSoSoScqSpSpSpSpSpSpQZUBUBUBUBSpSpSpQooSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoScqSpSpUBUBUBUBUBUBUBUBUBQZUBUBSpSpjyfCoSoSoSWbvySpSpSpSpSpSpSpSpcRdZoSoSoSjkwYSpSpSpSpSpSpSpSpSpSpSpSpjyfCoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoScqSpNYSpUBUBUBUBUBUBUBUBUBgDSpSpjyfCoSoSoSoScqSpSpHNeISpSpSpNYSpSpcRdZoSoSoSjkkJkJkJwYSpSpSpSpSpSpjykJfCoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSjkwYSpSpUBUBUBUBgDUBUBUBUBSpSpSpQooSoSoSoSoSjkwYSpSpSpSpNYTBSpHNSpSpcRAIdZoSoSoSoSoSjkkJkJkJkJkJkJfCoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSjkwYSpSpUBUBUBUBUBUBUBSpSpSpjyfCoSoSoSoSoSoSjkkJwYSpSpSpSpSpSpSpSpSpSpcRAIdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpNYUBUBUBUBUBSpSpSpjyfCoSoSoSoSoSoSoSoSoSjkkJkJkJwYSpSpTBSpeISpSpSpcRdZoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSjkwYHNSpSpSpSpSpSpSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSjkkJwYSpSpSpSpSpSpjyfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoScqSpSpSpSpSpSpSpjykJfCoSoSoSoSoSfHfHfHoSoSoSoSoSoSoSoSoSjkwYSpSpSpSpSpQooSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSjkwYSpSpSpSpSpSpQooSoSoSoSoSfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSjkkJkJkJkJkJfCoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSjkkJkJkJkJkJkJfCoSoSoSfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSoSfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTLtfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHXT
-XTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXTXT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+"}
+(2,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(3,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(4,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(5,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(6,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(7,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(8,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(9,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(10,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(11,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(12,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(13,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(14,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(15,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+NY
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+cq
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(16,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(17,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+UB
+gD
+UB
+UB
+Sp
+Sp
+NY
+Sp
+Sp
+wY
+cq
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(18,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+QZ
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(19,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+eI
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(20,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(21,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(22,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+fO
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(23,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+HN
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(24,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(25,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(26,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+Rs
+Rs
+Rs
+Rs
+Rs
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(27,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+Rs
+oI
+Aq
+Dt
+ah
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+wY
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(28,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+Rs
+xc
+JB
+IZ
+KH
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+cq
+cq
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(29,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+Rs
+kx
+vx
+Jd
+KH
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+cq
+cq
+cq
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(30,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+eI
+Sp
+Sp
+UB
+QZ
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+Rs
+KH
+Xw
+ah
+KH
+Rs
+Rs
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+cq
+cq
+cq
+cq
+cq
+jk
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(31,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+fO
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Rs
+Rs
+KH
+KH
+KH
+KH
+lJ
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(32,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+NY
+UB
+UB
+As
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Rs
+zX
+ah
+KH
+KH
+Xl
+vN
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+NY
+Sp
+wY
+cq
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(33,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+HN
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Rs
+VD
+ah
+so
+KH
+Mr
+vN
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+wY
+cq
+jk
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(34,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+fO
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Rs
+jo
+KH
+KH
+KH
+Th
+Po
+Rs
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+HN
+Sp
+wY
+jk
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(35,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Rs
+Rs
+Rs
+WS
+WS
+Rs
+Rs
+Rs
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+NY
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(36,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+ZZ
+xZ
+xZ
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(37,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+SG
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+xZ
+xZ
+ZZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(38,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+SG
+xZ
+xZ
+xZ
+ZZ
+ZZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+gD
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(39,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+cq
+cq
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+SG
+xZ
+ZX
+ZX
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(40,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+cq
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+fO
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+yc
+xZ
+xZ
+ZZ
+xZ
+xZ
+xZ
+ww
+xZ
+xZ
+xZ
+SG
+xZ
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(41,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+yc
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(42,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+UB
+gD
+QZ
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+ZZ
+xZ
+xZ
+xZ
+xZ
+xZ
+iM
+ZX
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+fO
+QZ
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(43,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+ZZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+mr
+Fr
+Em
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+gD
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(44,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+xZ
+Fr
+Em
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(45,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+NY
+UB
+UB
+UB
+gD
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+SG
+xZ
+xZ
+ZZ
+xZ
+ZX
+ZX
+iM
+Fr
+Em
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+fO
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(46,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+xZ
+xZ
+xZ
+ZX
+ZX
+ZX
+ZX
+Em
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(47,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+wY
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+fO
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(48,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(49,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+QZ
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(50,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+Qo
+Qo
+cR
+Sp
+Sp
+Sp
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+UB
+UB
+gD
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(51,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+AI
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(52,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+AI
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(53,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+AI
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ZX
+ZX
+ZX
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+wY
+jk
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(54,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+AI
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+UB
+UB
+Sp
+Sp
+wY
+cq
+jk
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(55,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+Wb
+vy
+Sp
+HN
+Sp
+wY
+jk
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(56,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+AI
+Sp
+Sp
+eI
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(57,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(58,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+fO
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+AI
+Sp
+Sp
+Sp
+NY
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(59,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+dZ
+Qo
+Qo
+cR
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+AI
+Sp
+Sp
+Sp
+TB
+Sp
+wY
+jk
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(60,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+AI
+Sp
+Sp
+NY
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(61,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+dZ
+cR
+Sp
+Sp
+HN
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(62,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+ZX
+Sp
+jy
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+TB
+Sp
+wY
+jk
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(63,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+Sp
+Sp
+Sp
+UB
+UB
+Sp
+ZX
+ZX
+ZX
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+HN
+Sp
+wY
+jk
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(64,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+fO
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+gD
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+eI
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(65,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+jy
+cR
+Sp
+Sp
+jy
+Qo
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+QZ
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(66,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+dZ
+cR
+Sp
+Sp
+jy
+fC
+dZ
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+eI
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(67,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+dZ
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+wY
+cq
+jk
+oS
+oS
+AI
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(68,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+ue
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+As
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+dZ
+cR
+jy
+Qo
+fC
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(69,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+gD
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+dZ
+fC
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(70,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+As
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(71,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+eI
+Sp
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(72,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+fO
+UB
+UB
+As
+UB
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(73,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(74,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+gC
+UB
+UB
+UB
+gD
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+fO
+QZ
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(75,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+fO
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(76,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+fO
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+gD
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(77,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+QZ
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+jy
+Qo
+cR
+Sp
+Sp
+Sp
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+fC
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+gD
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+QZ
+UB
+UB
+As
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(78,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+Sp
+Sp
+jy
+Qo
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(79,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+fO
+UB
+UB
+UB
+UB
+UB
+fO
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(80,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+fO
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+As
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(81,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+vy
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(82,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+gC
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+Qo
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(83,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(84,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(85,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+NY
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(86,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+Em
+ET
+ET
+ET
+sF
+Em
+sF
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+HN
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(87,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+Em
+Em
+ET
+sF
+sF
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+NY
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(88,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+Em
+Em
+Em
+sF
+sF
+Em
+KH
+mV
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+gC
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(89,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+vy
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+Em
+Em
+Em
+Em
+sF
+Em
+KH
+KH
+Hg
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(90,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+cq
+cq
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+FK
+yd
+KH
+mV
+ju
+sF
+KH
+KH
+uL
+ju
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+eI
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(91,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+yd
+yd
+oY
+Gy
+yd
+sF
+sF
+KH
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(92,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+TB
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+yd
+yd
+MM
+Cd
+yd
+sF
+sF
+Em
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+NY
+HN
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(93,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+yd
+NH
+Ft
+KH
+rS
+sF
+Em
+Em
+Em
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+NY
+gC
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(94,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+ju
+KH
+vT
+kj
+pX
+sF
+Em
+Em
+KH
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(95,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+ue
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+yd
+YN
+Jr
+OJ
+sF
+sF
+Em
+Em
+KH
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+NY
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(96,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+sF
+sF
+Xx
+wp
+Od
+sF
+sF
+Em
+KH
+KH
+KH
+yd
+Em
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+jy
+fC
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(97,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+Em
+sF
+sF
+sF
+sF
+aj
+sF
+sF
+Hx
+mA
+up
+yd
+yd
+yd
+qQ
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+kJ
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(98,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+Em
+Em
+sF
+sF
+sF
+Em
+sF
+sF
+sF
+Em
+YD
+ah
+yd
+aj
+yd
+yd
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+jk
+oS
+oS
+dZ
+fC
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(99,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+sF
+Em
+Em
+sF
+hC
+sF
+Em
+sF
+hC
+sF
+Em
+KH
+yd
+yd
+yw
+sk
+yd
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+wY
+jk
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(100,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+Em
+Em
+Em
+sF
+sF
+sF
+Em
+sF
+sF
+Em
+Em
+KH
+PI
+eQ
+KH
+Uk
+ju
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+NY
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+Wb
+vy
+HN
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(101,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+ET
+yd
+KH
+Em
+Em
+sF
+KH
+Em
+Em
+sF
+Em
+KH
+Gv
+OR
+yd
+Uk
+jH
+ju
+Em
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+eI
+Sp
+kJ
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(102,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+yd
+KH
+uL
+yd
+sF
+sF
+Em
+yd
+KH
+Em
+KH
+GX
+Sk
+yd
+KH
+aj
+yd
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+QZ
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+AI
+Sp
+jy
+Qo
+fC
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(103,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+yd
+xe
+Uk
+nL
+sF
+KH
+Em
+yd
+sF
+Em
+KH
+ah
+Uu
+yd
+Uk
+jH
+yd
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+wY
+cq
+jk
+oS
+oS
+dZ
+Qo
+fC
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(104,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+sF
+yd
+aj
+Uk
+yd
+sF
+Em
+Em
+yd
+sF
+KH
+KH
+Km
+Xo
+yd
+Cx
+DJ
+Hg
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+fO
+UB
+Sp
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(105,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+sF
+yd
+KH
+Uk
+yd
+sF
+Em
+ju
+yd
+sF
+KH
+KH
+ey
+tG
+yd
+oB
+MI
+yd
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+NY
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(106,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+sF
+yd
+jH
+Uk
+yd
+sF
+Em
+Em
+Em
+sF
+KH
+KH
+yn
+Ve
+yd
+kQ
+yd
+yd
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(107,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+ET
+ET
+ET
+ET
+sF
+yd
+Em
+KH
+Em
+FP
+sF
+Em
+Em
+sF
+sF
+KH
+tO
+tO
+rN
+AE
+mt
+Af
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+wY
+jk
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(108,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+Em
+Em
+Em
+sF
+sF
+sF
+Em
+ju
+sF
+sF
+sF
+tO
+rd
+rN
+Yj
+Yj
+Xf
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+fO
+UB
+UB
+ue
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(109,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+Em
+sF
+sF
+yd
+sF
+Em
+sF
+yd
+sF
+sF
+SC
+yd
+yd
+yd
+yd
+yd
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+QZ
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(110,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+yd
+XJ
+sF
+sF
+yd
+Em
+sF
+Ht
+yd
+Qx
+MO
+yd
+gu
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+fO
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(111,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+yd
+yd
+sF
+Em
+KH
+sF
+Em
+sF
+sF
+QK
+WJ
+ks
+nV
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+ue
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(112,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+ET
+sF
+sF
+sF
+Em
+sF
+Em
+Em
+sF
+Em
+KH
+KH
+bE
+yd
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(113,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+fO
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+hC
+sF
+Em
+Em
+Em
+Em
+Em
+Em
+Em
+KH
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+gD
+UB
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(114,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+sF
+sF
+Em
+Em
+bR
+Em
+Em
+Em
+Em
+sF
+sF
+sF
+sF
+xM
+sF
+sF
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(115,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+Em
+Em
+KH
+KH
+xf
+yd
+KH
+Em
+sF
+TR
+RJ
+RJ
+Vs
+sF
+sF
+sF
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(116,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+ET
+KH
+Uy
+HY
+pB
+DW
+Mm
+WJ
+KH
+sF
+sF
+sF
+sF
+mp
+sF
+sF
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(117,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+gD
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+yd
+Ss
+Cw
+yd
+tO
+bh
+yd
+Cw
+sF
+sF
+sF
+sF
+sF
+XA
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+jy
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(118,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+QZ
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+yd
+yd
+yd
+yd
+xU
+oe
+yd
+yd
+ET
+ET
+ET
+ET
+ET
+XA
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(119,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+ET
+yd
+TW
+hj
+qf
+wo
+yd
+ET
+ET
+ET
+ET
+ET
+im
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(120,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+ET
+ET
+en
+jJ
+kk
+KH
+xS
+cA
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(121,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+AI
+Sp
+Sp
+Sp
+UB
+UB
+fO
+QZ
+UB
+UB
+UB
+UB
+UB
+en
+TQ
+FX
+cK
+jX
+cA
+ET
+ET
+ET
+ET
+UB
+UB
+ET
+ET
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+kJ
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(122,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+dZ
+cR
+eI
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Wm
+Pd
+pJ
+pJ
+Pd
+gV
+ET
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(123,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+gC
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Wm
+HH
+HH
+gV
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(124,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+dZ
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(125,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+UB
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(126,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+Qo
+Qo
+Qo
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+Qo
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(127,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+Qo
+cR
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+Sp
+jy
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(128,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+dZ
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+Qo
+fC
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(129,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(130,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(131,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(132,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(133,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+oS
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(134,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(135,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(136,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(137,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(138,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(139,1,1) = {"
+XT
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+fH
+XT
+"}
+(140,1,1) = {"
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
+XT
"}
diff --git a/maps/gateway_vr/snowfield.dmm b/maps/gateway_vr/snowfield.dmm
index 1912a56992..f99eb69984 100644
--- a/maps/gateway_vr/snowfield.dmm
+++ b/maps/gateway_vr/snowfield.dmm
@@ -1642,14 +1642,6 @@
temperature = 243.15
},
/area/awaymission/snowfield/restricted)
-"Bw" = (
-/obj/effect/overmap/visitable/sector/common_gateway/snowfield,
-/turf/simulated/floor/outdoors/snow{
- nitrogen = 93.7835;
- oxygen = 20.7263;
- temperature = 243.15
- },
-/area/awaymission/snowfield/restricted)
(1,1,1) = {"
aa
@@ -1932,7 +1924,7 @@ ab
ab
ab
ab
-Bw
+ab
aa
"}
(3,1,1) = {"
diff --git a/maps/gateway_vr/variable/arynthilake_a.dmm b/maps/gateway_vr/variable/arynthilake_a.dmm
index 8f08ec212b..f86e2d484b 100644
--- a/maps/gateway_vr/variable/arynthilake_a.dmm
+++ b/maps/gateway_vr/variable/arynthilake_a.dmm
@@ -1174,10 +1174,6 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
-"sl" = (
-/obj/effect/overmap/visitable/sector/common_gateway/arynthilake,
-/turf/simulated/mineral/ignore_cavegen/cave,
-/area/gateway/arynthilake/caves)
"sA" = (
/obj/structure/table/rack/steel,
/obj/item/clothing/shoes/flats/blue,
@@ -1343,9 +1339,11 @@
/turf/simulated/floor/tiled/eris/techmaint_cargo,
/area/gateway/arynthilake/dome)
"wm" = (
-/obj/random/mob/semirandom_mob_spawner/monster,
-/turf/simulated/floor/tiled/eris/dark/brown_platform,
-/area/gateway/arynthilake/dome)
+/obj/random/mob/semirandom_mob_spawner/monster/c,
+/turf/simulated/floor/outdoors/newdirt{
+ outdoors = 0
+ },
+/area/gateway/arynthilake/caves)
"wq" = (
/obj/random/mob/semirandom_mob_spawner/animal/c,
/turf/simulated/floor/outdoors/grass,
@@ -2050,8 +2048,8 @@
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
"NK" = (
-/obj/random/mob/semirandom_mob_spawner/monster/e,
-/turf/simulated/floor/beach/sand/desert,
+/obj/random/mob/semirandom_mob_spawner/monster/d,
+/turf/simulated/mineral/floor/ignore_cavegen/cave,
/area/gateway/arynthilake/caves)
"Oc" = (
/obj/structure/table/marble,
@@ -2945,7 +2943,7 @@ Qr
Qr
Qr
Qr
-sl
+Qr
aa
"}
(4,1,1) = {"
@@ -3322,7 +3320,7 @@ jI
jI
jI
jI
-We
+jI
jI
jI
jI
@@ -5056,7 +5054,7 @@ aG
ap
aI
ap
-NK
+aG
aG
Qr
Qr
@@ -5193,7 +5191,7 @@ jI
jI
jI
Qr
-We
+jI
aG
ap
ap
@@ -5799,7 +5797,7 @@ an
an
aZ
bc
-wm
+bc
bc
tS
yY
@@ -15471,7 +15469,7 @@ Qr
jI
jI
gu
-gu
+wm
gu
gu
jI
@@ -17480,7 +17478,7 @@ Qr
Qr
jI
jI
-jI
+NK
jI
jI
jI
@@ -19476,7 +19474,7 @@ jI
au
jI
jI
-jI
+NK
Qr
Qr
Qr
@@ -20291,7 +20289,7 @@ QI
yb
nx
FW
-FW
+ek
jz
ag
al
@@ -20427,7 +20425,7 @@ se
jK
ag
FW
-ek
+FW
WV
FW
FW
diff --git a/maps/gateway_vr/variable/arynthilake_b.dmm b/maps/gateway_vr/variable/arynthilake_b.dmm
index 5538a63096..ebc411fec0 100644
--- a/maps/gateway_vr/variable/arynthilake_b.dmm
+++ b/maps/gateway_vr/variable/arynthilake_b.dmm
@@ -131,6 +131,7 @@
/obj/structure/bed/chair/comfy/brown{
dir = 8
},
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/tiled/eris/white/brown_platform{
outdoors = 1
},
@@ -207,9 +208,9 @@
},
/area/gateway/arynthilake/dome)
"dC" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/tiled/eris/white/techfloor,
-/area/gateway/arynthilake/dome)
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/outdoors/grass,
+/area/gateway/arynthilake)
"dR" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/reagent_containers/food/condiment/enzyme{
@@ -314,10 +315,6 @@
outdoors = 1
},
/area/gateway/arynthilake/dome)
-"fC" = (
-/obj/effect/overmap/visitable/sector/common_gateway/arynthilake,
-/turf/simulated/mineral/ignore_cavegen/cave,
-/area/gateway/arynthilake/caves)
"fX" = (
/obj/structure/table/standard{
color = "#b8e4ff"
@@ -413,7 +410,7 @@
/turf/simulated/floor/outdoors/grass,
/area/gateway/arynthilake/engine)
"hP" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/tiled/eris/techmaint_cargo,
/area/gateway/arynthilake/dome)
"hR" = (
@@ -557,6 +554,7 @@
/obj/structure/bed/chair/comfy/brown{
dir = 4
},
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/tiled/eris/white/brown_platform,
/area/gateway/arynthilake/dome)
"ku" = (
@@ -589,9 +587,9 @@
/turf/simulated/floor/tiled/eris/steel/gray_platform,
/area/gateway/arynthilake/dome)
"lk" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/tiled/eris/white/brown_platform,
-/area/gateway/arynthilake/dome)
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/gateway/arynthilake)
"ll" = (
/turf/simulated/floor/wood/sif,
/area/gateway/arynthilake/oldcabin)
@@ -673,9 +671,9 @@
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/gateway/arynthilake/dome)
"mv" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/tiled/eris,
-/area/gateway/arynthilake/engine)
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/outdoors/grass/forest,
+/area/gateway/arynthilake/dome)
"mx" = (
/obj/machinery/light,
/turf/simulated/floor/carpet,
@@ -718,6 +716,7 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
"nB" = (
@@ -810,7 +809,6 @@
/obj/machinery/light{
dir = 1
},
-/obj/random/mob/semirandom_mob_spawner/monster,
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
"pa" = (
@@ -1005,8 +1003,8 @@
},
/area/gateway/arynthilake/dome)
"uj" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/carpet/sblucarpet,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/carpet,
/area/gateway/arynthilake/dome)
"um" = (
/obj/machinery/light{
@@ -1119,11 +1117,9 @@
/turf/simulated/floor/wood,
/area/gateway/arynthilake/dome)
"xj" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/tiled/eris{
- outdoors = 1
- },
-/area/gateway/arynthilake/engine)
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/outdoors/newdirt,
+/area/gateway/arynthilake)
"xk" = (
/obj/machinery/light/small{
dir = 1
@@ -1140,8 +1136,8 @@
/turf/simulated/floor/tiled/eris/white/brown_platform,
/area/gateway/arynthilake/dome)
"xr" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/carpet,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/outdoors/sidewalk/side,
/area/gateway/arynthilake/dome)
"xz" = (
/obj/machinery/seed_extractor,
@@ -1202,9 +1198,10 @@
},
/area/gateway/arynthilake)
"zk" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/outdoors/grass/forest,
-/area/gateway/arynthilake)
+/obj/structure/table/bench/marble,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/tiled/eris/white/techfloor,
+/area/gateway/arynthilake/dome)
"zo" = (
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/gateway/arynthilake/dome)
@@ -1256,6 +1253,7 @@
dir = 1
},
/obj/structure/bed/chair/sofa/brown,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/carpet,
/area/gateway/arynthilake/dome)
"AI" = (
@@ -1375,8 +1373,8 @@
},
/area/gateway/arynthilake/dome)
"EG" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/outdoors/grass/forest,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/tiled/eris/cafe,
/area/gateway/arynthilake/dome)
"EP" = (
/obj/machinery/door/airlock/sandstone{
@@ -2082,6 +2080,7 @@
/area/gateway/arynthilake/dome)
"Sc" = (
/obj/structure/bed/chair/office/light,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/tiled/eris/steel/gray_platform,
/area/gateway/arynthilake/dome)
"Si" = (
@@ -2097,7 +2096,6 @@
req_access = list();
start_charge = 0
},
-/obj/random/mob/semirandom_mob_spawner/monster,
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/underground/maintenance)
"Sq" = (
@@ -2107,8 +2105,9 @@
/turf/simulated/floor/wood,
/area/gateway/arynthilake/dome)
"Sr" = (
-/obj/random/mob/semirandom_mob_spawner/humanoid,
-/turf/simulated/floor/outdoors/grass,
+/obj/item/weapon/stool/padded,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
+/turf/simulated/floor/carpet/purcarpet,
/area/gateway/arynthilake/dome)
"St" = (
/obj/structure/table/rack,
@@ -2267,7 +2266,7 @@
/obj/structure/bed/chair/office/dark{
dir = 8
},
-/obj/random/mob/semirandom_mob_spawner/humanoid,
+/obj/random/mob/semirandom_mob_spawner/humanoid/retaliate,
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
"Vm" = (
@@ -2441,7 +2440,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/gateway/arynthilake/gateway)
"Zg" = (
-/obj/random/mob/semirandom_mob_spawner/robot,
+/obj/random/mob/semirandom_mob_spawner/robot/retaliate,
/turf/simulated/floor/tiled/eris,
/area/gateway/arynthilake/engine)
"Zn" = (
@@ -2919,7 +2918,7 @@ ek
ek
ek
ek
-fC
+ek
nF
"}
(4,1,1) = {"
@@ -4493,7 +4492,7 @@ ek
ek
fs
St
-mv
+nk
nk
mX
Ui
@@ -4503,7 +4502,7 @@ nB
ZE
mX
nk
-mv
+ZY
SP
fs
sP
@@ -5770,7 +5769,7 @@ Vo
Vo
Vo
fs
-xj
+uI
nk
nk
nk
@@ -5922,7 +5921,7 @@ Zg
nk
nk
rj
-xj
+uI
fs
nd
fs
@@ -6805,7 +6804,7 @@ ek
ek
Hw
Hw
-Uq
+Hw
ek
ek
ek
@@ -6911,7 +6910,7 @@ Oo
sP
sP
sP
-sP
+dC
Vo
CD
Vo
@@ -7376,7 +7375,7 @@ Hw
Hw
Hw
Hw
-Uq
+Hw
Hw
ek
ek
@@ -9055,7 +9054,7 @@ ek
ek
ek
pS
-LR
+Hw
Hw
Hw
Hw
@@ -10044,7 +10043,7 @@ ek
ek
Hw
Hw
-LR
+Hw
Hw
ek
ek
@@ -13509,7 +13508,7 @@ CD
CD
CD
Vo
-Oo
+Vo
CD
Vo
CD
@@ -14307,7 +14306,7 @@ xW
yv
hl
CD
-CD
+xj
Vo
Vo
Vo
@@ -14472,7 +14471,7 @@ Vo
Vo
Vo
Vo
-CD
+xj
CD
Vo
Vo
@@ -15574,7 +15573,7 @@ Vo
Vo
Vo
Vo
-zk
+Vo
Vo
Vo
Vo
@@ -15858,7 +15857,7 @@ Vo
Vo
Vo
Vo
-Vo
+lk
Vo
Vo
sP
@@ -15890,7 +15889,7 @@ Vo
Vo
Vo
Vo
-Vo
+lk
Vo
Vo
Vo
@@ -16296,7 +16295,7 @@ lQ
lQ
lQ
lQ
-EG
+lQ
lQ
nC
iG
@@ -16602,7 +16601,7 @@ Ia
sP
sP
Vo
-zk
+Vo
Vo
Vo
Vo
@@ -16731,7 +16730,7 @@ lQ
hH
Dy
vv
-xr
+vv
vv
Ty
Ia
@@ -17155,7 +17154,7 @@ zo
nC
nC
nC
-Sr
+nC
nC
iG
ng
@@ -18002,7 +18001,7 @@ lQ
lQ
lQ
nC
-iG
+xr
zo
iG
Ky
@@ -18011,7 +18010,7 @@ cu
cu
zU
BH
-BH
+EG
nT
BH
Dk
@@ -18417,7 +18416,7 @@ tC
Ia
lQ
lQ
-lQ
+mv
lQ
hH
Ft
@@ -18572,7 +18571,7 @@ lQ
nC
iG
zo
-iG
+xr
nC
nC
hH
@@ -18590,7 +18589,7 @@ lF
PF
bw
MJ
-PF
+Sr
eT
hH
nC
@@ -19501,7 +19500,7 @@ ek
ek
ek
Hw
-Ta
+rz
rz
rz
Hw
@@ -19656,7 +19655,7 @@ ek
rz
rz
rz
-Ta
+rz
ek
ek
ek
@@ -19844,7 +19843,7 @@ NI
NI
NI
NI
-lk
+NI
Kw
Ia
lQ
@@ -20221,7 +20220,7 @@ Hw
ek
ek
rz
-Ta
+rz
rz
rz
ek
@@ -20274,7 +20273,7 @@ nC
nC
nC
nC
-Sr
+nC
iG
nC
nC
@@ -20835,9 +20834,9 @@ nC
hH
nH
vv
+uj
vv
vv
-xr
mx
hH
hH
@@ -20850,7 +20849,7 @@ hH
AO
sA
sA
-uj
+sA
sA
sA
HK
@@ -21048,7 +21047,7 @@ rz
Hw
Hw
Hw
-NX
+Hw
Hw
Hw
Hw
@@ -21119,7 +21118,7 @@ Qm
Qm
vv
vS
-xr
+vv
vv
vv
vv
@@ -21176,7 +21175,7 @@ zI
zI
zI
zI
-gB
+zI
zI
Jn
zI
@@ -21269,7 +21268,7 @@ Dk
TY
TY
TY
-dC
+TY
TY
TY
Dk
@@ -21327,7 +21326,7 @@ Hw
rz
rz
rz
-Ta
+rz
rz
rz
rz
@@ -21467,7 +21466,7 @@ mc
Hw
Hw
Hw
-NX
+Hw
rz
rz
rz
@@ -21552,7 +21551,7 @@ cL
hH
Py
CY
-Pn
+zk
Pn
gT
Yh
@@ -21763,7 +21762,7 @@ ek
Hw
Hw
Hw
-NX
+Hw
Hw
Hw
Hw
diff --git a/maps/gateway_vr/variable/arynthilakeunderground_a.dmm b/maps/gateway_vr/variable/arynthilakeunderground_a.dmm
index 9c1e9f7982..5fbf117bbd 100644
--- a/maps/gateway_vr/variable/arynthilakeunderground_a.dmm
+++ b/maps/gateway_vr/variable/arynthilakeunderground_a.dmm
@@ -112,7 +112,7 @@
/turf/simulated/floor/tiled/eris/steel/techfloor,
/area/gateway/arynthilake/engine)
"mj" = (
-/obj/random/mob/semirandom_mob_spawner/monster,
+/obj/random/mob/semirandom_mob_spawner/monster/d,
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"mV" = (
@@ -129,6 +129,7 @@
/turf/simulated/mineral/floor/ignore_cavegen/cave,
/area/gateway/arynthilake/underground)
"oM" = (
+/obj/random/mob/semirandom_mob_spawner/monster,
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"pT" = (
@@ -136,9 +137,9 @@
/turf/simulated/floor/tiled/eris/steel/monofloor,
/area/gateway/arynthilake/engine)
"qe" = (
-/obj/random/mob/semirandom_mob_spawner/monster/b,
-/turf/simulated/floor/tiled/eris/techmaint,
-/area/gateway/arynthilake/engine)
+/obj/random/mob/semirandom_mob_spawner/monster/c,
+/turf/simulated/floor/plating/eris/under,
+/area/gateway/arynthilake/underground/maintenance)
"qp" = (
/obj/structure/table/rack/shelf/steel,
/obj/random/tool,
@@ -238,10 +239,6 @@
"BN" = (
/turf/simulated/floor/tiled/eris/steel/techfloor,
/area/gateway/arynthilake/engine)
-"Cj" = (
-/obj/random/mob/semirandom_mob_spawner/robot/retaliate,
-/turf/simulated/floor/tiled/eris/steel/orangecorner,
-/area/gateway/arynthilake/engine)
"CE" = (
/obj/machinery/light/small{
dir = 1
@@ -335,10 +332,6 @@
},
/turf/simulated/floor/tiled/eris/steel/orangecorner,
/area/gateway/arynthilake/engine)
-"Rh" = (
-/obj/random/mob/semirandom_mob_spawner/monster/c,
-/turf/simulated/floor/plating/eris/under,
-/area/gateway/arynthilake/underground/maintenance)
"Sg" = (
/turf/simulated/floor/tiled/eris/techmaint,
/area/gateway/arynthilake/engine)
@@ -377,10 +370,6 @@
/obj/random/mob/semirandom_mob_spawner/monster/b,
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
-"YC" = (
-/obj/random/mob/semirandom_mob_spawner/monster/d,
-/turf/simulated/mineral/floor/ignore_cavegen/cave,
-/area/gateway/arynthilake/underground)
"ZY" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/weapon/cell/void,
@@ -891,9 +880,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -1033,9 +1022,9 @@ Vm
Vm
Vm
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -1110,18 +1099,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -1130,54 +1119,54 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-mj
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -1196,7 +1185,7 @@ gh
gh
nO
nO
-YC
+nO
nO
nO
nO
@@ -1222,7 +1211,7 @@ gh
gh
gh
gh
-Bj
+nO
nO
nO
nO
@@ -1252,18 +1241,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -1272,54 +1261,54 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-mj
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
Vm
gh
gh
@@ -1376,7 +1365,7 @@ gh
gh
nO
nO
-Bj
+nO
nO
nO
nO
@@ -1394,18 +1383,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -1414,54 +1403,54 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-mj
+LF
Vm
gh
gh
@@ -1519,7 +1508,7 @@ nO
nO
nO
nO
-nO
+Bj
nO
nO
nO
@@ -1536,44 +1525,44 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -1583,18 +1572,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -1663,7 +1652,7 @@ nO
nO
nO
nO
-Bj
+nO
nO
gh
gh
@@ -1678,65 +1667,65 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -1820,65 +1809,65 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
BJ
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -1962,26 +1951,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-mj
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -1989,47 +1978,47 @@ Vm
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -2054,7 +2043,7 @@ nO
nO
nO
nO
-YC
+nO
nO
gh
gh
@@ -2104,26 +2093,26 @@ gh
gh
gh
Vm
+LF
+LF
+LF
+LF
+LF
+LF
oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -2131,47 +2120,47 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
+LF
BJ
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
nO
nO
gh
@@ -2226,7 +2215,7 @@ nO
gh
gh
nO
-Bj
+nO
nO
nO
nO
@@ -2246,26 +2235,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -2281,39 +2270,39 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
nO
nO
nO
@@ -2388,26 +2377,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
ly
-oM
-oM
+LF
+LF
Vm
gh
gh
@@ -2423,39 +2412,39 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
BJ
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
nO
nO
nO
@@ -2530,26 +2519,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
nO
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -2565,39 +2554,39 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
nO
nO
nO
@@ -2672,26 +2661,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
nO
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -2707,9 +2696,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -2719,28 +2708,28 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-nO
+LF
+LF
+LF
+Bj
nO
nO
nO
@@ -2814,74 +2803,74 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
+LF
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
nO
gh
nO
@@ -2909,7 +2898,7 @@ gh
gh
gh
gh
-Bj
+nO
nO
gh
gh
@@ -2957,73 +2946,73 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
qX
-oM
+LF
MV
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-mj
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-mj
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
nO
gh
gh
@@ -3062,7 +3051,7 @@ nO
nO
nO
nO
-nO
+Bj
nO
nO
LY
@@ -3098,65 +3087,65 @@ gh
gh
gh
Vm
-oM
-mj
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
lz
Vm
nO
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -3164,8 +3153,8 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
nO
gh
gh
@@ -3240,33 +3229,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -3275,15 +3264,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
@@ -3305,9 +3294,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -3382,9 +3371,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -3392,23 +3381,23 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -3417,15 +3406,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-mj
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -3447,9 +3436,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -3524,33 +3513,33 @@ gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
nO
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
Vm
Vm
@@ -3559,15 +3548,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
Vm
@@ -3589,9 +3578,9 @@ Vm
Vm
Vm
Vm
-oM
-mj
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -3675,9 +3664,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -3695,15 +3684,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -3713,27 +3702,27 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -3765,7 +3754,7 @@ gh
gh
gh
nO
-Bj
+nO
gh
gh
gh
@@ -3817,9 +3806,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -3837,15 +3826,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -3855,27 +3844,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -3929,7 +3918,7 @@ gh
gh
gh
nO
-Bj
+nO
nO
nO
nO
@@ -3959,9 +3948,9 @@ Vm
Vm
Vm
Vm
-mj
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -3979,15 +3968,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -3997,27 +3986,27 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4088,42 +4077,42 @@ Ft
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4133,15 +4122,15 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4157,18 +4146,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
-YC
+nO
nO
nO
nO
@@ -4230,42 +4219,42 @@ Ft
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
+LF
MV
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4275,15 +4264,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-mj
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -4299,15 +4288,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -4372,42 +4361,42 @@ Ft
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-mj
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4417,15 +4406,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -4441,15 +4430,15 @@ gh
gh
gh
Vm
-oM
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4514,9 +4503,9 @@ Ft
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4547,21 +4536,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4574,9 +4563,9 @@ gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -4589,12 +4578,12 @@ Vm
Vm
Vm
Vm
-oM
-mj
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
nO
nO
@@ -4633,7 +4622,7 @@ xh
nO
nO
nO
-Bj
+nO
nO
gh
gh
@@ -4658,7 +4647,7 @@ gh
Vm
ly
zh
-oM
+LF
Vm
gh
gh
@@ -4671,9 +4660,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4691,19 +4680,19 @@ gh
Vm
ly
oM
-oM
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -4716,9 +4705,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4731,12 +4720,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
nO
@@ -4798,9 +4787,9 @@ Ft
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4813,9 +4802,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4831,21 +4820,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -4858,9 +4847,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -4873,12 +4862,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -4888,7 +4877,7 @@ nO
nO
nO
nO
-YC
+nO
nO
nO
nO
@@ -4955,9 +4944,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+mj
+LF
Vm
gh
gh
@@ -4973,18 +4962,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -4992,17 +4981,17 @@ Vm
gh
Vm
lz
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-mj
-oM
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5018,9 +5007,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -5097,9 +5086,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -5115,18 +5104,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5134,15 +5123,15 @@ gh
gh
Vm
MV
-oM
+LF
qX
-oM
-mj
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
oM
WN
Vm
@@ -5160,9 +5149,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -5196,7 +5185,7 @@ nO
nO
nO
nO
-Bj
+nO
nO
nO
nO
@@ -5239,9 +5228,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -5257,18 +5246,18 @@ gh
gh
gh
Vm
-oM
-mj
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5276,17 +5265,17 @@ gh
gh
Vm
lz
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -5302,9 +5291,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -5378,15 +5367,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-YB
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5399,15 +5388,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -5426,30 +5415,30 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5520,15 +5509,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5541,15 +5530,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5568,18 +5557,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5587,11 +5576,11 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5621,7 +5610,7 @@ nO
nO
nO
nO
-nO
+Bj
nO
nO
nO
@@ -5662,15 +5651,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -5683,15 +5672,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -5710,30 +5699,30 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5801,21 +5790,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5831,39 +5820,39 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -5873,9 +5862,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -5906,7 +5895,7 @@ xh
nO
nO
nO
-Bj
+nO
nO
nO
nO
@@ -5943,21 +5932,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -5973,39 +5962,39 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -6015,9 +6004,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -6042,7 +6031,7 @@ nO
nO
nO
nO
-Bj
+nO
nO
nO
nO
@@ -6060,7 +6049,7 @@ nO
nO
nO
nO
-Bj
+nO
nO
nO
nO
@@ -6085,21 +6074,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -6115,51 +6104,51 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
+LF
+LF
+LF
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+Vm
+LF
oM
-oM
-oM
-Vm
-Vm
-Vm
-Vm
-Vm
-Vm
-Vm
-Vm
-Vm
-oM
-oM
-oM
+LF
Vm
Vm
Vm
@@ -6227,9 +6216,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -6239,78 +6228,78 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
+LF
Ek
-oM
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-mj
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -6326,7 +6315,7 @@ gh
gh
nO
nO
-nO
+Bj
nO
nO
nO
@@ -6369,9 +6358,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -6381,84 +6370,84 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+mj
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
BJ
-oM
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
nO
-YC
+nO
nO
nO
nO
@@ -6511,9 +6500,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -6523,78 +6512,78 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -6647,15 +6636,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -6668,15 +6657,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -6689,27 +6678,27 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -6725,18 +6714,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -6789,15 +6778,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -6810,15 +6799,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -6831,27 +6820,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
BJ
-oM
-oM
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -6867,18 +6856,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -6931,15 +6920,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -6952,15 +6941,15 @@ gh
gh
gh
Vm
-oM
-oM
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -6973,27 +6962,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7009,18 +6998,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -7054,7 +7043,7 @@ gh
gh
gh
nO
-Bj
+nO
nO
nO
gh
@@ -7073,9 +7062,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7100,12 +7089,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7115,27 +7104,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -7148,12 +7137,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7161,8 +7150,8 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
gh
gh
@@ -7215,18 +7204,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7242,12 +7231,12 @@ gh
gh
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7257,27 +7246,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
BJ
-oM
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -7290,21 +7279,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -7357,18 +7346,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
BJ
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7384,12 +7373,12 @@ Vm
Vm
Vm
Vm
-oM
+LF
zL
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7399,27 +7388,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7432,21 +7421,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7499,84 +7488,84 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7586,12 +7575,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7641,71 +7630,71 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
+LF
+LF
BJ
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
nO
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
Vm
gh
Vm
ly
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
qX
Vm
gh
@@ -7713,12 +7702,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7728,12 +7717,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -7742,7 +7731,7 @@ gh
gh
gh
nO
-Eb
+nO
nO
gh
gh
@@ -7754,7 +7743,7 @@ nO
nO
nO
nO
-Bj
+nO
nO
nO
nO
@@ -7783,84 +7772,84 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
nO
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-mj
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
zL
-oM
+LF
Vm
gh
gh
@@ -7870,12 +7859,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7907,7 +7896,7 @@ gh
gh
gh
gh
-nO
+Bj
nO
gh
gh
@@ -7925,31 +7914,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
BJ
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -7958,12 +7947,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -7973,9 +7962,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -7985,21 +7974,21 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8015,17 +8004,17 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
nO
-nO
+Eb
nO
gh
gh
@@ -8067,31 +8056,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -8100,12 +8089,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8115,9 +8104,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8127,21 +8116,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8157,12 +8146,12 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8209,9 +8198,9 @@ gh
gh
gh
Vm
-YB
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8222,18 +8211,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -8242,12 +8231,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8257,9 +8246,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8278,33 +8267,33 @@ gh
gh
gh
Vm
-oM
-mj
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8351,31 +8340,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -8387,21 +8376,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8420,9 +8409,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8432,21 +8421,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8493,31 +8482,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -8529,21 +8518,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8562,9 +8551,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8574,21 +8563,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
BJ
-oM
-oM
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8635,31 +8624,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -8671,21 +8660,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8704,9 +8693,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8716,27 +8705,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
nO
-Eb
+nO
nO
nO
nO
@@ -8777,9 +8766,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8787,9 +8776,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -8799,9 +8788,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -8816,27 +8805,27 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8846,9 +8835,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8858,21 +8847,21 @@ gh
gh
gh
Vm
-oM
+LF
BJ
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8919,9 +8908,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8929,9 +8918,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -8941,9 +8930,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -8958,27 +8947,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -8988,9 +8977,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -9000,21 +8989,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9061,9 +9050,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -9071,21 +9060,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9100,26 +9089,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-mj
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
WN
Vm
gh
@@ -9142,21 +9131,21 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
BJ
-oM
-oM
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -9203,9 +9192,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9214,37 +9203,37 @@ Vm
Vm
Vm
ly
-oM
-oM
+LF
+LF
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -9260,45 +9249,45 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9325,7 +9314,7 @@ gh
gh
gh
nO
-Bj
+nO
nO
gh
gh
@@ -9345,48 +9334,48 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -9402,45 +9391,45 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9488,47 +9477,47 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9550,21 +9539,21 @@ sq
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9577,12 +9566,12 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9629,26 +9618,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-YB
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+mj
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
+LF
Vm
Vm
Vm
@@ -9660,41 +9649,41 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9704,12 +9693,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9719,9 +9708,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9777,9 +9766,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -9803,40 +9792,40 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+mj
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
nO
nO
@@ -9846,12 +9835,12 @@ nO
nO
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9861,9 +9850,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -9944,41 +9933,41 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -9988,12 +9977,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10004,8 +9993,8 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
Vm
Vm
@@ -10061,9 +10050,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -10086,9 +10075,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10133,33 +10122,33 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
nO
nO
gh
@@ -10200,37 +10189,37 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -10254,9 +10243,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -10275,32 +10264,32 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
nO
nO
nO
@@ -10342,37 +10331,37 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+YB
+LF
qX
Vm
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -10396,9 +10385,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -10417,33 +10406,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
nO
nO
nO
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
nO
nO
nO
@@ -10484,37 +10473,37 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -10532,15 +10521,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+YB
+LF
Vm
gh
gh
@@ -10562,21 +10551,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
nO
@@ -10626,9 +10615,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10636,27 +10625,27 @@ Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -10674,24 +10663,24 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
+LF
Ek
-oM
+LF
Vm
Vm
Vm
@@ -10704,21 +10693,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -10769,8 +10758,8 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
gh
gh
@@ -10778,27 +10767,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -10816,29 +10805,29 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
@@ -10846,21 +10835,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10883,7 +10872,7 @@ gh
gh
nO
nO
-Eb
+nO
nO
gh
gh
@@ -10910,9 +10899,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10920,24 +10909,24 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10952,15 +10941,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -10971,16 +10960,16 @@ Vm
gh
Vm
qX
-oM
-oM
-oM
-YB
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+qe
+LF
+LF
+LF
+LF
qX
-oM
+LF
MV
Vm
gh
@@ -10991,21 +10980,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11014,7 +11003,7 @@ nO
nO
nO
nO
-Eb
+nO
nO
gh
gh
@@ -11052,34 +11041,34 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
nO
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11094,14 +11083,14 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
WN
Vm
gh
@@ -11112,17 +11101,17 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
@@ -11133,21 +11122,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11157,7 +11146,7 @@ nO
nO
gh
nO
-nO
+Eb
gh
gh
gh
@@ -11194,34 +11183,34 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
nO
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11236,15 +11225,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11257,9 +11246,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -11275,21 +11264,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11336,34 +11325,34 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
nO
nO
gh
Vm
-oM
-YB
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11375,18 +11364,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11399,9 +11388,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11420,18 +11409,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11488,9 +11477,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11498,14 +11487,14 @@ nO
nO
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11517,18 +11506,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -11541,9 +11530,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11562,18 +11551,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11630,24 +11619,24 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11659,24 +11648,24 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -11684,17 +11673,17 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -11704,18 +11693,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11772,8 +11761,8 @@ Vm
Vm
Vm
Vm
-oM
-oM
+LF
+LF
WN
Vm
gh
@@ -11781,9 +11770,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -11801,42 +11790,42 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11846,18 +11835,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11901,31 +11890,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11943,42 +11932,42 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -11988,18 +11977,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -12043,31 +12032,31 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
@@ -12085,9 +12074,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -12100,27 +12089,27 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12130,18 +12119,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -12185,51 +12174,51 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
BJ
Vm
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12242,27 +12231,27 @@ nO
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12275,15 +12264,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12327,9 +12316,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12340,38 +12329,38 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12384,27 +12373,27 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12418,14 +12407,14 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12470,8 +12459,8 @@ gh
gh
Vm
ly
-oM
-oM
+mj
+LF
Vm
gh
gh
@@ -12482,59 +12471,59 @@ gh
gh
gh
Vm
-oM
+LF
qX
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
BJ
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12544,9 +12533,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -12559,15 +12548,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -12594,7 +12583,7 @@ gh
gh
nO
nO
-Eb
+nO
nO
gh
gh
@@ -12611,9 +12600,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12624,35 +12613,35 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12662,21 +12651,21 @@ gh
gh
nO
Vm
-oM
-YB
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -12686,9 +12675,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -12701,9 +12690,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12736,7 +12725,7 @@ gh
gh
nO
nO
-nO
+Eb
nO
gh
gh
@@ -12753,48 +12742,48 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
nO
@@ -12804,21 +12793,21 @@ nO
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12828,9 +12817,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12843,9 +12832,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -12860,7 +12849,7 @@ gh
gh
gh
nO
-Eb
+nO
nO
xh
nO
@@ -12895,48 +12884,48 @@ gh
gh
gh
Vm
-YB
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
BJ
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
nO
@@ -12946,9 +12935,9 @@ nO
nO
nO
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -12958,36 +12947,36 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13005,7 +12994,7 @@ nO
nO
nO
nO
-Eb
+nO
nO
gh
nO
@@ -13037,48 +13026,48 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -13088,9 +13077,9 @@ nO
nO
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13100,36 +13089,36 @@ nO
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -13192,8 +13181,8 @@ Vm
Vm
Vm
Vm
-oM
-oM
+LF
+LF
WN
Vm
gh
@@ -13201,26 +13190,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13230,9 +13219,9 @@ nO
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13242,11 +13231,11 @@ nO
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
WN
Vm
nO
@@ -13254,24 +13243,24 @@ gh
gh
gh
Vm
-oM
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -13334,35 +13323,35 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
nO
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13372,9 +13361,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13387,9 +13376,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
nO
@@ -13411,15 +13400,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13476,35 +13465,35 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13515,8 +13504,8 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
gh
gh
@@ -13529,9 +13518,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
nO
@@ -13553,15 +13542,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+qe
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13603,33 +13592,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -13644,9 +13633,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13656,9 +13645,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13671,9 +13660,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -13695,15 +13684,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -13745,33 +13734,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
gh
@@ -13786,9 +13775,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13798,9 +13787,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13813,18 +13802,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13837,18 +13826,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -13887,33 +13876,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -13928,9 +13917,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13940,9 +13929,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -13955,18 +13944,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -13976,21 +13965,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14029,16 +14018,16 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14053,12 +14042,12 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14070,9 +14059,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14082,9 +14071,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14097,18 +14086,18 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14118,21 +14107,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
WN
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14171,16 +14160,16 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14195,12 +14184,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14212,9 +14201,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14224,33 +14213,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14260,21 +14249,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14313,16 +14302,16 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14337,12 +14326,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14354,57 +14343,57 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
nO
nO
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14414,9 +14403,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14455,16 +14444,16 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -14482,12 +14471,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14497,35 +14486,35 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
nO
@@ -14541,12 +14530,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14556,9 +14545,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14597,9 +14586,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -14624,12 +14613,12 @@ Vm
Vm
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14638,12 +14627,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14657,9 +14646,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14683,12 +14672,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14698,9 +14687,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14739,9 +14728,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -14760,18 +14749,18 @@ Vm
lz
MV
lz
-oM
-oM
-oM
+LF
+LF
+LF
Vm
nO
Vm
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14783,9 +14772,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14799,9 +14788,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14822,12 +14811,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -14840,9 +14829,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14881,9 +14870,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -14900,23 +14889,23 @@ gh
gh
Vm
qX
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14925,9 +14914,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14941,9 +14930,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -14964,12 +14953,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -14982,9 +14971,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15023,9 +15012,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15041,24 +15030,24 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15067,9 +15056,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15083,9 +15072,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15106,12 +15095,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15124,9 +15113,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15165,42 +15154,42 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15209,12 +15198,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15225,9 +15214,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15245,12 +15234,12 @@ nO
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15266,9 +15255,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15284,7 +15273,7 @@ gh
gh
gh
gh
-Eb
+nO
nO
nO
nO
@@ -15307,29 +15296,29 @@ gh
gh
gh
Vm
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
YB
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
+LF
+LF
WN
Vm
gh
@@ -15340,23 +15329,23 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-YB
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15367,9 +15356,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15387,12 +15376,12 @@ nO
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15408,9 +15397,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15449,30 +15438,30 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15482,23 +15471,23 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15509,9 +15498,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15529,12 +15518,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15550,9 +15539,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15598,9 +15587,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
LF
@@ -15612,9 +15601,9 @@ LF
LF
LF
LF
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15624,26 +15613,26 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15651,9 +15640,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15665,15 +15654,15 @@ nO
nO
nO
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15692,9 +15681,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15711,7 +15700,7 @@ gh
gh
nO
nO
-Eb
+nO
gh
gh
nO
@@ -15740,9 +15729,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
LF
@@ -15754,9 +15743,9 @@ LF
LF
LF
LF
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15766,9 +15755,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15780,12 +15769,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15793,9 +15782,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15807,15 +15796,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+qe
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15834,9 +15823,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15882,9 +15871,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
LF
@@ -15896,9 +15885,9 @@ LF
LF
LF
LF
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15908,9 +15897,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -15922,12 +15911,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -15936,8 +15925,8 @@ gh
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
Vm
Vm
@@ -15949,15 +15938,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -15970,15 +15959,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16024,9 +16013,9 @@ Uh
Uh
Uh
Uh
-oM
-oM
-oM
+LF
+LF
+LF
Uh
Uh
Uh
@@ -16038,21 +16027,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -16067,33 +16056,33 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -16112,15 +16101,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16135,7 +16124,7 @@ nO
nO
nO
nO
-nO
+Eb
nO
nO
nO
@@ -16166,9 +16155,9 @@ BN
BN
Xq
Uh
-oM
-oM
-oM
+LF
+LF
+LF
Uh
eD
BN
@@ -16180,21 +16169,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+YB
+LF
Vm
gh
Vm
@@ -16209,33 +16198,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16254,15 +16243,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16308,9 +16297,9 @@ EY
BN
Xq
Uh
-oM
-oM
-oM
+LF
+LF
+LF
Uh
ez
BN
@@ -16322,27 +16311,27 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -16351,33 +16340,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
sq
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16390,15 +16379,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -16447,7 +16436,7 @@ gh
Uh
hK
Js
-ra
+BN
mV
Uh
Hk
@@ -16476,15 +16465,15 @@ sq
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -16496,21 +16485,21 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -16532,15 +16521,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16612,21 +16601,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
ly
-oM
-oM
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -16638,21 +16627,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
YB
-oM
+LF
Vm
gh
gh
@@ -16674,15 +16663,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16754,21 +16743,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-YB
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -16780,21 +16769,21 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
+LF
+LF
Vm
gh
gh
@@ -16810,15 +16799,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-Rh
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -16877,7 +16866,7 @@ Uh
Uh
Uh
Gb
-Cj
+Gb
Gb
Uh
Uh
@@ -16896,24 +16885,24 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -16952,15 +16941,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17038,24 +17027,24 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
ly
-Rh
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17094,15 +17083,15 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
+LF
Vm
gh
gh
@@ -17122,7 +17111,7 @@ gh
gh
nO
nO
-Eb
+nO
nO
nO
gh
@@ -17156,7 +17145,7 @@ gh
gh
Uh
Ok
-qe
+Sg
Sg
bL
uZ
@@ -17166,7 +17155,7 @@ Gb
hB
Mj
Sg
-qe
+Sg
Mj
Uh
gh
@@ -17180,24 +17169,24 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -17233,12 +17222,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -17272,7 +17261,7 @@ gh
gh
gh
gh
-Eb
+nO
nO
nO
nO
@@ -17316,54 +17305,54 @@ gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
+LF
Vm
Vm
lz
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -17375,12 +17364,12 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17458,15 +17447,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
@@ -17479,33 +17468,33 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
MV
-oM
+LF
qX
-oM
+LF
Vm
Vm
Vm
@@ -17517,12 +17506,12 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17600,15 +17589,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -17622,46 +17611,46 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
lz
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -17687,7 +17676,7 @@ gh
gh
gh
nO
-Eb
+nO
nO
nO
gh
@@ -17742,18 +17731,18 @@ gh
gh
gh
Vm
-oM
-Rh
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17763,9 +17752,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -17781,29 +17770,29 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-Rh
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17824,7 +17813,7 @@ nO
nO
xh
nO
-Eb
+nO
gh
gh
gh
@@ -17885,17 +17874,17 @@ gh
gh
Vm
ly
-oM
-oM
-oM
-oM
-oM
-oM
-Rh
-oM
-oM
-oM
-oM
+qe
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -17905,9 +17894,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -17923,29 +17912,29 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-Rh
+LF
+LF
WN
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -18018,7 +18007,7 @@ Uh
Uh
Uh
jO
-pT
+jO
we
Uh
gh
@@ -18026,18 +18015,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
Vm
Vm
Vm
@@ -18047,9 +18036,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -18065,20 +18054,20 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -18091,15 +18080,15 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
BJ
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
nO
@@ -18168,59 +18157,59 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -18233,15 +18222,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
nO
@@ -18310,59 +18299,59 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-Rh
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+qe
qX
-oM
+LF
MV
Vm
gh
Vm
-oM
+LF
qX
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
@@ -18375,15 +18364,15 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
nO
@@ -18418,7 +18407,7 @@ gh
gh
gh
nO
-Eb
+nO
nO
gh
gh
@@ -18452,8 +18441,8 @@ gh
gh
gh
Vm
-oM
-oM
+LF
+LF
WN
Vm
gh
@@ -18461,71 +18450,71 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -18594,9 +18583,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -18633,41 +18622,41 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
BJ
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -18736,9 +18725,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -18775,41 +18764,41 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -18821,7 +18810,7 @@ nO
nO
nO
nO
-Eb
+nO
nO
nO
nO
@@ -18878,9 +18867,9 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -18917,41 +18906,41 @@ Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
+LF
+LF
WN
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -19017,83 +19006,83 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
lz
Vm
gh
Vm
-oM
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Ek
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
gh
@@ -19104,7 +19093,7 @@ nO
nO
nO
nO
-nO
+Eb
nO
nO
nO
@@ -19160,82 +19149,82 @@ gh
gh
Vm
qX
-oM
-oM
-Rh
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-Rh
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
qX
MV
Vm
gh
Vm
-oM
-Rh
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-Rh
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
BJ
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -19301,57 +19290,57 @@ gh
gh
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
lz
Vm
gh
Vm
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
-oM
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
+LF
zL
-oM
+LF
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -19464,18 +19453,18 @@ Vm
Vm
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
Vm
Vm
Vm
Vm
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
Vm
Vm
@@ -19491,9 +19480,9 @@ Vm
Vm
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -19531,7 +19520,7 @@ gh
nO
nO
nO
-Eb
+nO
nO
nO
xh
@@ -19606,18 +19595,18 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -19633,9 +19622,9 @@ gh
gh
gh
Vm
-oM
-oM
-oM
+LF
+LF
+LF
Vm
gh
gh
@@ -19757,9 +19746,9 @@ gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
@@ -19775,9 +19764,9 @@ gh
gh
gh
Vm
-oM
+LF
qX
-oM
+LF
Vm
gh
gh
diff --git a/maps/gateway_vr/variable/arynthilakeunderground_b.dmm b/maps/gateway_vr/variable/arynthilakeunderground_b.dmm
index 5acb316d64..8934cbb35e 100644
--- a/maps/gateway_vr/variable/arynthilakeunderground_b.dmm
+++ b/maps/gateway_vr/variable/arynthilakeunderground_b.dmm
@@ -24,7 +24,7 @@
/turf/unsimulated/mineral,
/area/gateway/arynthilake/underground)
"cE" = (
-/obj/random/mob/semirandom_mob_spawner/monster,
+/obj/random/mob/semirandom_mob_spawner/monster/c,
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"cH" = (
@@ -95,9 +95,9 @@
/turf/simulated/floor/tiled/eris/steel/orangecorner,
/area/gateway/arynthilake/engine)
"iR" = (
-/obj/random/mob/semirandom_mob_spawner/robot,
-/turf/simulated/floor/plating/eris/under,
-/area/gateway/arynthilake/underground/maintenance)
+/obj/random/mob/semirandom_mob_spawner/monster,
+/turf/simulated/floor/tiled/eris/steel/monofloor,
+/area/gateway/arynthilake/engine)
"iU" = (
/obj/structure/table/steel_reinforced,
/obj/random/awayloot,
@@ -154,15 +154,12 @@
/turf/simulated/floor/tiled/eris/dark/monofloor,
/area/gateway/arynthilake/underground/maintenance)
"sg" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/random/mob/semirandom_mob_spawner/monster/d,
+/obj/random/mob/semirandom_mob_spawner/monster,
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"sn" = (
-/obj/random/mob/semirandom_mob_spawner/robot,
-/turf/simulated/floor/tiled/eris/steel/monofloor,
+/obj/random/mob/semirandom_mob_spawner/robot/retaliate,
+/turf/simulated/floor/tiled/eris/steel/techfloor,
/area/gateway/arynthilake/engine)
"uc" = (
/obj/machinery/gear_dispenser/adventure_box/weapon{
@@ -186,14 +183,13 @@
/turf/simulated/floor/tiled/eris/steel/techfloor,
/area/gateway/arynthilake/engine)
"vG" = (
-/obj/random/awayloot,
-/obj/random/mob/semirandom_mob_spawner/monster/f,
-/turf/simulated/mineral/floor/ignore_cavegen/cave,
-/area/gateway/arynthilake/underground)
+/obj/random/mob/semirandom_mob_spawner/monster/d,
+/turf/simulated/floor/plating/eris/under,
+/area/gateway/arynthilake/underground/maintenance)
"wg" = (
/obj/random/mob/semirandom_mob_spawner/monster/e,
-/turf/simulated/mineral/floor/ignore_cavegen/cave,
-/area/gateway/arynthilake/underground)
+/turf/simulated/floor/plating/eris/under,
+/area/gateway/arynthilake/underground/maintenance)
"wi" = (
/turf/simulated/wall/r_wall,
/area/gateway/arynthilake/underground/maintenance)
@@ -227,9 +223,9 @@
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"yK" = (
-/obj/random/mob/semirandom_mob_spawner/monster/c,
-/turf/simulated/floor/plating/eris/under,
-/area/gateway/arynthilake/underground/maintenance)
+/obj/random/mob/semirandom_mob_spawner/monster/e,
+/turf/simulated/mineral/floor/ignore_cavegen/cave,
+/area/gateway/arynthilake/underground)
"zV" = (
/turf/simulated/floor/tiled/eris/steel/orangecorner,
/area/gateway/arynthilake/engine)
@@ -256,10 +252,6 @@
},
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
-"EX" = (
-/obj/random/mob/semirandom_mob_spawner/monster,
-/turf/simulated/floor/tiled/eris/techmaint,
-/area/gateway/arynthilake/engine)
"Ff" = (
/turf/simulated/mineral/floor/ignore_cavegen/cave,
/area/gateway/arynthilake/underground)
@@ -286,10 +278,6 @@
"Il" = (
/turf/simulated/floor/tiled/eris/steel/monofloor,
/area/gateway/arynthilake/engine)
-"ID" = (
-/obj/random/mob/semirandom_mob_spawner/monster/b,
-/turf/simulated/floor/plating/eris/under,
-/area/gateway/arynthilake/underground/maintenance)
"JL" = (
/obj/structure/table/steel_reinforced,
/obj/random/tool,
@@ -300,11 +288,6 @@
/obj/random/tool/power,
/turf/simulated/floor/tiled/eris/steel/techfloor,
/area/gateway/arynthilake/engine)
-"JS" = (
-/obj/machinery/light/small,
-/obj/random/mob/semirandom_mob_spawner/robot,
-/turf/simulated/floor/tiled/eris/steel/monofloor,
-/area/gateway/arynthilake/engine)
"Kx" = (
/obj/machinery/light/small{
dir = 1
@@ -318,7 +301,7 @@
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"LQ" = (
-/obj/random/mob/semirandom_mob_spawner/monster/d,
+/obj/random/mob/semirandom_mob_spawner/monster/b,
/turf/simulated/floor/plating/eris/under,
/area/gateway/arynthilake/underground/maintenance)
"LR" = (
@@ -910,7 +893,7 @@ oZ
oZ
oZ
oZ
-oZ
+sg
oZ
wi
oZ
@@ -921,7 +904,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -1003,7 +986,7 @@ Ff
Ff
Ff
Ff
-LR
+Ff
Ff
Ff
bL
@@ -1021,7 +1004,7 @@ bL
wi
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -1046,7 +1029,7 @@ Ej
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -1079,7 +1062,6 @@ wi
wi
oZ
oZ
-yK
oZ
oZ
oZ
@@ -1099,7 +1081,8 @@ oZ
oZ
oZ
oZ
-iR
+oZ
+vG
oZ
oZ
oZ
@@ -1164,7 +1147,7 @@ wi
oZ
cH
oZ
-oZ
+sg
oZ
oZ
oZ
@@ -1217,7 +1200,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
wi
oZ
oZ
@@ -1445,7 +1428,7 @@ bX
bL
bL
wi
-cE
+oZ
oZ
oZ
wi
@@ -1496,7 +1479,7 @@ oZ
oZ
oZ
wi
-cE
+oZ
oZ
oZ
oZ
@@ -1549,7 +1532,7 @@ wi
bL
bL
Ff
-LR
+Ff
bL
bL
bL
@@ -1589,7 +1572,7 @@ bL
wi
oZ
oZ
-cE
+oZ
wi
bL
bL
@@ -1607,7 +1590,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -1646,7 +1629,7 @@ oZ
oZ
wi
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -1811,7 +1794,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
wi
bL
bL
@@ -1854,7 +1837,7 @@ Ff
Ff
bL
Ff
-LR
+Ff
Ff
bL
Ff
@@ -2085,7 +2068,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
oZ
oZ
wi
@@ -2244,7 +2227,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -2330,7 +2313,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
wi
oZ
@@ -2371,7 +2354,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
wi
oZ
oZ
@@ -2410,7 +2393,7 @@ Ff
Ff
Ff
Ff
-LR
+Ff
Ff
Ff
bL
@@ -2584,7 +2567,7 @@ bL
bL
bL
kb
-sn
+Il
Il
Il
kb
@@ -2596,7 +2579,7 @@ kb
kb
Il
Il
-JS
+GB
kb
bL
wi
@@ -2727,7 +2710,7 @@ bL
bL
kb
Il
-Il
+iR
Il
Il
kb
@@ -2846,12 +2829,12 @@ bL
Ff
Ff
Ff
-LR
+Ff
Ff
Ff
QA
Ff
-LR
+Ff
Ff
bL
bL
@@ -2896,7 +2879,6 @@ Oe
oZ
cH
oZ
-cE
oZ
oZ
oZ
@@ -2906,7 +2888,8 @@ oZ
oZ
oZ
oZ
-cE
+oZ
+oZ
oZ
wi
bL
@@ -2945,7 +2928,7 @@ oZ
oZ
oZ
wi
-yK
+oZ
oZ
oZ
Ej
@@ -3026,7 +3009,7 @@ Il
kb
bL
wi
-cE
+oZ
oZ
oZ
wi
@@ -3205,7 +3188,7 @@ cH
oZ
oZ
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -3260,7 +3243,7 @@ Ff
Ff
Ff
Ff
-Ff
+LR
Ff
Ff
Ff
@@ -3437,7 +3420,7 @@ bL
bL
kb
iU
-EX
+UC
UC
Dj
QT
@@ -3447,14 +3430,14 @@ zV
xP
Cp
UC
-EX
+UC
Cp
kb
bL
wi
oZ
cH
-cE
+oZ
wi
oZ
oZ
@@ -3528,7 +3511,7 @@ wi
oZ
oZ
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -3547,7 +3530,7 @@ Ff
Ff
Ff
Ff
-LR
+Ff
Ff
Ff
Ff
@@ -3598,7 +3581,7 @@ oZ
oZ
oZ
wi
-cE
+oZ
oZ
oZ
oZ
@@ -3757,7 +3740,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -3765,7 +3748,7 @@ Ej
wi
Mg
oZ
-cE
+oZ
oZ
oZ
cH
@@ -3775,7 +3758,7 @@ wi
Mg
oZ
oZ
-yK
+oZ
oZ
cH
oZ
@@ -3845,7 +3828,7 @@ bL
bL
bL
Ff
-LR
+Ff
bL
bL
Ff
@@ -3911,7 +3894,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
Ej
wi
oZ
@@ -4025,7 +4008,7 @@ oZ
oZ
oZ
KZ
-cE
+oZ
oZ
oZ
oZ
@@ -4069,7 +4052,7 @@ Ej
oZ
oZ
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -4274,7 +4257,7 @@ bL
bL
bL
bL
-Ff
+LR
Ff
bL
bL
@@ -4299,7 +4282,7 @@ oZ
kb
XA
oL
-oL
+sn
mj
kb
bL
@@ -4312,7 +4295,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
Ej
@@ -4355,7 +4338,7 @@ oZ
oZ
Vj
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -4378,7 +4361,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -4417,7 +4400,7 @@ bL
bL
bL
Ff
-vG
+eQ
Ff
bL
bX
@@ -4483,7 +4466,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -4578,7 +4561,7 @@ kb
kb
kb
oZ
-cE
+oZ
oZ
kb
kb
@@ -4675,7 +4658,7 @@ bL
bL
Ff
Ff
-LR
+Ff
Ff
Ff
bL
@@ -4686,7 +4669,7 @@ Ff
Ff
Ff
Ff
-LR
+Ff
Ff
Ff
Ff
@@ -4877,7 +4860,7 @@ oZ
oZ
wi
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -4973,7 +4956,7 @@ Ff
Ff
Ff
Ff
-LR
+Ff
bL
bL
Ff
@@ -5031,11 +5014,11 @@ oZ
cH
oZ
oZ
+sg
oZ
oZ
oZ
oZ
-cE
oZ
Oe
wi
@@ -5146,7 +5129,7 @@ oZ
oZ
oZ
oZ
-oZ
+sg
oZ
oZ
oZ
@@ -5236,12 +5219,12 @@ oZ
oZ
oZ
oZ
-yK
+oZ
oZ
wi
bL
Ff
-LR
+Ff
Ff
bL
bL
@@ -5282,7 +5265,6 @@ bL
bL
wi
oZ
-cE
oZ
oZ
oZ
@@ -5294,7 +5276,8 @@ oZ
oZ
oZ
oZ
-cE
+oZ
+oZ
oZ
wi
wi
@@ -5339,7 +5322,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -5356,7 +5339,7 @@ bL
bL
wi
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -5405,7 +5388,7 @@ bL
Ff
Ff
Ff
-LR
+Ff
bL
bL
bL
@@ -5686,7 +5669,7 @@ bL
bL
Ff
Ff
-Ff
+LR
Ff
bL
bL
@@ -5905,7 +5888,7 @@ wi
bL
wi
oZ
-ID
+oZ
oZ
wi
oZ
@@ -5931,7 +5914,7 @@ bL
wi
oZ
oZ
-yK
+oZ
oZ
oZ
Ej
@@ -6019,7 +6002,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
wi
oZ
oZ
@@ -6171,7 +6154,7 @@ bL
wi
oZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -6179,7 +6162,7 @@ wi
oZ
KZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -6226,7 +6209,7 @@ oZ
wi
bL
wi
-yK
+oZ
oZ
oZ
oZ
@@ -6299,7 +6282,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
Vj
@@ -6323,7 +6306,7 @@ oZ
oZ
oZ
oZ
-oZ
+vG
oZ
oZ
oZ
@@ -6348,7 +6331,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
oZ
wi
wi
@@ -6477,7 +6460,7 @@ oZ
oZ
wi
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -6528,14 +6511,14 @@ bL
bL
bL
bL
-LR
Ff
Ff
Ff
Ff
Ff
Ff
-LR
+Ff
+Ff
Ff
Ff
Ff
@@ -6565,7 +6548,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -6647,7 +6630,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
oZ
wi
wi
@@ -6851,7 +6834,7 @@ wi
wi
Mg
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -6946,7 +6929,7 @@ bL
bL
wi
oZ
-yK
+oZ
oZ
wi
bL
@@ -7002,7 +6985,7 @@ wi
wi
oZ
oZ
-cE
+oZ
wi
wi
wi
@@ -7016,7 +6999,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
wi
bL
@@ -7245,7 +7228,7 @@ bL
bL
bL
Ff
-LR
+Ff
Ff
Ff
Ff
@@ -7345,7 +7328,7 @@ oZ
oZ
oZ
oZ
-oZ
+vG
oZ
oZ
ah
@@ -7361,7 +7344,7 @@ bL
wi
oZ
oZ
-yK
+oZ
wi
bL
bL
@@ -7396,7 +7379,7 @@ bL
Ff
Ff
Ff
-LR
+Ff
bL
bL
bL
@@ -7566,7 +7549,7 @@ wi
bL
wi
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -7663,7 +7646,7 @@ bL
bL
bL
Ff
-LR
+Ff
bL
bL
bL
@@ -7742,7 +7725,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
oZ
WK
wi
@@ -7792,14 +7775,14 @@ wi
bL
wi
oZ
-yK
oZ
oZ
oZ
oZ
oZ
oZ
-yK
+oZ
+oZ
wi
bL
bL
@@ -7835,7 +7818,7 @@ bX
wi
oZ
oZ
-LQ
+oZ
wi
oZ
oZ
@@ -7862,7 +7845,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
WK
wi
wi
@@ -8270,7 +8253,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
wi
bL
@@ -8338,7 +8321,7 @@ wi
oZ
oZ
oZ
-ID
+oZ
oZ
oZ
wi
@@ -8405,7 +8388,7 @@ oZ
oZ
oZ
wi
-cE
+oZ
oZ
oZ
oZ
@@ -8524,12 +8507,12 @@ bL
Ff
Ff
Ff
+Ff
+Ff
+Ff
LR
Ff
Ff
-Ff
-Ff
-Ff
bL
bL
bL
@@ -8576,7 +8559,7 @@ oZ
oZ
wi
oZ
-cE
+oZ
oZ
wi
oZ
@@ -8596,7 +8579,7 @@ wi
wi
oZ
oZ
-ID
+oZ
oZ
oZ
wi
@@ -8654,7 +8637,7 @@ bL
bL
bL
bL
-LR
+Ff
Ff
bL
bL
@@ -8707,7 +8690,7 @@ wi
Oe
oZ
oZ
-cE
+oZ
oZ
oZ
wi
@@ -8753,7 +8736,7 @@ oZ
wi
oZ
oZ
-ID
+oZ
oZ
oZ
Ej
@@ -8827,7 +8810,7 @@ bX
(60,1,1) = {"
bX
wi
-LQ
+oZ
oZ
oZ
wi
@@ -8868,7 +8851,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
wi
oZ
oZ
@@ -9091,13 +9074,13 @@ bL
bL
bL
Ff
-LR
+Ff
Ff
bL
bL
bL
bL
-wg
+Ff
Ff
Ff
Ff
@@ -9143,7 +9126,7 @@ wi
wi
wi
wi
-cE
+oZ
oZ
oZ
wi
@@ -9397,7 +9380,7 @@ bX
wi
wi
oZ
-oZ
+LQ
oZ
wi
bL
@@ -9430,11 +9413,11 @@ oZ
oZ
oZ
oZ
-cE
+oZ
oZ
oZ
wi
-cE
+oZ
oZ
oZ
wi
@@ -9449,7 +9432,7 @@ oZ
oZ
oZ
KZ
-ID
+oZ
wi
bL
wi
@@ -9484,7 +9467,7 @@ oZ
oZ
oZ
oZ
-yK
+oZ
oZ
wi
bL
@@ -9492,7 +9475,6 @@ wi
oZ
cH
oZ
-yK
oZ
oZ
oZ
@@ -9502,7 +9484,8 @@ oZ
oZ
oZ
oZ
-yK
+oZ
+oZ
oZ
wi
bL
@@ -9607,7 +9590,7 @@ wi
oZ
oZ
oZ
-ID
+oZ
oZ
oZ
wi
@@ -9626,7 +9609,7 @@ oZ
Vj
oZ
oZ
-oZ
+vG
oZ
wi
bL
@@ -9730,7 +9713,7 @@ oZ
wi
oZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -9845,7 +9828,7 @@ oZ
oZ
oZ
oZ
-oZ
+sg
oZ
oZ
oZ
@@ -9896,7 +9879,7 @@ wi
wi
wi
wi
-yK
+oZ
oZ
oZ
oZ
@@ -9936,7 +9919,7 @@ Ff
bL
bL
bL
-LR
+Ff
bL
bL
bL
@@ -9966,13 +9949,13 @@ bL
wi
Mg
oZ
-LQ
+oZ
oZ
oZ
ah
oZ
oZ
-cE
+oZ
oZ
oZ
oZ
@@ -10020,7 +10003,7 @@ cH
oZ
oZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -10058,7 +10041,7 @@ wi
bL
wi
Mg
-yK
+oZ
oZ
oZ
oZ
@@ -10120,7 +10103,7 @@ oZ
oZ
oZ
oZ
-cE
+oZ
wi
bL
bL
@@ -10300,7 +10283,7 @@ oZ
oZ
oZ
oZ
-oZ
+vG
oZ
wi
wi
@@ -10456,7 +10439,7 @@ bL
bL
bL
wi
-ID
+oZ
oZ
oZ
oZ
@@ -10469,7 +10452,7 @@ bL
bL
wi
oZ
-yK
+oZ
oZ
oZ
oZ
@@ -10496,32 +10479,32 @@ oZ
oZ
wi
oZ
-oZ
-Ff
-Ff
-Ff
-Ff
-bL
-bL
-bL
-Ff
-Ff
-Ff
-Ff
-bL
-bL
-Ff
-Ff
-Ff
-bL
-bL
-bL
-Ff
-Ff
-Ff
wg
Ff
Ff
+Ff
+Ff
+bL
+bL
+bL
+Ff
+Ff
+Ff
+Ff
+bL
+bL
+Ff
+Ff
+Ff
+bL
+bL
+bL
+Ff
+Ff
+Ff
+Ff
+Ff
+Ff
bL
bL
bL
@@ -10659,7 +10642,7 @@ bL
bL
bL
Ff
-wg
+Ff
QA
Ff
Ff
@@ -10690,7 +10673,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
cH
oZ
@@ -10821,7 +10804,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -10946,7 +10929,7 @@ Ff
Ff
Ff
Ff
-wg
+Ff
bL
bL
bL
@@ -10997,7 +10980,7 @@ bL
bL
wi
oZ
-oZ
+LQ
oZ
oZ
oZ
@@ -11091,7 +11074,7 @@ Ff
bL
bL
bL
-wg
+Ff
bL
bL
bX
@@ -11110,7 +11093,7 @@ oZ
oZ
oZ
Vj
-LQ
+oZ
wi
oZ
oZ
@@ -11191,9 +11174,9 @@ wi
Oe
oZ
cH
-yK
oZ
oZ
+wg
oZ
WK
wi
@@ -11215,7 +11198,7 @@ Ff
Ff
Ff
Ff
-Ff
+yK
Ff
Ff
Ff
@@ -11416,7 +11399,7 @@ wi
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -11714,7 +11697,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
KZ
@@ -11890,7 +11873,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
wi
bL
wi
@@ -11975,7 +11958,7 @@ wi
wi
Mg
oZ
-LQ
+oZ
cH
oZ
Oe
@@ -12072,12 +12055,12 @@ bL
bL
bL
Ff
-LR
+Ff
Ff
bL
bL
bL
-LR
+Ff
Ff
bL
bL
@@ -12100,7 +12083,7 @@ oZ
wi
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -12236,7 +12219,7 @@ bX
bX
bL
wi
-LQ
+oZ
oZ
oZ
wi
@@ -12251,7 +12234,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -12366,7 +12349,7 @@ Ff
bL
bL
Ff
-wg
+Ff
Ff
bL
bL
@@ -12457,6 +12440,7 @@ bL
bL
wi
oZ
+vG
oZ
oZ
oZ
@@ -12467,7 +12451,6 @@ oZ
oZ
oZ
oZ
-ID
wi
bL
wi
@@ -12581,7 +12564,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -12620,7 +12603,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
oZ
wi
bL
@@ -12756,7 +12739,7 @@ wi
bL
wi
Mg
-ID
+oZ
oZ
oZ
oZ
@@ -12780,7 +12763,7 @@ bL
bL
bL
bL
-LR
+Ff
Ff
Ff
bL
@@ -12845,7 +12828,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
Vj
oZ
@@ -12913,7 +12896,7 @@ bL
Ff
Ff
Ff
-LR
+Ff
bL
bL
bL
@@ -13067,7 +13050,7 @@ Ff
Ff
bL
bL
-LR
+Ff
Ff
bL
bL
@@ -13172,7 +13155,7 @@ oZ
wi
wi
oZ
-iR
+oZ
oZ
wi
oZ
@@ -13337,8 +13320,8 @@ bL
bL
Ff
Ff
-LR
Ff
+yK
Ff
Ff
Ff
@@ -13376,7 +13359,7 @@ bL
bL
bL
wi
-sg
+Mg
oZ
oZ
wi
@@ -13397,7 +13380,7 @@ oZ
oZ
Vj
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -13406,7 +13389,7 @@ wi
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -13417,7 +13400,7 @@ Oe
oZ
cH
oZ
-LQ
+oZ
wi
wi
oZ
@@ -13569,7 +13552,7 @@ wi
bL
wi
oZ
-LQ
+oZ
oZ
oZ
cH
@@ -13577,7 +13560,7 @@ yv
wi
oZ
oZ
-LQ
+oZ
wi
oZ
oZ
@@ -13609,7 +13592,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
wi
bL
bL
@@ -13635,7 +13618,7 @@ bL
Ff
QA
Ff
-LR
+Ff
bL
bL
bL
@@ -13731,7 +13714,7 @@ wi
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
wi
@@ -13782,7 +13765,7 @@ bL
bL
Ff
Ff
-wg
+Ff
bL
bL
bL
@@ -13823,7 +13806,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -13842,7 +13825,7 @@ wi
wi
wi
oZ
-oZ
+LQ
oZ
wi
wi
@@ -13915,7 +13898,7 @@ bL
bL
bL
Ff
-LR
+Ff
Ff
Ff
Ff
@@ -13951,7 +13934,7 @@ wi
bL
wi
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -14266,7 +14249,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -14290,7 +14273,7 @@ oZ
oZ
wi
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -14319,7 +14302,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
wi
bL
bL
@@ -14347,7 +14330,7 @@ bL
bL
bL
bL
-wg
+Ff
Ff
Ff
Ff
@@ -14422,7 +14405,7 @@ bL
wi
oZ
oZ
-LQ
+oZ
oZ
cH
yv
@@ -14493,7 +14476,7 @@ bL
Ff
Ff
Ff
-wg
+Ff
Ff
Ff
bL
@@ -14569,7 +14552,7 @@ oZ
oZ
oZ
wi
-LQ
+oZ
oZ
oZ
wi
@@ -14668,7 +14651,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -14700,7 +14683,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
wi
bL
wi
@@ -14758,7 +14741,7 @@ bL
bL
Ff
Ff
-Ff
+yK
Ff
Ff
Ff
@@ -15041,7 +15024,7 @@ bL
Ff
Ff
Ff
-wg
+Ff
Ff
Ff
bL
@@ -15102,7 +15085,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
wi
bL
@@ -15159,7 +15142,7 @@ oZ
oZ
oZ
wi
-ID
+oZ
oZ
oZ
wi
@@ -15194,7 +15177,7 @@ bL
bL
bL
Ff
-wg
+Ff
Ff
bL
bL
@@ -15205,7 +15188,7 @@ bL
Ff
Ff
Ff
-wg
+Ff
Ff
Ff
bL
@@ -15227,7 +15210,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
wi
bL
wi
@@ -15240,11 +15223,11 @@ oZ
cH
oZ
oZ
-LQ
oZ
oZ
oZ
oZ
+cE
WK
wi
bL
@@ -15299,7 +15282,7 @@ bL
wi
oZ
oZ
-ID
+oZ
wi
oZ
oZ
@@ -15308,7 +15291,7 @@ wi
Ej
oZ
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -15322,8 +15305,8 @@ bL
bL
Ff
Ff
-wg
Ff
+yK
Ff
Ff
Ff
@@ -15368,7 +15351,7 @@ oZ
oZ
oZ
oZ
-oZ
+LQ
WK
wi
bL
@@ -15454,7 +15437,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
WK
wi
bL
@@ -15508,7 +15491,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -15751,7 +15734,7 @@ bL
Ff
Ff
Ff
-wg
+Ff
Ff
bL
bL
@@ -15791,7 +15774,7 @@ oZ
oZ
oZ
wi
-LQ
+oZ
KZ
oZ
oZ
@@ -15939,7 +15922,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -15990,7 +15973,7 @@ oZ
wi
oZ
oZ
-LQ
+oZ
wi
wi
oZ
@@ -16138,7 +16121,7 @@ wi
Mg
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -16259,7 +16242,7 @@ wi
wi
wi
wi
-LQ
+oZ
oZ
oZ
oZ
@@ -16331,7 +16314,7 @@ Ff
Ff
Ff
Ff
-wg
+Ff
Ff
Ff
bL
@@ -16481,7 +16464,7 @@ Ff
Ff
Ff
Ff
-wg
+Ff
Ff
Ff
Ff
@@ -16515,7 +16498,7 @@ wi
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -16623,7 +16606,7 @@ Ff
Ff
bL
Ff
-Ff
+yK
Ff
Ff
bL
@@ -16730,7 +16713,7 @@ wi
bL
wi
oZ
-ID
+oZ
oZ
oZ
oZ
@@ -16745,7 +16728,7 @@ Ff
bL
bL
Ff
-wg
+Ff
Ff
Ff
Ff
@@ -16765,7 +16748,7 @@ bL
bL
bL
Ff
-wg
+Ff
Ff
bL
bL
@@ -16852,7 +16835,7 @@ oZ
oZ
oZ
KZ
-LQ
+oZ
oZ
oZ
oZ
@@ -16947,7 +16930,7 @@ wi
bL
wi
Mg
-oZ
+cE
oZ
cH
Oe
@@ -17089,7 +17072,7 @@ wi
bL
wi
oZ
-LQ
+oZ
oZ
oZ
Ej
@@ -17120,7 +17103,7 @@ bL
bL
bL
wi
-LQ
+oZ
oZ
oZ
oZ
@@ -17208,7 +17191,7 @@ bL
bL
wi
oZ
-oZ
+cE
oZ
oZ
oZ
@@ -17461,7 +17444,7 @@ Ff
Ff
Ff
Ff
-wg
+Ff
Ff
bL
bL
@@ -17555,7 +17538,7 @@ wi
wi
wi
wi
-LQ
+oZ
oZ
oZ
wi
@@ -17567,7 +17550,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
wi
hB
oZ
@@ -17586,7 +17569,7 @@ oZ
oZ
oZ
oZ
-ID
+oZ
wi
bL
bL
@@ -17600,7 +17583,7 @@ bL
bL
Ff
Ff
-Ff
+yK
Ff
Ff
Ff
@@ -17760,7 +17743,7 @@ bL
bL
Ff
Ff
-wg
+Ff
Ff
bL
Ff
@@ -17839,12 +17822,12 @@ oZ
oZ
oZ
oZ
-oZ
+wg
oZ
WK
wi
oZ
-LQ
+oZ
oZ
wi
wi
@@ -17929,7 +17912,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -18124,7 +18107,7 @@ wi
wi
wi
oZ
-LQ
+oZ
oZ
wi
oZ
@@ -18150,7 +18133,7 @@ oZ
oZ
oZ
wi
-LQ
+oZ
oZ
oZ
oZ
@@ -18255,11 +18238,11 @@ oZ
oZ
oZ
oZ
-LQ
+cE
oZ
wi
wi
-LQ
+oZ
oZ
oZ
wi
@@ -18306,7 +18289,7 @@ bL
bL
bL
Ff
-wg
+Ff
Ff
Ff
bL
@@ -18379,7 +18362,7 @@ wi
bL
wi
oZ
-iR
+oZ
oZ
wi
bL
@@ -18566,7 +18549,7 @@ wi
bL
wi
Mg
-LQ
+oZ
oZ
cH
oZ
@@ -18578,7 +18561,7 @@ oZ
wi
oZ
oZ
-LQ
+oZ
wi
oZ
oZ
@@ -18629,7 +18612,7 @@ bL
bL
bL
wi
-LQ
+oZ
oZ
oZ
oZ
@@ -18754,7 +18737,7 @@ bL
bL
bL
bL
-wg
+Ff
Ff
QA
Ff
@@ -18787,7 +18770,7 @@ wi
Cs
oZ
oZ
-oZ
+cE
oZ
oZ
Cs
@@ -18850,13 +18833,13 @@ oZ
oZ
oZ
oZ
-oZ
+wg
oZ
wi
wi
wi
wi
-ID
+oZ
oZ
oZ
wi
@@ -18914,7 +18897,7 @@ bL
bL
wi
oZ
-LQ
+oZ
oZ
wi
bL
@@ -18987,7 +18970,7 @@ oZ
wi
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -19007,7 +18990,7 @@ Oe
Ej
wi
oZ
-LQ
+oZ
oZ
wi
bL
@@ -19182,7 +19165,7 @@ bL
bL
bL
Ff
-wg
+Ff
bL
bL
bL
@@ -19211,7 +19194,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -19230,7 +19213,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -19448,7 +19431,7 @@ Ff
bL
bL
Ff
-wg
+Ff
Ff
Ff
bL
@@ -19500,7 +19483,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
Vj
@@ -19682,7 +19665,7 @@ oZ
oZ
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -19730,7 +19713,7 @@ bL
bL
Ff
Ff
-wg
+Ff
Ff
Ff
Ff
@@ -19845,7 +19828,7 @@ bL
wi
oZ
oZ
-LQ
+oZ
oZ
oZ
oZ
@@ -20018,7 +20001,7 @@ Ff
Ff
Ff
Ff
-wg
+Ff
Ff
Ff
bL
diff --git a/maps/gateway_vr/variable/honlethhighlands_a.dmm b/maps/gateway_vr/variable/honlethhighlands_a.dmm
index 639b845486..f7acdc2a00 100644
--- a/maps/gateway_vr/variable/honlethhighlands_a.dmm
+++ b/maps/gateway_vr/variable/honlethhighlands_a.dmm
@@ -688,12 +688,6 @@
temperature = 253.15
},
/area/gateway/honlethhighlands)
-"jn" = (
-/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands,
-/turf/simulated/floor/water/deep{
- temperature = 253.15
- },
-/area/gateway/honlethhighlands/beach)
"jp" = (
/obj/item/modular_computer/console/preset/civilian,
/turf/simulated/floor/tiled,
@@ -3413,7 +3407,7 @@ bm
bm
bm
bm
-jn
+bm
aa
"}
(4,1,1) = {"
diff --git a/maps/gateway_vr/variable/honlethhighlands_b.dmm b/maps/gateway_vr/variable/honlethhighlands_b.dmm
index ccd8e99e90..a85f7cf013 100644
--- a/maps/gateway_vr/variable/honlethhighlands_b.dmm
+++ b/maps/gateway_vr/variable/honlethhighlands_b.dmm
@@ -736,12 +736,6 @@
/obj/random/multiple/gun/projectile,
/turf/simulated/floor/plating,
/area/gateway/honlethhighlands/town/supply)
-"kk" = (
-/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands,
-/turf/simulated/floor/water/deep{
- temperature = 253.15
- },
-/area/gateway/honlethhighlands/beach)
"kx" = (
/obj/effect/floor_decal/techfloor{
dir = 10
@@ -3454,7 +3448,7 @@ bm
bm
bm
bm
-kk
+bm
aa
"}
(4,1,1) = {"
diff --git a/maps/gateway_vr/wildwest.dm b/maps/gateway_vr/wildwest.dm
index 2260db08ed..69c3a26f21 100644
--- a/maps/gateway_vr/wildwest.dm
+++ b/maps/gateway_vr/wildwest.dm
@@ -191,4 +191,46 @@
skybox_icon = 'icons/skybox/anomaly.dmi'
skybox_icon_state = "shimmer_r"
skybox_pixel_x = 0
- skybox_pixel_y = 0
\ No newline at end of file
+ skybox_pixel_y = 0
+
+/obj/random/mob/semirandom_mob_spawner/wildwest
+ name = "Wild west mob spawner"
+ desc = "Spawns groups of mobs that are all of the same theme type/theme."
+ icon = 'icons/mob/randomlandmarks.dmi'
+ icon_state = "monster"
+ mob_faction = "wildwest"
+ mob_returns_home = 0
+ overwrite_hostility = 1
+ mob_hostile = 1
+
+ possible_mob_types = list(
+ list(
+ /mob/living/simple_mob/humanoid/merc/melee = 100,
+ /mob/living/simple_mob/humanoid/merc/ranged = 50,
+ /mob/living/simple_mob/humanoid/merc/ranged/space = 5,
+ /mob/living/simple_mob/otie/feral = 10,
+ /mob/living/simple_mob/otie/feral/chubby = 5
+ ),
+
+ list(
+ /mob/living/simple_mob/animal/space/alien = 1000,
+ /mob/living/simple_mob/animal/space/alien/drone = 500,
+ /mob/living/simple_mob/animal/space/alien/sentinel = 100,
+ /mob/living/simple_mob/animal/space/alien/sentinel/praetorian = 50,
+ /mob/living/simple_mob/animal/space/alien/queen = 50,
+ /mob/living/simple_mob/animal/space/alien/queen/empress = 1,
+ /mob/living/simple_mob/animal/space/alien/queen/empress/mother = 1
+ ),
+ list(
+ /mob/living/simple_mob/humanoid/pirate = 100,
+ /mob/living/simple_mob/humanoid/pirate/ranged = 50,
+ /mob/living/simple_mob/animal/wolf = 10,
+ /mob/living/simple_mob/animal/wolf/direwolf = 5
+ )
+
+ )
+
+/obj/random/mob/semirandom_mob_spawner/wildwest/spawn_item()
+ if(prob(25))
+ return
+ . = ..()
diff --git a/maps/gateway_vr/wildwest.dmm b/maps/gateway_vr/wildwest.dmm
index 12a79c33ec..d80e24e75a 100644
--- a/maps/gateway_vr/wildwest.dmm
+++ b/maps/gateway_vr/wildwest.dmm
@@ -46,7 +46,7 @@
/area/space)
"aj" = (
/obj/effect/floor_decal/corner/lightgrey/diagonal,
-/mob/living/simple_mob/humanoid/merc/ranged,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/tiled/white,
/area/awaymission/wwmines)
"ak" = (
@@ -210,15 +210,6 @@
},
/turf/space,
/area/space)
-"aJ" = (
-/obj/item/weapon/paper{
- info = "meat grinder requires sacri"
- },
-/turf/simulated/floor/cult{
- nitrogen = 0;
- oxygen = 0
- },
-/area/awaymission/wwvault)
"aK" = (
/obj/machinery/gateway{
dir = 8
@@ -269,15 +260,6 @@
"bk" = (
/turf/simulated/floor/carpet,
/area/awaymission/wwmines)
-"bn" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper{
- info = " The miners in the town have become sick and almost all production has stopped. They, in a fit of delusion, tossed all of their mining equipment into the furnaces. They all claimed the same thing. A voice beckoning them to lay down their arms. Stupid miners.";
- name = "Planer Saul's Journal: Page 4"
- },
-/obj/effect/floor_decal/corner/lightgrey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/awaymission/wwmines)
"bo" = (
/obj/structure/table/woodentable,
/obj/effect/floor_decal/corner/lightgrey/diagonal,
@@ -315,13 +297,6 @@
/obj/machinery/gateway,
/turf/simulated/floor/redgrid/off,
/area/awaymission/wwvault)
-"bR" = (
-/obj/item/weapon/paper{
- info = "We've discovered something floating in space. We can't really tell how old it is, but it is scraped and bent to hell. There object is the size of about a room with double doors that we have yet to break into. It is a lot sturdier than we could have imagined. We have decided to call it 'The Vault' ";
- name = "Planer Saul's Journal: Page 1"
- },
-/turf/simulated/floor/carpet,
-/area/awaymission/wwgov)
"bS" = (
/obj/machinery/gateway{
dir = 6
@@ -514,19 +489,8 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/awaymission/wwmines)
-"dM" = (
-/obj/item/weapon/stool{
- dir = 1
- },
-/mob/living/simple_mob/humanoid/merc/ranged,
-/turf/simulated/floor/wood,
-/area/awaymission/wwmines)
-"dN" = (
-/mob/living/simple_mob/humanoid/merc/ranged,
-/turf/simulated/floor/outdoors/ironsand,
-/area/awaymission/wwmines)
"dO" = (
-/mob/living/simple_mob/humanoid/merc/melee,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/outdoors/ironsand,
/area/awaymission/wwmines)
"dQ" = (
@@ -567,7 +531,7 @@
/turf/simulated/floor/tiled/asteroid_steel,
/area/awaymission/wwmines)
"eh" = (
-/mob/living/simple_mob/humanoid/merc/ranged,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/plating,
/area/awaymission/wwrefine)
"ei" = (
@@ -654,10 +618,6 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/awaymission/wwmines)
-"eX" = (
-/mob/living/simple_mob/humanoid/merc/ranged,
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/awaymission/wwmines)
"eY" = (
/obj/structure/table/woodentable,
/obj/item/weapon/book/manual/barman_recipes,
@@ -744,10 +704,6 @@
/obj/effect/floor_decal/corner/lightgrey/diagonal,
/turf/simulated/floor/tiled/white,
/area/awaymission/wwmines)
-"fu" = (
-/mob/living/simple_mob/humanoid/merc/melee,
-/turf/simulated/floor/wood,
-/area/awaymission/wwmines)
"fy" = (
/obj/machinery/door/window{
dir = 1
@@ -967,7 +923,7 @@
/area/awaymission/wwgov)
"gH" = (
/obj/effect/decal/remains/human,
-/mob/living/simple_mob/humanoid/merc/ranged/space,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/plating,
/area/awaymission/wwrefine)
"gM" = (
@@ -978,7 +934,7 @@
/turf/simulated/floor/outdoors/ironsand,
/area/awaymission/wwmines)
"gP" = (
-/mob/living/simple_mob/humanoid/merc/ranged,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"gQ" = (
@@ -1223,13 +1179,6 @@
},
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
-"pW" = (
-/obj/item/weapon/paper{
- info = "The syndicate have invaded. Their ships appeared out of nowhere and now they likely intend to kill us all and take everything. On the off-chance that the Vault may grant us sanctuary, many of us have decided to force our way inside and bolt the door, taking as many provisions with us as we can carry. In case you find this, send for help immediately and open the Vault. Find us inside.";
- name = "Planer Saul's Journal: Page 8"
- },
-/turf/simulated/floor/outdoors/ironsand,
-/area/awaymission/wwmines)
"qQ" = (
/obj/effect/decal/mecha_wreckage/ripley/deathripley{
anchored = 1
@@ -1319,7 +1268,7 @@
/turf/simulated/floor/grass,
/area/awaymission/wwgov)
"tA" = (
-/mob/living/simple_mob/humanoid/merc/melee,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/tiled/asteroid_steel,
/area/awaymission/wwmines)
"tO" = (
@@ -1386,7 +1335,7 @@
/obj/item/weapon/stool{
dir = 1
},
-/mob/living/simple_mob/humanoid/merc/melee,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"wj" = (
@@ -1559,16 +1508,9 @@
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"CN" = (
-/mob/living/simple_mob/humanoid/merc/ranged,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/carpet,
/area/awaymission/wwmines)
-"CO" = (
-/obj/item/weapon/paper{
- info = "The Vault...it just keeps growing and growing. I went on my daily walk through the garden and now its just right outside the mansion... a few days ago it was only barely visible. But whatever is inside...its calling to me.";
- name = "Planer Sauls' Journal: Page 7"
- },
-/turf/simulated/floor/tiled/asteroid_steel,
-/area/awaymission/wwmines)
"CU" = (
/obj/structure/largecrate,
/obj/machinery/light/small{
@@ -1790,7 +1732,7 @@
/turf/simulated/floor/outdoors/ironsand,
/area/awaymission/wwmines)
"Kj" = (
-/mob/living/simple_mob/humanoid/merc/melee,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/tiled/asteroid_steel,
/area/awaymission/wwrefine)
"KI" = (
@@ -2032,7 +1974,7 @@
/obj/machinery/light/small{
dir = 4
},
-/mob/living/simple_mob/humanoid/merc/melee,
+/obj/random/mob/semirandom_mob_spawner/wildwest,
/turf/simulated/floor/wood,
/area/awaymission/wwmines)
"Tk" = (
@@ -4692,7 +4634,7 @@ bY
bY
bY
bY
-bR
+bY
bY
jq
cn
@@ -8502,7 +8444,7 @@ aF
aF
aF
dl
-aJ
+pv
dn
pv
pv
@@ -11102,7 +11044,7 @@ gN
gN
gN
gN
-dN
+dO
gN
gN
gN
@@ -11501,7 +11443,7 @@ gN
gN
gN
gN
-dN
+dO
gN
gN
gN
@@ -11550,7 +11492,7 @@ aL
gN
gN
gN
-pW
+gN
aL
aL
aN
@@ -12780,7 +12722,7 @@ fS
Ft
bo
bo
-bn
+bo
Ft
fS
bj
@@ -13620,7 +13562,7 @@ gN
gN
gN
gN
-dN
+dO
gN
gN
cA
@@ -14090,7 +14032,7 @@ gN
fS
bj
bj
-fu
+gP
bj
bj
bj
@@ -14907,7 +14849,7 @@ cA
cA
cA
cA
-eX
+tA
cA
cA
cA
@@ -16334,7 +16276,7 @@ bk
bk
bk
eM
-dM
+we
bj
bV
kZ
@@ -17029,7 +16971,7 @@ gN
lE
gN
gN
-dN
+dO
gN
cA
cA
@@ -17353,7 +17295,7 @@ cA
cA
cA
cA
-CO
+cA
cA
tA
cA
@@ -20438,7 +20380,7 @@ gN
gN
gN
gN
-dN
+dO
gN
gN
gN
@@ -20483,7 +20425,7 @@ fS
fS
fS
Ht
-fu
+gP
fS
aL
aN
@@ -20734,7 +20676,7 @@ gN
gN
gN
gN
-dN
+dO
gN
gN
cJ
diff --git a/maps/groundbase/gb-misc.dmm b/maps/groundbase/gb-misc.dmm
index ce9b700077..1e390bb6d7 100644
--- a/maps/groundbase/gb-misc.dmm
+++ b/maps/groundbase/gb-misc.dmm
@@ -2571,6 +2571,9 @@
/obj/effect/floor_decal/sign/small_8,
/turf/simulated/floor/holofloor/wood,
/area/holodeck/source_chess)
+"pK" = (
+/turf/unsimulated/map/edge,
+/area/space)
"pT" = (
/turf/simulated/floor/holofloor/bmarble,
/area/holodeck/source_chess)
@@ -2789,6 +2792,9 @@
"CK" = (
/turf/simulated/floor/holofloor/wmarble,
/area/holodeck/source_chess)
+"CW" = (
+/turf/unsimulated/map,
+/area/space)
"Dh" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
@@ -2989,6 +2995,10 @@
"RV" = (
/turf/unsimulated/ai_visible,
/area/ai_multicam_room)
+"Sd" = (
+/obj/effect/overmap/bluespace_rift,
+/turf/unsimulated/map,
+/area/space)
"Sj" = (
/obj/structure/bed/chair/holochair{
dir = 8
@@ -3125,6 +3135,10 @@
},
/turf/simulated/floor/holofloor/carpet,
/area/holodeck/source_game_room)
+"YU" = (
+/obj/effect/overmap/bluespace_rift,
+/turf/unsimulated/map,
+/area/overmap)
"YX" = (
/obj/effect/floor_decal/sign/small_e,
/turf/simulated/floor/holofloor/wood,
@@ -3242,43 +3256,6 @@ jZ
jZ
jZ
jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
ap
jZ
jZ
@@ -3306,6 +3283,43 @@ jZ
jZ
jZ
jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
"}
(2,1,1) = {"
tD
@@ -3383,43 +3397,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -3447,6 +3424,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(3,1,1) = {"
@@ -3525,43 +3539,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -3589,6 +3566,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(4,1,1) = {"
@@ -3667,43 +3681,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -3731,6 +3708,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(5,1,1) = {"
@@ -3809,43 +3823,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -3873,6 +3850,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(6,1,1) = {"
@@ -3951,43 +3965,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4015,6 +3992,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(7,1,1) = {"
@@ -4093,43 +4107,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4157,6 +4134,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(8,1,1) = {"
@@ -4235,43 +4249,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4299,6 +4276,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(9,1,1) = {"
@@ -4377,43 +4391,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4441,6 +4418,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(10,1,1) = {"
@@ -4519,43 +4533,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4583,6 +4560,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(11,1,1) = {"
@@ -4661,43 +4675,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4725,6 +4702,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(12,1,1) = {"
@@ -4803,43 +4817,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -4867,6 +4844,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(13,1,1) = {"
@@ -4939,44 +4953,7 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
+YU
EA
EA
EA
@@ -5009,6 +4986,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(14,1,1) = {"
@@ -5087,43 +5101,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -5151,6 +5128,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(15,1,1) = {"
@@ -5229,43 +5243,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -5293,6 +5270,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(16,1,1) = {"
@@ -5371,43 +5385,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -5435,6 +5412,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(17,1,1) = {"
@@ -5513,43 +5527,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -5577,6 +5554,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(18,1,1) = {"
@@ -5655,43 +5669,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -5719,6 +5696,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(19,1,1) = {"
@@ -5797,43 +5811,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -5861,6 +5838,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(20,1,1) = {"
@@ -5939,43 +5953,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -6003,6 +5980,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(21,1,1) = {"
@@ -6081,43 +6095,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -6145,6 +6122,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(22,1,1) = {"
@@ -6223,43 +6237,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -6287,6 +6264,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(23,1,1) = {"
@@ -6365,43 +6379,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -6429,6 +6406,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(24,1,1) = {"
@@ -6507,43 +6521,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -6571,6 +6548,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(25,1,1) = {"
@@ -6636,6 +6650,7 @@ aa
ap
ap
ap
+<<<<<<< HEAD
jZ
EA
EA
@@ -6686,7 +6701,7 @@ EA
EA
EA
EA
-jZ
+=======
ap
jZ
jZ
@@ -6701,17 +6716,70 @@ jZ
jZ
jZ
jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
+ap
jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
jZ
"}
@@ -6778,6 +6846,25 @@ aa
ap
ap
ap
+<<<<<<< HEAD
+=======
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
EA
EA
@@ -6828,6 +6915,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -6856,6 +6944,20 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(27,1,1) = {"
ul
@@ -6920,6 +7022,7 @@ aa
ap
ap
ap
+<<<<<<< HEAD
jZ
EA
EA
@@ -6970,7 +7073,7 @@ EA
EA
EA
EA
-jZ
+=======
ap
jZ
jZ
@@ -6985,17 +7088,70 @@ jZ
jZ
jZ
jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
+ap
jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
jZ
"}
@@ -7075,43 +7231,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7139,6 +7258,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(29,1,1) = {"
@@ -7217,43 +7373,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7281,6 +7400,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(30,1,1) = {"
@@ -7359,43 +7515,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7423,6 +7542,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(31,1,1) = {"
@@ -7501,43 +7657,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7565,6 +7684,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(32,1,1) = {"
@@ -7643,43 +7799,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7707,6 +7826,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(33,1,1) = {"
@@ -7785,43 +7941,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7849,6 +7968,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(34,1,1) = {"
@@ -7927,43 +8083,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -7991,6 +8110,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(35,1,1) = {"
@@ -8069,43 +8225,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -8133,6 +8252,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(36,1,1) = {"
@@ -8211,43 +8367,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -8275,6 +8394,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(37,1,1) = {"
@@ -8353,43 +8509,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -8417,6 +8536,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(38,1,1) = {"
@@ -8489,44 +8645,7 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
+YU
EA
EA
EA
@@ -8559,6 +8678,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(39,1,1) = {"
@@ -8637,43 +8793,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -8701,6 +8820,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(40,1,1) = {"
@@ -8779,43 +8935,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -8843,6 +8962,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(41,1,1) = {"
@@ -8921,43 +9077,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -8985,6 +9104,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(42,1,1) = {"
@@ -9063,43 +9219,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9127,6 +9246,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(43,1,1) = {"
@@ -9205,43 +9361,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9269,6 +9388,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(44,1,1) = {"
@@ -9347,43 +9503,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9411,6 +9530,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(45,1,1) = {"
@@ -9489,43 +9645,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9553,6 +9672,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(46,1,1) = {"
@@ -9631,43 +9787,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9695,6 +9814,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(47,1,1) = {"
@@ -9773,43 +9929,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9837,6 +9956,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(48,1,1) = {"
@@ -9915,43 +10071,6 @@ EA
EA
EA
EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
-EA
jZ
ap
jZ
@@ -9979,6 +10098,43 @@ EA
EA
EA
EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
"}
(49,1,1) = {"
@@ -10058,43 +10214,6 @@ jZ
jZ
jZ
jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
ap
jZ
EA
@@ -10121,6 +10240,45 @@ EA
EA
EA
EA
+<<<<<<< HEAD
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
"}
(50,1,1) = {"
@@ -10202,6 +10360,7 @@ ap
ap
ap
ap
+<<<<<<< HEAD
ap
ap
ap
@@ -10238,6 +10397,8 @@ ap
ap
ap
ap
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
EA
EA
@@ -10263,6 +10424,45 @@ EA
EA
EA
EA
+<<<<<<< HEAD
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
"}
(51,1,1) = {"
@@ -10275,6 +10475,14 @@ ap
ap
ap
ap
+<<<<<<< HEAD
+ap
+ap
+ap
+ap
+ap
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
ap
ap
ap
@@ -10328,11 +10536,7 @@ ap
ap
ap
ap
-ap
-ap
-ap
-ap
-ap
+<<<<<<< HEAD
jZ
jZ
jZ
@@ -10405,6 +10609,85 @@ jZ
jZ
jZ
jZ
+=======
+ap
+ap
+ap
+ap
+ap
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
"}
(52,1,1) = {"
@@ -10475,6 +10758,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -10520,6 +10814,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -10548,6 +10843,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(53,1,1) = {"
as
@@ -10617,6 +10931,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -10662,6 +10987,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -10690,6 +11016,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(54,1,1) = {"
as
@@ -10759,6 +11104,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -10804,6 +11160,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -10832,6 +11189,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(55,1,1) = {"
as
@@ -10901,6 +11277,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -10946,6 +11333,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -10974,6 +11362,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(56,1,1) = {"
as
@@ -11043,6 +11450,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -11088,6 +11506,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -11116,6 +11535,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(57,1,1) = {"
as
@@ -11185,6 +11623,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+Sd
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -11230,6 +11679,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -11258,6 +11708,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(58,1,1) = {"
as
@@ -11327,6 +11796,17 @@ ap
ap
ap
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -11372,6 +11852,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -11400,6 +11881,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(59,1,1) = {"
as
@@ -11469,6 +11969,17 @@ El
El
El
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -11514,6 +12025,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -11542,6 +12054,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(60,1,1) = {"
as
@@ -11611,6 +12142,17 @@ El
El
El
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -11656,6 +12198,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -11684,6 +12227,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(61,1,1) = {"
as
@@ -11753,6 +12315,17 @@ iO
El
El
ap
+pK
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+CW
+pK
+ap
jZ
EA
EA
@@ -11798,6 +12371,7 @@ EA
EA
EA
EA
+<<<<<<< HEAD
jZ
ap
ap
@@ -11826,6 +12400,25 @@ ap
ap
ap
ap
+=======
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"}
(62,1,1) = {"
as
@@ -11895,6 +12488,7 @@ iO
El
El
ap
+<<<<<<< HEAD
jZ
EA
EA
@@ -11940,6 +12534,80 @@ EA
EA
EA
EA
+=======
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+pK
+ap
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
jZ
ap
ap
@@ -12037,6 +12705,7 @@ iO
El
El
ap
+<<<<<<< HEAD
jZ
EA
EA
@@ -12146,39 +12815,14 @@ fZ
fZ
fZ
xp
+=======
+ap
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
ap
ap
ap
-El
-El
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-El
-El
ap
+<<<<<<< HEAD
jZ
EA
EA
@@ -12288,39 +12932,14 @@ fZ
fZ
fZ
xp
+=======
+ap
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
ap
ap
ap
-El
-El
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-El
-El
ap
+<<<<<<< HEAD
jZ
EA
EA
@@ -12367,6 +12986,371 @@ EA
EA
EA
jZ
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+<<<<<<< HEAD
+=======
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
+"}
+(64,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dB
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+xp
+ap
+ap
+ap
+El
+El
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+El
+El
+ap
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+<<<<<<< HEAD
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+ap
+=======
+ap
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(65,1,1) = {"
+as
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dB
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+fZ
+xp
+ap
+ap
+ap
+El
+El
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+El
+El
+ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
ap
ap
ap
@@ -12464,51 +13448,51 @@ El
El
ap
jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
+ap
jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
-jZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
ap
ap
ap
@@ -12605,42 +13589,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
ap
ap
@@ -12747,42 +13731,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -12889,42 +13873,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13031,42 +14015,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13173,42 +14157,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+YU
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+YU
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13315,42 +14299,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13457,42 +14441,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13599,42 +14583,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13741,42 +14725,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -13883,42 +14867,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -14025,42 +15009,42 @@ iO
El
El
ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+EA
+jZ
ap
eI
eI
@@ -14167,42 +15151,42 @@ iO
El
El
ap
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
+jZ
ap
eI
eI
diff --git a/maps/groundbase/gb-z1.dmm b/maps/groundbase/gb-z1.dmm
index fa8d731bb8..fddace55f1 100644
--- a/maps/groundbase/gb-z1.dmm
+++ b/maps/groundbase/gb-z1.dmm
@@ -445,7 +445,11 @@ lel
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/turf/simulated/wall/r_wall,
+/obj/machinery/computer/guestpass{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"bi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/purple,
@@ -5724,7 +5728,7 @@ lel
/turf/simulated/floor/outdoors/sidewalk/slab,
/area/groundbase/level1/centsquare)
"nO" = (
-/obj/machinery/suit_cycler,
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"nP" = (
@@ -8241,8 +8245,9 @@ lel
phorontanks = 0
},
/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = -2
},
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
@@ -8589,6 +8594,24 @@ lel
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/outdoors/sidewalk,
/area/groundbase/level1/westspur)
+"uz" = (
+/obj/machinery/suit_cycler/exploration,
+/obj/effect/floor_decal/industrial/outline{
+ color = "#5c00ad"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/gateway)
+"uA" = (
+/obj/item/weapon/paper_bin{
+ pixel_y = 7
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/pen,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
"uB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -9479,11 +9502,39 @@ lel
/turf/simulated/wall,
/area/groundbase/civilian/arrivals)
"wI" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
/obj/machinery/status_display{
pixel_y = 32
},
@@ -10014,7 +10065,10 @@ lel
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/ai/chamber)
"xJ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"xK" = (
@@ -11168,6 +11222,14 @@ lel
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/lobby)
+"An" = (
+/obj/structure/table/rack/shelf,
+/obj/item/device/cataloguer,
+/obj/item/device/cataloguer,
+/obj/item/device/cataloguer/compact,
+/obj/item/device/cataloguer/compact,
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
"Ao" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/gunbox{
@@ -12199,11 +12261,20 @@ lel
},
/area/groundbase/level1/northspur)
"CN" = (
+<<<<<<< HEAD
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/tcomms)
+=======
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/mineral/equipment_vendor/survey,
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"CO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/green{
dir = 9
@@ -12300,9 +12371,18 @@ lel
/turf/simulated/floor/tiled/techmaint,
/area/groundbase/command/tcomms/storage)
"CZ" = (
+<<<<<<< HEAD
/obj/machinery/holoplant,
/turf/simulated/floor/tiled/techfloor/grid,
/area/groundbase/command/tcomms)
+=======
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"Db" = (
/turf/simulated/floor/outdoors/newdirt,
/area/groundbase/level1/southeastspur)
@@ -12402,12 +12482,16 @@ lel
layer = 2.9
},
/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical,
-/obj/item/clothing/head/helmet/space/void/medical,
/obj/machinery/door/window/brigdoor{
req_access = list(5)
},
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
/turf/simulated/floor/tiled/dark,
/area/groundbase/civilian/gateway)
"Dq" = (
@@ -12927,6 +13011,7 @@ lel
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
"Ez" = (
+<<<<<<< HEAD
/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/bluegrid{
name = "Mainframe Base";
@@ -12935,6 +13020,12 @@ lel
temperature = 80
},
/area/groundbase/command/tcomms)
+=======
+/obj/machinery/suit_cycler/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/gateway)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"EA" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light{
@@ -13014,6 +13105,14 @@ lel
},
/turf/simulated/floor,
/area/groundbase/civilian/cafe)
+"EN" = (
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/obj/machinery/suit_cycler/medical,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/gateway)
"EO" = (
/obj/machinery/light/bigfloorlamp,
/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
@@ -15593,6 +15692,11 @@ lel
},
/turf/simulated/floor/tiled/dark,
/area/groundbase/security/briefing)
+"KQ" = (
+/obj/machinery/suit_cycler/security,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/gateway)
"KR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
@@ -15758,8 +15862,23 @@ lel
/turf/simulated/floor/carpet/sblucarpet,
/area/groundbase/security/hos)
"Li" = (
+<<<<<<< HEAD
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
+=======
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
+"Lj" = (
+/obj/structure/bed/chair/backed_red{
+ dir = 4
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
},
/obj/machinery/alarm{
dir = 8
@@ -16524,6 +16643,10 @@ lel
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/groundbase/engineering/workshop)
+"MV" = (
+/obj/machinery/chemical_analyzer,
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
"MW" = (
/obj/item/weapon/stool/baystool/padded{
dir = 8
@@ -17061,6 +17184,26 @@ lel
outdoors = 0
},
/area/maintenance/groundbase/level1/nwtunnel)
+"Oi" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/device/bluespaceradio/groundbase_prelinked,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(43)
+ },
+/obj/item/device/mapping_unit,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/gateway)
"Oj" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -17448,6 +17591,34 @@ lel
/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
>>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
/area/groundbase/level1/southeastspur)
+"Pq" = (
+/obj/structure/table/rack/shelf,
+/obj/item/stack/marker_beacon/thirty{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/stack/marker_beacon/thirty{
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/item/device/gps{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/obj/item/device/gps{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/obj/item/device/gps{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/device/gps{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled,
+/area/groundbase/civilian/gateway)
"Pr" = (
/obj/structure/bed/chair/sofa/bench{
dir = 1
@@ -17621,13 +17792,7 @@ lel
/turf/simulated/floor/lino,
/area/groundbase/civilian/bar)
"PP" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
"PQ" = (
@@ -17957,6 +18122,7 @@ lel
/obj/structure/sign/painting/public{
pixel_x = -30
},
+<<<<<<< HEAD
/turf/simulated/floor/wood,
/area/groundbase/civilian/gameroom)
"QG" = (
@@ -17970,6 +18136,13 @@ lel
temperature = 80
},
/area/groundbase/command/tcomms)
+=======
+/obj/machinery/camera/network/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/groundbase/civilian/arrivals)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"QH" = (
/obj/structure/table/reinforced,
/obj/item/device/sleevemate,
@@ -19419,6 +19592,13 @@ lel
dir = 1
},
/obj/effect/floor_decal/corner/pink/full,
+<<<<<<< HEAD
+=======
+/obj/machinery/vending/wallmed1/public{
+ dir = 1;
+ pixel_y = -28
+ },
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/turf/simulated/floor/tiled/white,
/area/groundbase/civilian/womensrestroom)
"TW" = (
@@ -19844,6 +20024,11 @@ lel
},
/turf/simulated/wall/r_wall,
/area/groundbase/command/ai/chamber)
+"Vf" = (
+/obj/machinery/suit_cycler,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/groundbase/civilian/gateway)
"Vg" = (
/obj/structure/bed/chair/office/dark{
dir = 4
@@ -20400,12 +20585,8 @@ lel
},
/area/maintenance/groundbase/level1/nwtunnel)
"WC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/computer/guestpass{
- dir = 1;
- pixel_y = -22
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/groundbase/civilian/gateway)
@@ -20516,6 +20697,11 @@ lel
/turf/simulated/floor/tiled/techfloor,
/area/groundbase/civilian/arrivals)
"WN" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
/obj/machinery/firealarm{
dir = 4
},
@@ -20594,10 +20780,14 @@ lel
dir = 8;
layer = 2.9
},
-/obj/item/clothing/mask/breath,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical,
-/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
/obj/machinery/door/window/brigdoor/eastright{
req_access = list(5)
},
@@ -29656,8 +29846,8 @@ lE
sw
pD
XV
-AZ
-AZ
+lE
+lE
Dt
aC
SQ
@@ -29796,10 +29986,10 @@ lE
Dp
WY
jW
-XS
+Oi
hB
-AZ
-AZ
+gO
+MV
Dt
CK
SQ
@@ -29938,10 +30128,10 @@ fC
pB
pB
aG
-WC
+pB
bh
-AZ
-AZ
+XS
+Vf
Dt
cq
KE
@@ -30080,10 +30270,10 @@ kg
KG
XS
GO
-nO
-lE
-AZ
-AZ
+XS
+XS
+XS
+Ez
Dt
Dt
Dt
@@ -30223,10 +30413,10 @@ MC
KM
FH
PP
+PP
+xJ
+EN
lE
-AZ
-AZ
-Eb
Eb
Eb
Eb
@@ -30364,11 +30554,11 @@ Ek
WZ
XS
kK
-nO
+XS
+XS
+WC
+KQ
lE
-AZ
-AZ
-AZ
Eb
Eb
Eb
@@ -30506,11 +30696,11 @@ XS
FN
XS
kK
-xJ
+XS
+XS
+WC
+uz
lE
-AZ
-Eb
-Eb
Eb
Eb
Nv
@@ -30640,19 +30830,19 @@ MO
MO
lE
wI
-nR
-XS
-XS
-XS
+CN
+An
+Pq
+uA
WN
FN
nR
av
tH
+nO
+Li
+CZ
lE
-AZ
-Eb
-Eb
Eb
Eb
Nv
@@ -30792,9 +30982,9 @@ lE
rl
lE
lE
-Eb
-Eb
-Eb
+lE
+lE
+lE
Eb
Eb
Eb
diff --git a/maps/groundbase/gb-z2.dmm b/maps/groundbase/gb-z2.dmm
index da6606db76..02ba5e325b 100644
--- a/maps/groundbase/gb-z2.dmm
+++ b/maps/groundbase/gb-z2.dmm
@@ -1,37847 +1 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "rd_office"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/science/rd)
-"ab" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"ad" = (
-/obj/structure/bed/chair/office/light{
- dir = 1
- },
-/obj/effect/landmark/start/rd,
-/obj/machinery/button/windowtint{
- id = "rd_office";
- layer = 3.3;
- pixel_x = 16;
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"af" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/medical/triage)
-"ag" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/picnic)
-"ai" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"ak" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"am" = (
-/obj/item/toy/figure/mime,
-/obj/item/weapon/pen/crayon/marker/mime,
-/obj/item/weapon/pen/crayon/mime,
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"an" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/meeting)
-"ao" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"ap" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Medical";
- sortType = "Medical"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"ar" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"as" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"at" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"au" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-<<<<<<< HEAD
-=======
-"av" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1
- },
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"aw" = (
-/obj/machinery/firework_launcher,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
->>>>>>> 5dad1cf58a... Merge pull request #14245 from Heroman3003/firework-stuff
-"ax" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"ay" = (
-/obj/structure/cable/yellow,
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"az" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/science/picnic)
-"aA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"aB" = (
-/obj/structure/closet/secure_closet/scientist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"aC" = (
-/obj/structure/railing/grey,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/northspur)
-"aD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"aE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"aF" = (
-/obj/machinery/atm{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"aH" = (
-/obj/structure/table/glass,
-/obj/item/device/antibody_scanner,
-/obj/item/device/antibody_scanner{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"aI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"aJ" = (
-/obj/structure/sign/painting/public{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"aM" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"aN" = (
-/obj/machinery/fitness/punching_bag/clown,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"aO" = (
-/obj/machinery/requests_console{
- department = "Janitorial";
- dir = 8;
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"aP" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"aQ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"aR" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/red{
- pixel_y = 4
- },
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/pen,
-/obj/item/weapon/paper_bin{
- pixel_y = 7
- },
-/obj/item/device/radio{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"aS" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"aT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"aU" = (
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"aV" = (
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder,
-/obj/item/device/tape/random,
-/obj/item/device/camera,
-/obj/item/device/retail_scanner/civilian,
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"aW" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"aX" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"aY" = (
-/obj/machinery/papershredder,
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"aZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"ba" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/circuits)
-"bb" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"bc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/fitness/punching_bag/clown,
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"be" = (
-/obj/structure/table/fancyblack,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"bf" = (
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_x = -30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"bg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"bh" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"bi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"bj" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"bk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"bl" = (
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"bn" = (
-/obj/machinery/door/airlock{
- id_tag = null;
- name = "Restroom"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/bathroom)
-"bo" = (
-/obj/item/weapon/bedsheet/green,
-/obj/structure/bed/padded,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"bp" = (
-/obj/structure/fence{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"br" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"bs" = (
-/obj/machinery/smartfridge/secure/virology,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"bu" = (
-/obj/machinery/door/airlock/freezer{
- name = "Kitchen";
- req_access = list(28)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/kitchen)
-"bv" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- id_tag = "mentaldoor";
- name = "Mental Health";
- req_access = list(64)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/psych)
-"bx" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/chemist,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"by" = (
-/obj/machinery/suit_cycler/captain,
-/obj/machinery/keycard_auth{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"bz" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"bA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/item_bank{
- pixel_y = 25
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"bB" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"bC" = (
-/obj/item/weapon/book/manual/virology,
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"bD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/research{
- name = "Robotics Resleeving"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/robotics)
-"bE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"bF" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"bG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"bI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"bL" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"bM" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"bN" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room8)
-"bO" = (
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"bP" = (
-/obj/item/clothing/glasses/omnihud/all,
-/obj/structure/closet/secure_closet/captains,
-/obj/item/weapon/disk/nuclear{
- name = "authentication disk"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"bQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"bS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"bT" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/civilian/hydroponics)
-"bU" = (
-/obj/effect/landmark/start/chaplain,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"bV" = (
-/obj/structure/closet/l3closet/scientist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"bW" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"bX" = (
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"bY" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"bZ" = (
-/obj/machinery/button/remote/blast_door{
- id = "rndshutters";
- name = "Privacy Shutter Control";
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"ca" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"cc" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Research and Development";
- req_one_access = list(7)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/robotics)
-"cd" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"cf" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/folder/blue,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = -13;
- pixel_y = 7
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"ci" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- name = "Medical";
- req_one_access = null
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/medical/lobby)
-"cj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"ck" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/status_display/supply_display{
- pixel_x = -32
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"cl" = (
-/obj/structure/table/bench/padded,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"cm" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"cn" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen4";
- name = "Pen 4 Containment";
- pixel_y = 38;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv2";
- name = "Divider";
- pixel_y = 27;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"co" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"cp" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"cq" = (
-/mob/living/simple_mob/vore/alienanimals/catslug/custom/scienceslug{
- ghostjoin = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"cr" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"cs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"ct" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/robotics)
-"cv" = (
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/xenoflora/full,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"cx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_x = 16;
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"cy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"cA" = (
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"cB" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"cC" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"cD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"cE" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"cF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"cG" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"cI" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"cK" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/unexplored/outdoors)
-"cM" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"cN" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/closet/walllocker_double/east,
-/obj/item/device/defib_kit/jumper_kit,
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/weapon/book/manual/robotics_cyborgs,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"cO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"cP" = (
-/obj/structure/table/borosilicate,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/picnic)
-"cQ" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"cR" = (
-/turf/simulated/wall,
-/area/groundbase/medical/triage)
-"cS" = (
-/obj/machinery/vending/weeb,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/science/picnic)
-"cT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"cU" = (
-/obj/structure/table/bench/padded,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"cV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/se)
-"cW" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"cX" = (
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"cY" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen5";
- name = "Pen 5 Containment";
- pixel_y = -38;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiodiv3";
- name = "Divider";
- pixel_y = -27;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"cZ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"da" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"dd" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"de" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"df" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp{
- pixel_x = 2;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"dh" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"di" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"dj" = (
-/obj/structure/table/fancyblack,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"dk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"dl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"dm" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"do" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen2";
- name = "Pen 2 Containment";
- pixel_y = 38;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"dp" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
-"dq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/vending/nifsoft_shop,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"dr" = (
-/turf/simulated/open,
-/area/groundbase/medical/triage)
-"ds" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"dt" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"dv" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/multitool,
-/obj/fiftyspawner/steel,
-/obj/item/weapon/storage/belt/utility,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"dx" = (
-/obj/machinery/door/airlock{
- id_tag = "toilet1";
- name = "Toilet 1"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"dy" = (
-/obj/machinery/recharge_station,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/rnd)
-"dz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-<<<<<<< HEAD
-=======
-"dA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/computer/stockexchange{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"dB" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/storage/backpack,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
->>>>>>> bb172b1b12... Merge pull request #12837 from GhostActual/stock_market
-"dE" = (
-/turf/simulated/open,
-/area/groundbase/cargo/office)
-"dF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"dH" = (
-/obj/machinery/status_display/supply_display,
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"dI" = (
-/obj/structure/bed/chair/sofa/corp{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"dK" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/command/hop)
-"dL" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/melee/chainofcommand,
-/obj/item/weapon/coin/phoron{
- desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo.";
- name = "limited edition phoron coin"
- },
-/obj/item/weapon/folder/blue_captain,
-/obj/item/weapon/stamp/captain,
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"dM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"dN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/rnd)
-"dS" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room4)
-"dT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"dU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Dorms"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/bmarble,
-/area/groundbase/dorms)
-"dV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"dW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"dX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"dY" = (
-/obj/structure/fence/door,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"ea" = (
-/obj/structure/stairs/spawner/west,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"ec" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"ee" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/science/server)
-"eg" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/folder/blue_hop,
-/obj/item/weapon/pen/multi{
- pixel_x = -2;
- pixel_y = 9
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"ei" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"ej" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/start/captain,
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"ek" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"el" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"em" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/captain,
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"en" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/medical/lobby)
-"eo" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/glass/beaker{
- pixel_x = 5
- },
-/obj/item/weapon/reagent_containers/food/condiment/enzyme{
- layer = 5
- },
-/obj/item/weapon/reagent_containers/food/condiment/enzyme{
- layer = 5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"ep" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/cook_guide,
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"eq" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"es" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"et" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
-"eu" = (
-/obj/structure/sign/painting/chapel_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"ev" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"ex" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"ey" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"eA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/captainq)
-"eB" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"eC" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/bathroom)
-"eD" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"eE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"eF" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 2;
- icon_state = "pdoor0";
- id = "bridge blast";
- layer = 1;
- name = "Bridge Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/groundbase/command/bridge)
-"eH" = (
-/obj/structure/sign/department/biblio,
-/turf/simulated/wall,
-/area/groundbase/civilian/library)
-"eJ" = (
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access = list(26)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/janitor)
-"eL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"eM" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"eN" = (
-/turf/simulated/open,
-/area/groundbase/level2/westspur)
-"eO" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 8
- },
-/obj/item/weapon/pen/blue{
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"eP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/landmark/start/cmo,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"eR" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"eS" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"eT" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"eU" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"eV" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"eX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"eY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"fa" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/masks,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"fb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"fc" = (
-/obj/machinery/computer/rdservercontrol{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"fe" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"ff" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"fg" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"fj" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"fk" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level2/se)
-"fl" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"fm" = (
-/obj/machinery/button/remote/airlock{
- dir = 8;
- id = "dorm5";
- pixel_x = 27;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"fn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"fo" = (
-/obj/structure/table/bench/sifwooden/padded,
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"fp" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/ne)
-"fq" = (
-/obj/machinery/camera/network/cargo{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"fr" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"fs" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"ft" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"fu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"fx" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/hyper{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"fy" = (
-/turf/simulated/wall,
-/area/groundbase/medical/psych)
-"fz" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/civilian/kitchen)
-"fB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"fC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"fD" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/nw)
-"fE" = (
-/obj/structure/sign/painting/library_private{
- pixel_y = 32
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"fF" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = -5;
- pixel_y = 10
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 6;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"fG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"fH" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"fI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-/area/groundbase/level2/nw)
-"fJ" = (
-/obj/machinery/light/small{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/lobby)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"fK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Janitor";
- sortType = "Janitor"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark/vines,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"fM" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"fN" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -32;
- req_access = list(39)
- },
-/obj/machinery/door/airlock/medical{
- frequency = 1379;
- id_tag = "virology_airlock_exterior";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access = list(39);
- req_one_access = null
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "virologyquar";
- layer = 1;
- name = "Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/medical/virology)
-"fO" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"fP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"fQ" = (
-/obj/effect/floor_decal/chapel,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"fS" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/captainq)
-"fT" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"fV" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"fW" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"fX" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level2/nw)
-"fY" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"fZ" = (
-/obj/structure/janitorialcart,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"ga" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"gd" = (
-/obj/machinery/r_n_d/protolathe{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/rnd)
-"ge" = (
-/obj/machinery/smartfridge/produce,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"gf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"gk" = (
-/obj/structure/table/standard,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/qm,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"gm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/sign/department/rnd{
- pixel_y = 32
- },
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor,
-/area/groundbase/science/rnd)
-"gn" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"go" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small/fairylights{
- pixel_y = -2
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"gq" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"gs" = (
-/turf/simulated/open,
-/area/groundbase/level2/southeastspur)
-"gt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"gu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"gv" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/beakers{
- name = "box of measuring cups";
- pixel_x = 2;
- pixel_y = 3;
- starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"gx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"gy" = (
-/obj/structure/filingcabinet,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"gz" = (
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_x = -30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"gA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"gB" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"gC" = (
-/obj/structure/bed/chair/sofa/bench{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/se)
-"gE" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"gF" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"gH" = (
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_one_access = list(35,28)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/hydroponics)
-"gI" = (
-/obj/machinery/vending/nifsoft_shop,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"gJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Command Meeting Room"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/meeting)
-"gK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"gL" = (
-/mob/living/simple_mob/vore/alienanimals/catslug/custom/cargoslug{
- ghostjoin = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"gM" = (
-/obj/structure/bed/chair/sofa/bench/left,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"gN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"gP" = (
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "dorm4";
- pixel_x = -27;
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"gQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"gR" = (
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"gT" = (
-/obj/machinery/firealarm,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"gU" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/landmark/start/commandsecretary,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"gV" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"gX" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "qm_office"
- },
-/turf/simulated/floor,
-/area/groundbase/cargo/qm)
-"gY" = (
-/obj/structure/bed/chair/sofa/corner/black,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"gZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/ne)
-"ha" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/open,
-/area/groundbase/level2/southeastspur)
-"hb" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"hc" = (
-/obj/structure/plasticflaps,
-/obj/machinery/disposal/deliveryChute,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"hd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"he" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"hh" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"hi" = (
-/obj/structure/table/standard,
-/obj/item/weapon/material/knife/butch,
-/obj/item/weapon/material/kitchen/rollingpin,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"hk" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"hl" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"hm" = (
-/obj/structure/bed/chair/sofa/black,
-/obj/machinery/alarm,
-/obj/effect/landmark/start/chef,
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"hp" = (
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"hr" = (
-/obj/machinery/station_map{
- dir = 8;
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"hs" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"ht" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"hv" = (
-/obj/structure/toilet,
-/obj/machinery/button/remote/airlock{
- id = "toilet1";
- pixel_x = -26;
- pixel_y = -4;
- specialfunctions = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"hw" = (
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "kitchenhallway";
- name = "Kitchen shutters";
- pixel_x = 27;
- pixel_y = 6
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30;
- pixel_y = -3
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"hx" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"hy" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"hz" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30;
- pixel_y = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"hA" = (
-/obj/structure/table/woodentable,
-/obj/machinery/chemical_dispenser/bar_soft/full{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"hC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/landmark/vines,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"hD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"hH" = (
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"hI" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"hJ" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"hK" = (
-/obj/structure/table/glass,
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"hL" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"hM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/civilian/chapel)
-"hP" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"hQ" = (
-/obj/machinery/seed_storage/garden,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"hS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"hT" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"hU" = (
-/obj/machinery/button/remote/blast_door{
- id = "rndshutters";
- name = "Privacy Shutter Control";
- pixel_y = 30
- },
-/obj/machinery/computer/rdconsole/robotics,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"hV" = (
-/obj/structure/table/standard,
-/obj/machinery/microwave,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"hX" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"hY" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_y = -32
- },
-/obj/machinery/atm{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"hZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"ia" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/captainq)
-"ib" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"ic" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"if" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/command/hop)
-"ih" = (
-/obj/structure/table/woodentable,
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_y = 7
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"ii" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"ik" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"il" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"im" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"in" = (
-/obj/structure/sign/painting/library_private{
- pixel_x = 32
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"io" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/smartfridge/chemistry,
-/turf/simulated/floor/plating,
-/area/groundbase/medical/Chemistry)
-"ip" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"ir" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"is" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/research{
- frequency = 1379;
- id_tag = "xenobio_airlock_exterior";
- locked = 1;
- name = "Xenobiology Lab";
- req_access = list(47,55)
- },
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "xenobio_airlock_control";
- name = "Xenobiology Access Button";
- pixel_x = -32;
- req_access = null;
- req_one_access = list(47,55)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/xenobiology)
-"it" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/xenobiology)
-"iu" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"iw" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/level2/ne)
-"ix" = (
-/obj/structure/railing/grey,
-/turf/simulated/open,
-/area/groundbase/level2/southeastspur)
-"iy" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/item/weapon/folder/white,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"iz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"iA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"iB" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/landmark/start/intern,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"iC" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/hop)
-"iD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
-"iE" = (
-/obj/structure/bed/chair/comfy/brown,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"iF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"iG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-<<<<<<< HEAD
-=======
-"iH" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/westspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"iI" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"iJ" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"iK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/floortube{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"iL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"iM" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm2";
- name = "Room 2"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room2)
-"iN" = (
-/obj/machinery/requests_console{
- department = "Service";
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"iO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/floortube{
- dir = 1;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"iP" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"iQ" = (
-/obj/structure/disposalpipe/trunk,
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"iT" = (
-/obj/structure/filingcabinet/filingcabinet,
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"iV" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30;
- pixel_y = 16
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"iW" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/civilian/mime)
-"iX" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"iY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/civilian/mime)
-"iZ" = (
-/obj/structure/bed/chair/comfy/blue,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"ja" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 5;
- dir = 8;
- name = "Research Director RC";
- pixel_x = 22;
- pixel_y = -2
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"jb" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm1";
- name = "Room 1"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room1)
-"jc" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"jd" = (
-/obj/effect/mouse_hole_spawner,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"je" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level2/se)
-"jf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"jg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"jh" = (
-/obj/structure/sign/painting/chapel_secure{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"ji" = (
-/obj/effect/landmark/start/botanist,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"jk" = (
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"jl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"jm" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"jn" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room7)
-"jo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/hop)
-"jp" = (
-/obj/structure/bed/chair/sofa/corp,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"jq" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"jr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"js" = (
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"jt" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"jv" = (
-/obj/machinery/appliance/cooker/grill,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"jw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"jx" = (
-<<<<<<< HEAD
-/obj/structure/bed/chair/wood/wings,
-/obj/effect/landmark/start/chaplain,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-=======
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- dir = 1;
- name = "shower door"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/room2)
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
-"jy" = (
-/obj/machinery/gibber,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"jz" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"jA" = (
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"jB" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"jC" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room2)
-"jF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"jG" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/sw)
-"jH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"jI" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/effect/landmark/start/psych,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"jJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"jK" = (
-/obj/machinery/medical_kiosk,
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"jL" = (
-/obj/machinery/processor,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"jM" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm8";
- name = "Room 8"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room8)
-"jN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"jP" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"jQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"jR" = (
-/obj/structure/sign/directions/evac{
- dir = 8;
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/sign/directions/stairs_down{
- dir = 8;
- pixel_x = 32;
- pixel_y = -26
- },
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"jS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"jT" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"jU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Research"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/picnic)
-"jV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/wall/r_wall,
-/area/rnd/xenobiology)
-"jW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"jX" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"jY" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/cargo/office)
-=======
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ka" = (
-/obj/structure/sign/directions/stairs_up{
- dir = 8;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/evac{
- dir = 8;
- pixel_x = -32
- },
-<<<<<<< HEAD
-/obj/structure/sign/directions/science/exploration{
- dir = 8;
- pixel_x = -32;
- pixel_y = -6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/groundbase/level2/nw)
-"kb" = (
-/obj/machinery/disease2/diseaseanalyser,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"kc" = (
-/obj/machinery/disease2/incubator,
-/obj/structure/reagent_dispensers/virusfood{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"kd" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"ke" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"kf" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"ki" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/medical/Chemistry)
-"kj" = (
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"kk" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"kl" = (
-/obj/structure/disposalpipe/down{
- dir = 1
- },
-/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"kn" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"ko" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/sleep_console{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"kp" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/item/weapon/shovel/spade,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/stack/material/sandstone{
- amount = 5
- },
-/obj/item/device/retail_scanner/civilian,
-/obj/item/device/multitool,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"kq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"kr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"ks" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level2/ne)
-"kt" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"ku" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"ky" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"kz" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen7";
- name = "Pen 7 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"kA" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"kC" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"kE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/commandsecretary,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"kG" = (
-/obj/structure/railing/grey,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"kH" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room3)
-"kI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"kJ" = (
-/obj/structure/sign/painting/library_secure{
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"kK" = (
-/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = -1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"kL" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm3";
- name = "Room 3"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room3)
-"kN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/floortube{
- pixel_y = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"kP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"kQ" = (
-/obj/effect/landmark{
- name = "maint_pred"
- },
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/groundbase/level2/se)
-"kR" = (
-/obj/random/mob/bird,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"kT" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/device/megaphone,
-/obj/item/weapon/paper/monitorkey,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"kU" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"kV" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-<<<<<<< HEAD
-=======
-"kX" = (
-/obj/structure/table/glass,
-/obj/machinery/recharger{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
->>>>>>> b7b3ae73e0... Merge pull request #12838 from Very-Soft/gbwilds
-"kY" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"kZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "cirshutters";
- name = "Privacy Shutters"
- },
-/obj/machinery/door/window/brigdoor/westleft{
- name = "Circuitry Workshop";
- req_access = list(7)
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/circuits)
-"la" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow,
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Command Subgrid";
- name_tag = "Command Subgrid"
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"lb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"lc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"ld" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"le" = (
-/obj/structure/sign/painting/chapel_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"lf" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"lh" = (
-/obj/machinery/computer/arcade{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"lj" = (
-/obj/structure/table/glass,
-/obj/item/device/radio{
- anchored = 1;
- canhear_range = 7;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- name = "Virology Emergency Phone";
- pixel_y = 9
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"lk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/groundbase/level2/ne)
-"ll" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"lm" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"ln" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/civilian/mime)
-"lp" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/chemist,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"lq" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"lr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"ls" = (
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"lu" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"lv" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"lw" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"lx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"lz" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"lA" = (
-/obj/structure/sign/painting/chapel_secure{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"lC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"lD" = (
-/obj/structure/displaycase,
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"lF" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/wall/r_wall,
-/area/maintenance/groundbase/substation/command)
-"lG" = (
-/obj/structure/sign/nanotrasen{
- pixel_y = 32
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/command/hop)
-"lH" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/chemist,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/vending/wallmed2{
- dir = 4;
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"lI" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"lJ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"lK" = (
-/obj/structure/table/standard,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"lL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"lM" = (
-/obj/machinery/light/small/fairylights,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"lN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"lO" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/landmark/start/xenobio,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"lP" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"lQ" = (
-/obj/effect/landmark/vines,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"lT" = (
-/obj/structure/cable/yellow{
- icon_state = "32-8"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 8
- },
-/turf/simulated/wall,
-/area/groundbase/medical/triage)
-"lU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"lV" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/xenobot)
-"lW" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/picnic)
-"lX" = (
-/obj/effect/floor_decal/chapel,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"lY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Temple of Silence";
- req_access = list(138)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/mime)
-"lZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"mb" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"md" = (
-/obj/machinery/computer/mecha{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"me" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"mi" = (
-/obj/machinery/computer/med_data{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"mj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/cargo/office)
-"mk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"ml" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"mm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"mn" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"mo" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Library"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"mp" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"mq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/groundbase/cargo/office)
-"mr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"mt" = (
-/obj/machinery/computer/security/xenobio,
-/obj/machinery/camera/network/research/xenobio,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"mu" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm4";
- name = "Room 4"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room4)
-"mv" = (
-/obj/structure/sign/department/medbay,
-/turf/simulated/wall,
-/area/groundbase/medical/lobby)
-"mw" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"mx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"my" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_circuit_printer,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"mz" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"mB" = (
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"mC" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"mE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/skills{
- dir = 8;
- pixel_y = 7
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"mF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"mG" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"mH" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"mJ" = (
-/obj/effect/landmark/start/chaplain,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"mK" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = 32;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"mL" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"mM" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/random/coin/sometimes,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"mN" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"mO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"mP" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/xenobot)
-"mQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Power Substation";
- req_access = list(11)
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"mR" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"mS" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"mT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"mU" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"mW" = (
-/obj/item/weapon/storage/box/botanydisk,
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/botanydisk,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/material/minihoe,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"mX" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"mY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"mZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "cirshutters";
- name = "Privacy Shutters"
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Circuitry Workshop";
- req_access = list(7)
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/circuits)
-"nd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"nf" = (
-/obj/structure/table/wooden_reinforced,
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"ng" = (
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"nh" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"ni" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level2/ne)
-"nk" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"nl" = (
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/item/stack/material/plasteel{
- amount = 10
- },
-/obj/structure/closet/walllocker_double/east{
- dir = 2;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/steel,
-/area/groundbase/science/robotics)
-"nm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/command{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/server)
-"nn" = (
-/obj/structure/table/woodentable,
-/obj/machinery/librarycomp,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"no" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/captainq)
-"np" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"nt" = (
-/obj/item/weapon/stamp/rd,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"nv" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"nw" = (
-/obj/machinery/vending/wardrobe/robodrobe,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"nx" = (
-/obj/machinery/computer/diseasesplicer{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"ny" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"nz" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_y = 12
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/captainq)
-"nA" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"nC" = (
-/mob/living/simple_mob/vore/alienanimals/catslug/custom/capslug{
- ghostjoin = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"nD" = (
-/obj/machinery/disposal/wall{
- dir = 8;
- name = "auto-resleeving equipment deposit"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"nE" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"nF" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"nH" = (
-/obj/structure/stairs/spawner/south,
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"nI" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen8";
- name = "Pen 8 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 1;
- name = "Slime Pen";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"nJ" = (
-/obj/structure/table/wooden_reinforced,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"nK" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"nM" = (
-/obj/structure/bed/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"nN" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"nP" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"nR" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"nS" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"nT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"nV" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"nW" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"nX" = (
-/obj/machinery/computer/station_alert/all{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"nY" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"oa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/cargo/office)
-"od" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = 32;
- req_access = list(39)
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- frequency = 1379;
- id_tag = "virology_airlock_interior";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access = list(39);
- req_one_access = null
- },
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "virologyquar";
- layer = 1;
- name = "Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"oe" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"of" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"oh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"ok" = (
-/obj/machinery/light,
-/obj/machinery/vending/blood,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"ol" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"om" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"on" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/hop)
-"oo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/smartfridge/sheets/persistent_lossy,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"op" = (
-/obj/machinery/light,
-/obj/machinery/suspension_gen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"oq" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"ot" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/device/megaphone,
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"ov" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"ow" = (
-/obj/structure/closet/wardrobe/captain,
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"ox" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-<<<<<<< HEAD
-=======
-"oy" = (
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level2/se)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"oA" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv3";
- layer = 8;
- name = "Divider"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"oB" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"oC" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = 27
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"oD" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/lobby)
-"oE" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"oF" = (
-/turf/simulated/floor/outdoors/newdirt{
- outdoors = 0
- },
-/area/groundbase/level2/se)
-"oG" = (
-/obj/machinery/light/small/fairylights{
- pixel_y = -1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"oH" = (
-/turf/simulated/open,
-/area/groundbase/level2/eastspur)
-"oI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"oL" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"oM" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen8";
- name = "Pen 8 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"oN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"oO" = (
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"oS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"oT" = (
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- dir = 4;
- id = "virologyquar";
- name = "Virology Emergency Lockdown Control";
- pixel_x = -28;
- pixel_y = 5;
- req_access = list(5)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"oU" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"oW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"oX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/medical/virology)
-"oY" = (
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"oZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge";
- req_access = list(19)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/command/bridge)
-"pd" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "packageSort1"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/cargo/office)
-"pe" = (
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"pf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"pg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"ph" = (
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/obj/machinery/r_n_d/circuit_imprinter{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/rnd)
-"pi" = (
-/obj/structure/filingcabinet/medical{
- desc = "A large cabinet with hard copy medical records.";
- name = "Medical Records"
- },
-/obj/machinery/light,
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"pj" = (
-/obj/structure/table/fancyblack,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"pk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"pl" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"pm" = (
-/obj/structure/table/fancyblack,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"pn" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Command Conf Room"
- },
-/obj/machinery/camera/network/command{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"pp" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"pq" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen7";
- name = "Pen 7 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"ps" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"pt" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/rnd)
-"pu" = (
-/obj/structure/table/glass,
-/obj/machinery/photocopier/faxmachine{
- department = "Research Director's Office";
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"pv" = (
-/obj/machinery/power/apc/hyper{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"pw" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/nw)
-"pz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"pA" = (
-/obj/structure/table/hardwoodtable,
-/obj/random/paicard,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"pB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"pC" = (
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/anomaly_spectroscopy,
-/obj/item/weapon/book/manual/anomaly_testing,
-/obj/item/weapon/book/manual/materials_chemistry_analysis,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"pD" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2;
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"pE" = (
-/obj/item/slime_extract/grey,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"pG" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"pH" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = 32
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"pI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"pJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Kitchen";
- sortType = "Kitchen"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"pK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"pM" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"pN" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/command{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"pP" = (
-/obj/machinery/transhuman/synthprinter,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-<<<<<<< HEAD
-=======
-"pT" = (
-/obj/machinery/suspension_gen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"pU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Chapel Office";
- req_access = list(27)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/civilian/chapel)
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
-"pV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/xenohall)
-"pW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"pX" = (
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"qa" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/hall)
-"qb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"qd" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = 32;
- pixel_y = -32
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/se)
-"qe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/command/bridge)
-"qf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"qg" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/captain)
-"qh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"qj" = (
-/obj/effect/floor_decal/chapel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"qk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/landmark/start/roboticist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"ql" = (
-/obj/structure/bed/chair/sofa/corp{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"qn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"qo" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"qp" = (
-/obj/machinery/computer/arcade{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"qq" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/robotics)
-"qr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"qs" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"qt" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"qu" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"qv" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"qw" = (
-/obj/structure/bookcase{
- name = "bookcase (Reference)"
- },
-/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch,
-/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance,
-/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures,
-/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide,
-/obj/item/weapon/book/custom_library/reference/securityguidelines,
-/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization,
-/obj/item/weapon/book/manual/anomaly_spectroscopy,
-/obj/item/weapon/book/manual/anomaly_testing,
-/obj/item/weapon/book/manual/atmospipes,
-/obj/item/weapon/book/manual/bar_guide,
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/item/weapon/book/manual/casino,
-/obj/item/weapon/book/manual/chef_recipes,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/cook_guide,
-/obj/item/weapon/book/manual/detective,
-/obj/item/weapon/book/manual/engineering_construction,
-/obj/item/weapon/book/manual/engineering_guide,
-/obj/item/weapon/book/manual/engineering_hacking,
-/obj/item/weapon/book/manual/engineering_particle_accelerator,
-/obj/item/weapon/book/manual/engineering_singularity_safety,
-/obj/item/weapon/book/manual/evaguide,
-/obj/item/weapon/book/manual/excavation,
-/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/book/manual/mass_spectrometry,
-/obj/item/weapon/book/manual/materials_chemistry_analysis,
-/obj/item/weapon/book/manual/medical_cloning,
-/obj/item/weapon/book/manual/medical_diagnostics_manual,
-/obj/item/weapon/book/manual/research_and_development,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/book/manual/ripley_build_and_repair,
-/obj/item/weapon/book/manual/robotics_cyborgs,
-/obj/item/weapon/book/manual/rust_engine,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/stasis,
-/obj/item/weapon/book/manual/supermatter_engine,
-/obj/item/weapon/book/manual/tesla_engine,
-/obj/item/weapon/book/manual/virology,
-/obj/item/weapon/book/manual/rotary_electric_generator,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"qy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"qz" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"qA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"qB" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/camera/network/research/xenobio,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"qC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/hop)
-"qD" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 8
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"qE" = (
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "dorm6";
- pixel_x = -27;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-<<<<<<< HEAD
-=======
-"qG" = (
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"qH" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"qJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"qK" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"qM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/command/hop)
-"qN" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"qP" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"qQ" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"qS" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv2";
- layer = 8;
- name = "Divider"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"qT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"qU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Xeno Research";
- req_one_access = list(47,55)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/xenohall)
-"qV" = (
-/obj/machinery/seed_extractor,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"qW" = (
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"qX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"qY" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"qZ" = (
-/obj/structure/foodcart,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"rb" = (
-/obj/structure/sign/painting/library_private{
- pixel_x = -32
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"rc" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"rf" = (
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/science/hall)
-"rg" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"rh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor,
-/area/groundbase/science/rnd)
-"ri" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_electronics/debugger{
- pixel_x = -5
- },
-/obj/item/device/integrated_electronics/wirer{
- pixel_x = 5
- },
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"rj" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"rk" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/kitchen/backroom)
-"rl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/civilian/bar/upper)
-"rm" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"rn" = (
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"ro" = (
-/obj/structure/easel,
-/obj/item/paint_palette,
-/obj/item/paint_palette{
- pixel_y = -4
- },
-/obj/item/paint_brush,
-/obj/item/paint_brush{
- pixel_x = 4
- },
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"rq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"rr" = (
-/obj/structure/kitchenspike,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"rs" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"rt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"ru" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/folder/red,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/pen/multi{
- pixel_x = -2;
- pixel_y = 9
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"rv" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"rx" = (
-/obj/structure/table/standard,
-/obj/machinery/microwave,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-<<<<<<< HEAD
-=======
-"ry" = (
-/obj/machinery/computer/guestpass{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"rz" = (
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/groundbase/level2/ne)
->>>>>>> 13380238fb... Merge pull request #12681 from Very-Soft/gbtweaks
-"rA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/se)
-"rC" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"rD" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"rE" = (
-/obj/machinery/light/small{
- dir = 1
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/cargo/office)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"rF" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/hall)
-"rG" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"rH" = (
-/obj/machinery/requests_console/preset/research{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"rI" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/storage/box/backup_kit,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"rK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge";
- req_access = list(19)
- },
-/obj/structure/cable{
- icon_state = "32-4"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 1
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/command/bridge)
-"rL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"rM" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"rN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"rO" = (
-/obj/structure/barricade/cutout/mime,
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"rP" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/library)
-"rQ" = (
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-<<<<<<< HEAD
-=======
-"rR" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/door/window/southright{
- dir = 1;
- name = "shower door"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/room6)
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
-"rT" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"rU" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"rW" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"rZ" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"sb" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"sc" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"sd" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/landmark/start/intern,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"se" = (
-/obj/item/device/aicard,
-/obj/structure/table/reinforced,
-/obj/item/device/multitool,
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "bridge blast";
- name = "Bridge Blastdoors";
- pixel_x = 26
- },
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"sg" = (
-/obj/random/slimecore,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"si" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"sk" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"sl" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"sn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"so" = (
-/obj/structure/bed/chair/sofa/corp,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"sp" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"sr" = (
-/obj/structure/bed/chair/sofa/bench/right{
- dir = 1
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/se)
-"ss" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"su" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"sv" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"sw" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"sx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"sy" = (
-/obj/structure/table/woodentable,
-/obj/machinery/librarypubliccomp,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"sz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"sA" = (
-/obj/structure/flora/pottedplant/minitree,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"sB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"sD" = (
-/obj/machinery/papershredder,
-/obj/machinery/keycard_auth{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"sF" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"sG" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"sH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"sI" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Sorting Office";
- sortType = "Sorting Office"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"sJ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"sK" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"sL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"sM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"sN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"sP" = (
-/obj/structure/disposalpipe/sortjunction/untagged/flipped{
- dir = 1
- },
-/obj/machinery/door/airlock/glass_mining{
- id_tag = "cargodoor";
- name = "Cargo Office";
- req_access = list(31);
- req_one_access = null
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/cargo/office)
-<<<<<<< HEAD
-=======
-"sQ" = (
-/obj/structure/railing/grey,
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/eastspur)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"sS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "qm_office"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/cargo/qm)
-"sT" = (
-/obj/machinery/seed_storage/xenobotany,
-/obj/machinery/camera/network/research/xenobio,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"sU" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"sV" = (
-/obj/machinery/computer/card{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"sW" = (
-/turf/simulated/wall,
-/area/groundbase/medical/Chemistry)
-"sX" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"sY" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"sZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"ta" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"tb" = (
-/obj/structure/reagent_dispensers/acid{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/machinery/mecha_part_fabricator,
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"td" = (
-/obj/structure/table/glass,
-/obj/machinery/photocopier/faxmachine{
- department = "Medical"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"te" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"tf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"th" = (
-/obj/machinery/media/jukebox,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"tj" = (
-/obj/effect/landmark/start/chef,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"tk" = (
-/obj/machinery/disease2/isolator,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"tm" = (
-/obj/structure/sign/directions/science{
- pixel_x = -32;
- pixel_y = -6
- },
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_x = -32
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"to" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
-"tq" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/sw)
-"tr" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/civilian/hydroponics)
-"ts" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"tt" = (
-/obj/machinery/chem_master,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"tv" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"tw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"ty" = (
-/obj/machinery/station_map{
- dir = 4;
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"tA" = (
-/obj/structure/bed/chair/sofa/bench/left{
- dir = 1
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/se)
-"tB" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"tC" = (
-/obj/structure/reagent_dispensers/acid{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"tD" = (
-/obj/structure/table/marble,
-/obj/machinery/door/blast/gate/thin{
- dir = 4;
- id = "kitchenhallway";
- layer = 3.3
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/civilian/kitchen)
-"tF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"tH" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/wall{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"tI" = (
-/obj/machinery/r_n_d/destructive_analyzer,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/rnd)
-"tJ" = (
-/obj/item/weapon/folder/blue,
-/obj/structure/table/fancyblack,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"tK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/glass/reinforced{
- outdoors = 1
- },
-/area/groundbase/level2/eastspur)
-"tL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"tM" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"tN" = (
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/groundbase/level2/se)
-"tO" = (
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/nw)
-"tP" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"tQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- name = "Chemistry";
- req_one_access = list(33)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/Chemistry)
-"tT" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 1;
- name = "Slime Pen";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"tU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"tV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"tW" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/obj/random/vendorall,
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"tX" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/donut,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/device/radio,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"tY" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"tZ" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"ua" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"ue" = (
-/obj/machinery/button/remote/airlock{
- dir = 8;
- id = "dorm3";
- pixel_x = 27;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"ug" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"uh" = (
-/obj/machinery/appliance/mixer/candy,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"uj" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/civilian/kitchen)
-"uk" = (
-/obj/structure/bed/chair/sofa/corp/right{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"um" = (
-/obj/machinery/computer/crew,
-/obj/machinery/requests_console{
- department = "Medical";
- departmentType = 2;
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"un" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Virology"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/triage)
-"uo" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/chapel)
-"up" = (
-/obj/structure/stairs/spawner/west,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"uq" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"ur" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"ut" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/se)
-"uu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"uv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"uw" = (
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "16-0"
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 1
- },
-/turf/simulated/wall,
-/area/groundbase/medical/triage)
-"uy" = (
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"uz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"uC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"uE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"uF" = (
-/obj/machinery/firealarm{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"uG" = (
-/obj/item/modular_computer/console/preset/command{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"uI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"uJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"uK" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"uL" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm6";
- name = "Room 6"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room6)
-"uM" = (
-/obj/effect/landmark/start/xenobio,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"uN" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/item/clothing/suit/bio_suit/scientist,
-/obj/item/clothing/head/bio_hood/scientist,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"uO" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"uP" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/unexplored/outdoors)
-"uQ" = (
-/obj/machinery/bookbinder,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"uS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"uT" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/northspur)
-"uU" = (
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/carton/flour,
-/obj/item/weapon/reagent_containers/food/condiment/spacespice,
-/obj/item/weapon/reagent_containers/food/condiment/spacespice,
-/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,
-/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,
-/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
-/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,
-/obj/structure/closet,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"uX" = (
-/obj/structure/fence,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"uY" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"vb" = (
-/obj/machinery/light/bigfloorlamp,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/Chemistry)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"vc" = (
-/obj/structure/sign/department/chem,
-/turf/simulated/wall,
-/area/groundbase/medical/Chemistry)
-"vh" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"vj" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 4
- },
-/obj/effect/landmark/start/commandsecretary,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"vk" = (
-/obj/structure/fence,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/cargo/bay)
-"vm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"vn" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"vo" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Research"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/hall)
-"vr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"vs" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"vt" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- name = "Chemistry";
- req_one_access = list(33)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/Chemistry)
-"vu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-<<<<<<< HEAD
-=======
-"vw" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/machinery/door/window/southright{
- dir = 1;
- name = "shower door"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/room8)
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
-"vy" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/obj/structure/stairs/spawner/south,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"vA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"vB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"vF" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/weapon/storage/belt/utility,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"vH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"vI" = (
-/obj/machinery/recharge_station,
-/obj/machinery/light,
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"vJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"vL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southright{
- dir = 8;
- req_access = list(5)
- },
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/lobby)
-"vO" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"vP" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/glass,
-/obj/item/weapon/backup_implanter,
-/obj/item/weapon/backup_implanter,
-/obj/item/weapon/backup_implanter,
-/obj/item/weapon/backup_implanter,
-/obj/machinery/door/window/southleft{
- dir = 8;
- req_access = list(5)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/lobby)
-"vQ" = (
-/obj/structure/bookcase{
- name = "bookcase (Fiction)"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman,
-/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor,
-/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1,
-/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain,
-/obj/item/weapon/book/bundle/custom_library/fiction/ghostship,
-/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver,
-/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,
-/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday,
-/obj/item/weapon/book/bundle/custom_library/fiction/raissue142,
-/obj/item/weapon/book/bundle/custom_library/fiction/raissue147,
-/obj/item/weapon/book/bundle/custom_library/fiction/silence,
-/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,
-/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke,
-/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath,
-/obj/item/weapon/book/custom_library/fiction/myrock,
-/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones,
-/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"vS" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"vT" = (
-/obj/structure/closet/walllocker_double{
- dir = 4;
- pixel_x = 27
- },
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"vV" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Hydroponics";
- sortType = "Hydroponics"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"vW" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/qm,
-/obj/machinery/button/windowtint{
- id = "qm_office";
- layer = 3.3;
- pixel_x = 16;
- pixel_y = -27
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"vY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/se)
-"wa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"wb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"wc" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"wd" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"we" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"wf" = (
-/obj/structure/bed/psych,
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"wg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"wh" = (
-/obj/item/weapon/folder/red,
-/obj/structure/table/fancyblack,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"wj" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start/medical,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"wk" = (
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-<<<<<<< HEAD
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-=======
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/room1)
-"wl" = (
-/obj/machinery/light/small/fairylights{
- pixel_y = -1
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/nw)
->>>>>>> 3c288de197... Merge pull request #13353 from Very-Soft/backtogb
-"wm" = (
-/obj/machinery/computer/supplycomp/control{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"wn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"wp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"wq" = (
-/obj/structure/table/wooden_reinforced,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"ws" = (
-/obj/structure/closet/secure_closet/scientist,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"wt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"wu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"wv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"ww" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"wx" = (
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "xenobotshutters";
- name = "Privacy Shutters"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/westright{
- name = "Research Desk";
- req_access = list(47,55);
- req_one_access = null
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/xenobot)
-"wy" = (
-/obj/structure/sign/department/virology,
-/turf/simulated/wall/r_wall,
-/area/medical/virology)
-"wA" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"wB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"wD" = (
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"wE" = (
-/obj/structure/table/woodentable,
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"wF" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"wG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"wH" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"wI" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_electronics/debugger{
- pixel_x = -5
- },
-/obj/item/device/integrated_electronics/wirer{
- pixel_x = 5
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"wJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"wK" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/mime)
-"wL" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"wN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"wO" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen6";
- name = "Pen 6 Containment";
- pixel_y = 38;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv4";
- name = "Divider";
- pixel_y = 27;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"wP" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"wQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"wR" = (
-/obj/structure/bed/chair/sofa/bench{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/nw)
-"wS" = (
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/groundbase/unexplored/rock)
-"wW" = (
-/obj/effect/landmark/start/scientist,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/rnd)
-"wX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/cargo/office)
-=======
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"wY" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"wZ" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"xa" = (
-/obj/machinery/computer/transhuman/designer,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"xc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"xd" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xg" = (
-/obj/structure/filingcabinet/medical,
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xh" = (
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xi" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"xj" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Scan Records"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xk" = (
-/obj/machinery/camera/network/civilian{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"xm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"xo" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/biochemistry/full,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"xp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/command{
- id_tag = "RDdoor";
- name = "Research Director";
- req_access = list(30)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/rd)
-"xq" = (
-/obj/structure/stairs/spawner/west,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"xr" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"xs" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/obj/machinery/smartfridge/produce/persistent_lossy,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"xt" = (
-/obj/effect/landmark/vermin,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"xu" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/psych,
-/obj/machinery/button/windowtint{
- id = "psych_office";
- layer = 3.3;
- pixel_x = -17;
- pixel_y = 31
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"xv" = (
-/obj/machinery/photocopier,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"xw" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xx" = (
-/obj/machinery/keycard_auth{
- pixel_y = -28
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"xy" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2;
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"xz" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/southright{
- dir = 8;
- req_access = list();
- req_one_access = list(5,24)
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xA" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"xB" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"xD" = (
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/sw)
-"xE" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level2/nw)
-"xF" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"xG" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/body_scanconsole{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"xJ" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"xK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"xM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"xN" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 1;
- name = "Slime Pen";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"xP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start/cargo,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"xS" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"xU" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "chef_office"
- },
-/turf/simulated/floor,
-/area/groundbase/civilian/kitchen/backroom)
-"xV" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"xW" = (
-/obj/structure/cable/yellow{
- icon_state = "16-0"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/up{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/level2/nw)
-"xX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"xY" = (
-/obj/machinery/computer/power_monitor{
- dir = 4;
- throwpass = 1
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/camera/network/command{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"xZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"yb" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"yc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"ye" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/landmark/start/intern,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"yh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"yj" = (
-/obj/structure/sign/directions/kitchen{
- pixel_x = -32
- },
-/obj/structure/sign/directions/library{
- dir = 1;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/science{
- pixel_x = -32;
- pixel_y = -6
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"yk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Site Manager's Quarters";
- req_access = list(20)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/captainq)
-"ym" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"yn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/vines,
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"yo" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/command/bridge)
-"yp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"yq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"yr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"yt" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"yu" = (
-/obj/machinery/computer/message_monitor{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"yv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"yw" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"yy" = (
-/obj/structure/bed/chair/sofa/corp/left{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"yz" = (
-/obj/machinery/requests_console{
- department = "Virology";
- departmentType = 2;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"yB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"yC" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"yE" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"yF" = (
-/obj/machinery/botany/editor,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"yG" = (
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"yH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"yI" = (
-/obj/machinery/station_map{
- dir = 8;
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"yJ" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"yL" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "psych_office"
- },
-/turf/simulated/floor,
-/area/groundbase/medical/psych)
-"yM" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"yN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"yO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Xenoflora Research";
- req_one_access = list(77)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/xenobot)
-"yP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"yS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"yT" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"yU" = (
-/obj/structure/closet/secure_closet/hydroponics/sci{
- req_access = list(77)
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"yW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"yX" = (
-/obj/structure/janitorialcart,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"yY" = (
-/obj/structure/closet/l3closet/virology,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"za" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"zb" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"zc" = (
-/obj/structure/table/marble,
-/obj/machinery/chemical_dispenser/bar_soft/full{
- dir = 8
- },
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"zd" = (
-/obj/machinery/computer/security{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"zf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"zg" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/se)
-"zh" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"zi" = (
-/obj/structure/bed/chair/comfy/brown,
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"zj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"zk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Head of Personnel's Office"
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"zn" = (
-/obj/machinery/light/floortube{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"zo" = (
-/obj/machinery/libraryscanner,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"zp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"zs" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/chapel)
-"zt" = (
-/obj/structure/fence/corner,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/cargo/bay)
-"zw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"zx" = (
-/turf/simulated/floor/glass/reinforced{
- outdoors = 1
- },
-/area/groundbase/level2/eastspur)
-"zz" = (
-/obj/machinery/vending/wardrobe/janidrobe,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"zA" = (
-/obj/machinery/computer/aifixer{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"zB" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"zC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"zE" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"zF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"zG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"zH" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"zI" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2;
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"zJ" = (
-/obj/machinery/button/remote/blast_door{
- id = "kitchen";
- name = "Kitchen shutters";
- pixel_x = -3;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"zK" = (
-/obj/machinery/door/firedoor,
-/obj/item/weapon/folder/white,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/westright{
- dir = 4;
- name = "Research Desk";
- req_access = list(7);
- req_one_access = list(47)
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/rnd)
-"zL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"zO" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"zP" = (
-/obj/machinery/smartfridge/drying_rack,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"zR" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/civilian/janitor)
-"zS" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"zT" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/server)
-"zV" = (
-/obj/structure/table/steel,
-/obj/machinery/reagentgrinder{
- pixel_y = 11
- },
-/obj/item/stack/material/phoron{
- amount = 6
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"zW" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"zX" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/cargo/office)
-"zZ" = (
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Aa" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2;
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Ac" = (
-/obj/machinery/door/airlock/freezer{
- name = "Kitchen Cold Room";
- req_access = list(28)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/kitchen/freezer)
-"Ad" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"Af" = (
-/obj/machinery/photocopier,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Ag" = (
-/obj/structure/table/glass,
-/obj/item/weapon/book/manual/virology,
-/obj/item/device/antibody_scanner,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Ah" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Ai" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Aj" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Ak" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Al" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Am" = (
-/obj/structure/railing/grey,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/ne)
-"An" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Ao" = (
-/obj/machinery/mecha_part_fabricator/pros,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Ap" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"Aq" = (
-/obj/structure/sign/directions/security{
- pixel_x = 32
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"As" = (
-/obj/structure/table/hardwoodtable,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"At" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/se)
-"Au" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Av" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Aw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
-"Ax" = (
-/obj/structure/sink/kitchen{
- dir = 8;
- pixel_x = -11;
- pixel_y = 14
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Ay" = (
-/obj/structure/closet/walllocker_double/east,
-/obj/item/weapon/circuitboard/aicore{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/weapon/circuitboard/teleporter,
-/obj/random/paicard{
- pixel_x = 4
- },
-/obj/item/device/taperecorder{
- pixel_x = -3
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"AA" = (
-/obj/effect/floor_decal/chapel,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"AB" = (
-/obj/structure/bed/chair/sofa/corp{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"AC" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"AD" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level2/westspur)
-"AF" = (
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"AG" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"AH" = (
-/obj/machinery/vending/wardrobe/genedrobe,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"AI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"AK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"AL" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/robotics)
-"AM" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"AN" = (
-/obj/structure/sign/department/bridge,
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/bridge)
-"AO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"AR" = (
-/obj/structure/closet{
- name = "robotics equipment"
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/multitool{
- pixel_x = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"AS" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"AT" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/xenobot)
-"AU" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"AV" = (
-/turf/simulated/floor/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/level2/westspur)
-"AX" = (
-/obj/structure/table/woodentable,
-/obj/random/coin/sometimes,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"AY" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"AZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/xenohall)
-"Bb" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/open,
-<<<<<<< HEAD
-/area/groundbase/civilian/bar)
-=======
-/area/groundbase/civilian/bar/upper)
-"Bc" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/room5)
->>>>>>> b7b3ae73e0... Merge pull request #12838 from Very-Soft/gbwilds
-"Be" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/barricade/cutout/clown,
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"Bf" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/command/hop)
-"Bg" = (
-/obj/structure/closet/wardrobe/virology_white,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Bh" = (
-/obj/machinery/mech_recharger,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Bi" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"Bj" = (
-/obj/structure/bed/chair/sofa/corp{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"Bl" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/picnic)
-"Bm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/morgue{
- dir = 2;
- name = "Private Study";
- req_access = list(37)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Bn" = (
-/obj/machinery/vending/wardrobe/hydrobe,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Bo" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"Bq" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Br" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/science/picnic)
-"Bs" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Bt" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"Bu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "virologyquar";
- layer = 1;
- name = "Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/turf/simulated/floor,
-/area/medical/virology)
-"Bv" = (
-/obj/structure/sign/department/robo,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/robotics)
-"Bw" = (
-/obj/structure/bed/chair/sofa/bench/right{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/nw)
-"Bx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/lobby)
-"By" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"Bz" = (
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"BB" = (
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"BC" = (
-/obj/structure/barricade/cutout/clown,
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"BD" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"BF" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"BI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"BK" = (
-/obj/structure/sink/kitchen{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"BO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/freezer{
- name = "Chef Backroom";
- req_access = list(28)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/kitchen/backroom)
-"BP" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/command/bridge)
-"BQ" = (
-/obj/machinery/computer/rcon{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"BR" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"BS" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"BT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/bar/upper)
-"BU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/tagger{
- dir = 8;
- name = "package tagger - Resleeving";
- sort_tag = "Resleeving"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"BV" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_y = 4
- },
-/obj/item/weapon/pen{
- pixel_y = 4
- },
-/obj/item/weapon/clipboard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"BW" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/open,
-/area/groundbase/level2/northspur)
-"BX" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"BY" = (
-/obj/structure/mirror{
- dir = 4;
- pixel_x = -23
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"BZ" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/open,
-/area/groundbase/level2/westspur)
-"Ca" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Cb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/junction,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Cc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Cd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Ce" = (
-/obj/structure/bookcase/bookcart,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Cf" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Cg" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"Ch" = (
-/obj/structure/table/glass,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Ci" = (
-/obj/structure/closet/secure_closet/hydroponics/sci,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Cj" = (
-/obj/structure/sign/directions/stairs_down{
- pixel_y = 38
- },
-/obj/structure/sign/directions/engineering{
- pixel_y = 26
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"Ck" = (
-/obj/structure/closet/secure_closet/hop2,
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"Cl" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"Co" = (
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"Cq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"Cr" = (
-/obj/effect/landmark{
- name = "maint_pred"
- },
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/groundbase/unexplored/rock)
-"Cs" = (
-/obj/structure/sign/department/sci,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/rnd)
-"Ct" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Cu" = (
-/obj/machinery/recharge_station,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Cw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"Cx" = (
-/obj/structure/railing/grey,
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"Cy" = (
-/obj/structure/janitorialcart,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"Cz" = (
-/turf/simulated/wall,
-/area/groundbase/cargo/qm)
-"CA" = (
-/obj/machinery/autolathe{
- dir = 1;
- hacked = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"CB" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room5)
-"CC" = (
-/obj/item/weapon/storage/briefcase,
-/obj/item/weapon/storage/briefcase,
-/obj/structure/table/rack,
-/obj/machinery/light/small,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"CD" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"CE" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"CF" = (
-/obj/machinery/recharge_station,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/xenobot)
-"CG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"CH" = (
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"CJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"CK" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/command/bridge)
-"CL" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"CN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"CP" = (
-/obj/machinery/icecream_vat,
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"CQ" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"CR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/start/cargo,
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/cargo/office)
-"CS" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"CT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"CV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"CW" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"CX" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Library";
- sortType = "Library"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"CZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Da" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Db" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/xenobot/storage)
-"Dc" = (
-/obj/machinery/light_switch{
- pixel_x = 16;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"Dd" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/ne)
-"De" = (
-/obj/structure/bed/chair/sofa/bench/left{
- dir = 1
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"Df" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"Dh" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/device/robotanalyzer,
-/obj/item/device/mmi/digital/posibrain,
-/obj/item/device/mmi,
-/obj/item/weapon/paper{
- desc = "";
- info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management";
- name = "note to science staff"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Dj" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Dk" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "packageSort1"
- },
-/obj/structure/plasticflaps,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Dl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"Dm" = (
-/obj/structure/table/standard,
-/obj/item/device/retail_scanner/science,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Dn" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Do" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/janitor)
-"Dp" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"Dq" = (
-/obj/structure/bed/chair/comfy/yellow{
- desc = "A throne shouldn't be comfy, but this one is.";
- name = "High Throne of the Fourty-Fifth Age"
- },
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Dr" = (
-/obj/structure/disposalpipe/sortjunction/wildcard/flipped{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Ds" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"Dt" = (
-/obj/machinery/item_bank{
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Du" = (
-/turf/simulated/wall,
-/area/groundbase/medical/lobby)
-"Dv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"Dw" = (
-/obj/structure/table/bench/sifwooden/padded,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Dx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Dy" = (
-/obj/structure/table/reinforced,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = 32
- },
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"Dz" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv5";
- layer = 8;
- name = "Divider"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"DA" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"DD" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"DE" = (
-/obj/machinery/door/window/brigdoor/westright{
- dir = 4;
- name = "Robotics Desk";
- req_access = list(29,47);
- req_one_access = null
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "robshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/robotics)
-"DF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"DG" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"DH" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen8";
- name = "Pen 8 Containment";
- pixel_y = 38;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiodiv6";
- name = "Divider";
- pixel_y = 27;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"DI" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"DJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"DK" = (
-/obj/machinery/smartfridge/secure/extract,
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"DL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"DM" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/bodyscanner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"DN" = (
-/obj/machinery/vending/wardrobe/chapdrobe,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"DO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"DP" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"DQ" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"DR" = (
-/obj/item/weapon/stool/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"DS" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/wall/r_wall,
-/area/maintenance/groundbase/substation/command)
-"DT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"DV" = (
-/obj/structure/table/rack,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/clothing/mask/gas,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/card/id/gold/captain/spare,
-/obj/machinery/door/window/brigdoor/westright{
- dir = 4;
- name = "Colony Director's Storage";
- req_access = list(20)
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/item/clothing/head/helmet/space/void/captain,
-/obj/item/clothing/suit/space/void/captain,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"DW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "robshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor,
-/area/groundbase/science/robotics)
-"DX" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"DY" = (
-/obj/structure/table/bench/sifwooden/padded,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"DZ" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/landmark/start/entertainer,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Ea" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Eb" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Ec" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"Ed" = (
-/obj/structure/bookcase{
- name = "bookcase (Non-Fiction)"
- },
-/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire,
-/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem,
-/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov,
-/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/item/weapon/book/manual/synthetic_life,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Ee" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Ef" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Eg" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-<<<<<<< HEAD
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Exploration";
- sortType = "Exploration"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-=======
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk/slab,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/groundbase/level2/nw)
-"Eh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Ei" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Ej" = (
-/obj/machinery/vending/dinnerware,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"El" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Em" = (
-/obj/structure/disposalpipe/down{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "32-4"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Eo" = (
-/obj/machinery/firealarm,
-/obj/item/weapon/tool/wrench,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Ep" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Eq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Es" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Et" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/box/cups,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Eu" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Ev" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Ew" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Ex" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Ey" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"EA" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"EB" = (
-/turf/simulated/open,
-/area/groundbase/level2/southwestspur)
-"EC" = (
-/obj/structure/bed/chair/sofa/corp,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"ED" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
-/obj/item/weapon/nullrod,
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"EE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"EF" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"EH" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"EI" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"EJ" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"EK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"EN" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"EP" = (
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
-"EQ" = (
-/obj/structure/filingcabinet,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"ET" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"EU" = (
-/obj/structure/toilet,
-/obj/machinery/button/remote/airlock{
- id = "toilet2";
- pixel_x = -26;
- pixel_y = -4;
- specialfunctions = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"EV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"EW" = (
-/obj/structure/bed/chair/sofa/right/black,
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"EX" = (
-/obj/structure/closet/secure_closet/quartermaster,
-/obj/item/weapon/storage/backpack/dufflebag,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"EY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"EZ" = (
-/obj/machinery/light/small/fairylights,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/nw)
-"Fa" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- id_tag = "captaindoor";
- name = "Site Manager's Office";
- req_access = list(20)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/captain)
-"Fb" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv1";
- layer = 8;
- name = "Divider"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Fc" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Fd" = (
-/obj/machinery/power/apc/hyper{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Fg" = (
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"Fh" = (
-/obj/machinery/computer/robotics{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"Fi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Fj" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Fk" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"Fl" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/level2/sw)
-"Fm" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Fn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Fo" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Fp" = (
-/obj/structure/railing/grey,
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"Fq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = list(57)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/hop)
-"Fs" = (
-/turf/simulated/floor/outdoors/newdirt{
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"Ft" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- name = "Medical";
- req_one_access = null
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/bmarble,
-/area/groundbase/medical/lobby)
-"Fu" = (
-/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/picnic)
-"Fv" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/science/picnic)
-"Fw" = (
-/turf/simulated/floor/outdoors/newdirt{
- outdoors = 0
- },
-/area/groundbase/unexplored/rock)
-"Fx" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"Fy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Fz" = (
-/obj/machinery/optable{
- name = "Robotics Operating Table"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/medical_wall/anesthetics{
- pixel_x = 32;
- req_access = list();
- req_one_access = list(29,45)
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/robotics)
-"FB" = (
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/storage/lockbox/vials,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/storage/box/masks,
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/soap/nanotrasen,
-/obj/structure/closet/walllocker_double/medical/east,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/storage/box/monkeycubes/wolpincubes,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"FC" = (
-/obj/machinery/chem_master,
-/obj/structure/sign/painting/library_secure{
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"FD" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"FF" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/bar/upper)
-"FI" = (
-/obj/structure/fence/corner{
- dir = 5
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/cargo/bay)
-"FJ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = -4;
- pixel_y = 7
- },
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/weapon/cartridge/quartermaster,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"FL" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/xenobot)
-"FM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"FN" = (
-/obj/structure/sign/department/chapel,
-/turf/simulated/wall,
-/area/groundbase/civilian/chapel)
-"FO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/turf/simulated/floor,
-/area/rnd/xenobiology)
-"FR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"FS" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/open,
-/area/groundbase/level2/westspur)
-"FT" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"FU" = (
-/obj/structure/table/bench/standard,
-/obj/effect/landmark/start/rd,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/picnic)
-"FW" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Ga" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Gb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/xenohall)
-"Gc" = (
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Gd" = (
-/mob/living/simple_mob/animal/passive/chicken,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"Ge" = (
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- dir = 4;
- id_tag = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = -28;
- tag_exterior_door = "virology_airlock_exterior";
- tag_interior_door = "virology_airlock_interior"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Gf" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/camera/network/cargo,
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Gi" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Gj" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen7";
- name = "Pen 7 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2;
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Gk" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room1)
-"Gl" = (
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"Gm" = (
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Gn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/wall,
-/area/groundbase/civilian/bar/upper)
-"Gp" = (
-/turf/simulated/wall,
-/area/groundbase/level2/nw)
-"Gq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Command Meeting Room"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/meeting)
-"Gs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/research{
- frequency = 1379;
- id_tag = "xenobot_airlock_exterior";
- locked = 1;
- name = "Xenobotany Lab";
- req_access = list(47,55)
- },
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "xenobot_airlock_control";
- name = "Xenobotany Access Button";
- pixel_x = -32;
- req_one_access = list(47,55)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/xenobot)
-"Gt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/machinery/door/window/northleft{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/machinery/door/window/southleft{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/groundbase/science/server)
-"Gu" = (
-/obj/machinery/r_n_d/server/robotics,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- icon_state = "map_vent_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/science/server)
-"Gv" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/captain,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Gx" = (
-/obj/structure/table/reinforced,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = -10;
- pixel_y = 3
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/hop,
-/obj/item/weapon/paper/dockingcodes,
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"Gy" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"GA" = (
-/obj/structure/table/wooden_reinforced,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"GC" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"GD" = (
-/obj/machinery/computer/supplycomp/control{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/status_display/supply_display{
- pixel_x = 32
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"GE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Virology";
- req_access = list(39);
- req_one_access = null
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"GF" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"GH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor,
-/area/rnd/xenobiology)
-"GI" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"GJ" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_circuit_printer,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"GK" = (
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"GL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"GM" = (
-/turf/simulated/wall,
-/area/maintenance/groundbase/substation/command)
-"GN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"GO" = (
-/obj/structure/closet/walllocker_double{
- dir = 4;
- pixel_x = 27
- },
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/storage/fancy/crayons,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"GP" = (
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"GQ" = (
-/obj/machinery/vending/wardrobe/mimedrobe,
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"GS" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"GT" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/civilian/kitchen)
-"GU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- name = "Chapel"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/chapel)
-"GW" = (
-/obj/machinery/atm{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"GX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"GY" = (
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"GZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Ha" = (
-/obj/structure/table/steel,
-/obj/item/device/multitool,
-/obj/item/clothing/glasses/welding,
-/obj/item/weapon/weldingtool,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Hb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Hc" = (
-/obj/item/weapon/bedsheet/captain,
-/obj/structure/bed/padded,
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/landmark/start/captain,
-/turf/simulated/floor/carpet,
-/area/groundbase/command/captainq)
-"He" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/effect/landmark/start/xenobot,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Hf" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Circuitry Workshop";
- req_access = list(7);
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/circuits)
-"Hi" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/civilian/hydroponics/out)
-"Hj" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/ne)
-"Hk" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Hl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"Hm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"Hn" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Ho" = (
-<<<<<<< HEAD
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-=======
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8
- },
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"Hp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Chapel"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/chapel)
-"Hr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small/fairylights{
- pixel_y = -2
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"Hs" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"Hu" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"Hv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/civilian/janitor)
-"Hw" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"Hx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass/polarized{
- dir = 2;
- name = "Cargo Bay";
- req_access = list(31)
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/cargo/office)
-"Hy" = (
-/obj/effect/landmark/start/roboticist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Hz" = (
-/obj/structure/table/marble,
-/obj/machinery/camera/network/civilian{
- dir = 8
- },
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"HA" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"HB" = (
-/obj/structure/closet/jequipcloset,
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"HC" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/medical,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"HD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"HF" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"HG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"HH" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/civilian/hydroponics)
-"HI" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/machinery/fitness/punching_bag/clown,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"HJ" = (
-/obj/structure/table/standard,
-/obj/machinery/recharger,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"HK" = (
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"HL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/medical/lobby)
-"HQ" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/sw)
-"HR" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"HT" = (
-/obj/structure/closet/crate/freezer,
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"HU" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"HX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"HY" = (
-/obj/machinery/alarm,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"HZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Ia" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"Ib" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"Ie" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Ig" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Ih" = (
-/obj/machinery/vending/wardrobe/chefdrobe,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Ii" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv6";
- layer = 8;
- name = "Divider"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Ij" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Ik" = (
-/obj/structure/bed/chair/sofa/bench/right{
- dir = 1
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"Il" = (
-/obj/item/weapon/bedsheet/mimedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"Im" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"In" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/civilian/hydroponics)
-<<<<<<< HEAD
-=======
-"Io" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
-"Ip" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Iq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/civilian/chapel/office)
-"Ir" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"It" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Iu" = (
-/obj/machinery/botany/extractor,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Iv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/botanist,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Iw" = (
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Ix" = (
-/obj/structure/flora/pottedplant/orientaltree,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Iy" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Iz" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/obj/structure/railing/grey,
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"IA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"IB" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"ID" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"IE" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"IH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"II" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"IJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"IK" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/lobby)
-=======
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"IL" = (
-/obj/machinery/transhuman/resleever,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"IO" = (
-/obj/machinery/vending/wardrobe/scidrobe,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"IP" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"IQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"IR" = (
-/obj/structure/sign/painting/library_secure{
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"IT" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"IU" = (
-/obj/structure/bed/chair/office/dark,
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- dir = 4;
- id = "hop_office_desk";
- layer = 3.3;
- name = "Desk Privacy Shutter";
- pixel_x = -31;
- pixel_y = 1
- },
-/obj/effect/landmark/start/hop,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"IV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"IW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/disposal/wall/cleaner{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"IX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/junction,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"IY" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "0-4"
-=======
-/obj/machinery/door/window/southright{
- dir = 1;
- name = "shower door"
->>>>>>> d8515387bc... Merge pull request #12695 from Very-Soft/gbtweaks
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"IZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Ja" = (
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/nw)
-"Jc" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/level2/nw)
-"Jd" = (
-/obj/machinery/button/remote/blast_door{
- id = "cirshutters";
- name = "Privacy Shutter Control";
- pixel_y = 30
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Je" = (
-/obj/effect/floor_decal/chapel,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Jh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"Ji" = (
-/obj/structure/sign/department/sci,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/hall)
-"Jl" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- closed_layer = 10;
- density = 0;
- dir = 2;
- icon_state = "pdoor0";
- id = "bridge blast";
- layer = 1;
- name = "Bridge Blast Doors";
- opacity = 0;
- open_layer = 1
- },
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/cable/green,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "hop_office_desk";
- layer = 3.1;
- name = "HoP's Shutters"
- },
-/turf/simulated/floor/plating,
-/area/groundbase/command/hop)
-"Jm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Jn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Virology Isolation Room One";
- req_one_access = list(39)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"Jo" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Bridge"
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = 32
- },
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Jp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Quartermaster";
- req_access = list(41);
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/cargo/qm)
-"Jq" = (
-/obj/structure/table/bench/standard,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/picnic)
-"Jr" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/sw)
-"Js" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"Jt" = (
-/obj/machinery/computer/supplycomp{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"Ju" = (
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Jv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/ne)
-"Jy" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Jz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"JA" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"JB" = (
-/obj/structure/table/glass,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"JD" = (
-/obj/machinery/appliance/cooker/oven,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"JF" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"JH" = (
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"JI" = (
-/obj/machinery/door/airlock/freezer{
- name = "Kitchen";
- req_access = list(28)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/kitchen)
-"JJ" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/kitchen/freezer)
-"JK" = (
-/obj/structure/table/glass,
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"JL" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"JM" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"JN" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"JO" = (
-/obj/structure/table/standard,
-/obj/item/device/retail_scanner/civilian,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"JP" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"JQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"JR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"JS" = (
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
-"JT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"JU" = (
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"JV" = (
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/sleep_console,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"JW" = (
-/obj/structure/table/standard,
-/obj/machinery/photocopier/faxmachine{
- department = "Quartermaster-Office"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"JX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"JY" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/clowndouble,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room4)
-"JZ" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Kc" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"Kd" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Ke" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/full,
-/obj/machinery/camera/network/medbay,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Kg" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen8";
- name = "Pen 8 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Kh" = (
-/obj/item/bee_pack,
-/obj/item/honey_frame,
-/obj/item/honey_frame,
-/obj/item/honey_frame,
-/obj/item/honey_frame,
-/obj/item/honey_frame,
-/obj/item/weapon/tool/crowbar,
-/obj/item/bee_smoker,
-/obj/item/beehive_assembly,
-/obj/structure/closet/crate/hydroponics{
- desc = "All you need to start your own honey farm.";
- name = "beekeeping crate"
- },
-/obj/item/beehive_assembly,
-/obj/item/beehive_assembly,
-/obj/item/beehive_assembly,
-/obj/item/beehive_assembly,
-/obj/item/bee_pack,
-/obj/item/bee_pack,
-/obj/item/bee_pack,
-/obj/item/honey_frame,
-/obj/item/honey_frame,
-/obj/item/honey_frame,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Ki" = (
-/obj/structure/table/standard,
-/obj/item/clothing/head/soft,
-/obj/item/clothing/head/soft,
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/cargo,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Kj" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"Kk" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Kl" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/cargo/office)
-=======
-/turf/simulated/open,
-/area/groundbase/level2/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Km" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/groundbase/cargo/bay;
- base_turf = /turf/simulated/floor/outdoors/sidewalk/slab;
- docking_controller = "cargo_bay";
- landmark_tag = "supply_station";
- name = "Cargo Landing Pad"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"Kn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"Kp" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Kr" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Ks" = (
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- dir = 8;
- id_tag = "xenobio_airlock_control";
- name = "Xenobiology Access Console";
- pixel_x = 24;
- tag_exterior_door = "xenobio_airlock_exterior";
- tag_interior_door = "xenobio_airlock_interior"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Ku" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Kv" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge";
- req_access = list(19)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/bridge)
-"Kx" = (
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Ky" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"KA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-/area/groundbase/medical/triage)
-=======
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"KB" = (
-/obj/structure/flora/pottedplant/minitree,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"KC" = (
-/obj/structure/closet/walllocker_double{
- dir = 8;
- pixel_x = -28
- },
-/obj/item/device/camera{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/device/camera,
-/obj/item/device/camera_film{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/device/camera_film{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/device/taperecorder,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"KD" = (
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/command_guide,
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"KE" = (
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"KF" = (
-/obj/machinery/biogenerator,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"KG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"KJ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/command/bridge)
-"KL" = (
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/science/picnic)
-"KM" = (
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"KN" = (
-/obj/machinery/honey_extractor,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"KO" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"KP" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"KQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/commandsecretary,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"KR" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Command Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"KS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"KU" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"KV" = (
-/obj/machinery/bodyscanner,
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"KW" = (
-/turf/simulated/floor/outdoors/newdirt_nograss{
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"KY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/obj/effect/landmark/start/xenobot,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Lb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"Lc" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Ld" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Le" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Lf" = (
-/obj/machinery/appliance/cooker/fryer,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Lg" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Lj" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Lk" = (
-/obj/structure/table/steel,
-/obj/item/device/electronic_assembly/large/default,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Lm" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Ln" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Lo" = (
-/obj/structure/table/reinforced,
-/obj/item/device/robotanalyzer,
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Lp" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"Lq" = (
-/obj/structure/bed/chair/sofa/bench{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"Ls" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/machinery/photocopier/faxmachine{
- department = "Research";
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Lt" = (
-/obj/machinery/button/remote/airlock{
- id = "dorm8";
- pixel_y = 27;
- specialfunctions = 4
- },
-/obj/structure/bed/chair/sofa/corp/left{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"Lu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/rnd)
-"Lv" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"Ly" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/qm)
-"Lz" = (
-/obj/machinery/camera/network/cargo{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"LA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"LB" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"LC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"LD" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/snacks/mint,
-/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
- pixel_x = 3;
- pixel_y = 13
- },
-/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
- pixel_x = -1;
- pixel_y = 10
- },
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"LE" = (
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"LF" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"LG" = (
-/obj/structure/disposalpipe/tagger/partial{
- name = "partial tagger - Sorting Office";
- sort_tag = "Sorting Office"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"LJ" = (
-/obj/structure/bed/padded,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"LK" = (
-/obj/machinery/computer/supplycomp{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"LL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"LN" = (
-/obj/machinery/shower{
- pixel_y = 16
- },
-/obj/structure/curtain/open/shower,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"LO" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"LP" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/dorms/room6)
-"LQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"LR" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"LS" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"LT" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"LU" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white_rd,
-/obj/item/weapon/stamp/rd,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"LV" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"LW" = (
-/obj/structure/sign/xenobio{
- plane = -34
- },
-/obj/structure/cable/yellow{
- icon_state = "32-4"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/down{
- dir = 1
- },
-/turf/simulated/wall/r_wall,
-/area/rnd/xenobiology)
-"LX" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"LY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"LZ" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"Mb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Mc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"Me" = (
-/obj/machinery/photocopier,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/cargo{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Mf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/picnic)
-"Mh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Mi" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/packageWrap,
-/obj/item/device/mass_spectrometer/adv,
-/obj/item/device/mass_spectrometer/adv,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Mj" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Mk" = (
-/obj/structure/table/standard,
-/obj/item/clothing/head/soft,
-/obj/item/clothing/head/soft,
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Ml" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"Mm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Mn" = (
-/obj/structure/railing/grey,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
-"Mo" = (
-/obj/machinery/vending/hydronutrients,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Mq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Mr" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"Ms" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Mt" = (
-/obj/structure/table/woodentable,
-/obj/structure/plushie/ian{
- dir = 8;
- pixel_y = 6
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"Mu" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Mw" = (
-/obj/machinery/autolathe{
- hacked = 1
- },
-/obj/machinery/power/apc/hyper{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Mx" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 8
- },
-/obj/item/device/radio{
- anchored = 1;
- canhear_range = 7;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- name = "Virology Emergency Phone";
- pixel_x = 7;
- pixel_y = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"My" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/machinery/camera/network/research{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Mz" = (
-/obj/structure/table/steel,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"MA" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/camera/network/command,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"MB" = (
-/obj/machinery/alarm/freezer{
- dir = 4;
- pixel_x = -25
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"MC" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "packageSort1"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"MD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/wall,
-/area/groundbase/civilian/bar/upper)
-"ME" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/chapel/office)
-"MF" = (
-/obj/machinery/computer/rdconsole/core{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/rnd)
-"MG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"MH" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/cargo/bay)
-"MJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"MM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"MO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"MQ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/item/weapon/stamp/accepted,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"MR" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/pen,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"MS" = (
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/ne)
-"MU" = (
-<<<<<<< HEAD
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/Chemistry)
-=======
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
->>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
-"MV" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"MW" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/qm)
-"MX" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"MY" = (
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"MZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Na" = (
-/obj/machinery/computer/secure_data{
- dir = 8;
- pixel_y = -4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Nb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"Nc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/library)
-"Nd" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Ne" = (
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"Nf" = (
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/westspur)
-"Ni" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Nj" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"Nk" = (
-/obj/random/mob/bird,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/unexplored/outdoors)
-"Nl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Nn" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8;
- icon_state = "freezer_1";
- power_setting = 20;
- set_temperature = 73;
- use_power = 1
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"No" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass/polarized{
- dir = 2;
- id_tag = "MedbayFoyer";
- id_tint = "medbayfoyer";
- name = "Medbay Airlock";
- req_one_access = list(5)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/triage)
-"Np" = (
-/mob/living/simple_mob/vore/alienanimals/catslug/custom/medislug{
- ghostjoin = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"Nq" = (
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"Ns" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"Nv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Nw" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/triage)
-=======
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ny" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Nz" = (
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"NA" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"NC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
-"ND" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/command/hop)
-"NE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"NF" = (
-/obj/machinery/computer/communications{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"NG" = (
-/mob/living/simple_mob/animal/goat{
- name = "Fredula"
- },
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"NJ" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"NK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"NM" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"NO" = (
-/obj/structure/railing/grey,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/se)
-"NP" = (
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_one_access = list(35,28)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/hydroponics)
-"NR" = (
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Command";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/groundbase/substation/command)
-"NS" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 1;
- name = "Slime Pen";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"NT" = (
-/obj/structure/bed/chair/sofa/black{
- dir = 8
- },
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"NU" = (
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"NW" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"NX" = (
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"NY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"NZ" = (
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"Oa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"Ob" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/cargo/office)
-"Oc" = (
-/obj/structure/bookcase{
- name = "bookcase (Adult)"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Od" = (
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Oe" = (
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Of" = (
-/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/medical/virology)
-"Oh" = (
-/obj/structure/bed/chair/sofa/left/black{
- dir = 8
- },
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"Oi" = (
-/obj/structure/disposalpipe/tagger{
- dir = 8;
- name = "package tagger - Trash";
- sort_tag = "Trash"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Oj" = (
-/obj/machinery/button/windowtint{
- id = "chef_office";
- layer = 3.3;
- pixel_y = -27
- },
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"Ok" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"Om" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"On" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark/start/medical,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Oo" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen3";
- name = "Pen 3 Containment";
- pixel_y = -38;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiodiv1";
- name = "Divider";
- pixel_y = -27;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Op" = (
-/obj/machinery/light,
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"Oq" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Or" = (
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"Ou" = (
-/obj/structure/sign/directions/evac{
- dir = 8;
- pixel_x = 32;
- pixel_y = -32
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/lobby)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ov" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Ow" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 8;
- req_access = list();
- req_one_access = list(5,24)
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Ox" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Oy" = (
-/obj/structure/railing/grey,
-/turf/simulated/open,
-/area/groundbase/level2/eastspur)
-"Oz" = (
-/obj/structure/sink/kitchen{
- pixel_y = 20
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"OA" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"OB" = (
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"OC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/computer/timeclock/premade/east,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"OD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"OE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"OF" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"OG" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"OH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"OI" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/northspur)
-"OJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"OK" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"OL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"OM" = (
-/obj/effect/mouse_hole_spawner,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
-"ON" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level2/sw)
-"OO" = (
-/obj/structure/sign/department/cargo,
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"OP" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"OQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"OR" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"OS" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"OU" = (
-/obj/structure/sign/painting/public{
- pixel_y = -30
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"OV" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Captain's Office"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"OX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Virology Isolation Room Two";
- req_one_access = list(39)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"OY" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/rnd)
-"OZ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Pa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Pb" = (
-/obj/structure/disposalpipe/sortjunction/untagged{
- dir = 1;
- name = "Trash";
- sortType = "Trash"
- },
-/obj/structure/table/standard,
-/obj/machinery/photocopier/faxmachine{
- department = "Cargo";
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Pc" = (
-/obj/machinery/vending/hydronutrients,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Pe" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"Ph" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Pk" = (
-/obj/structure/table/standard,
-/obj/machinery/reagentgrinder{
- pixel_y = 10
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Pl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Pm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"Pn" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/requests_console{
- department = "Virology";
- departmentType = 2;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Po" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Pp" = (
-/obj/machinery/body_scanconsole,
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Pq" = (
-/obj/structure/bed/chair/sofa/corp,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"Pr" = (
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"Ps" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"Pt" = (
-/obj/structure/bed/chair/sofa/bench/right,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"Pu" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"Pv" = (
-/obj/machinery/station_map{
- dir = 4;
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Pw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Py" = (
-/obj/structure/bed/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Pz" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"PA" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/library)
-"PC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"PD" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/xenohall)
-"PG" = (
-/obj/machinery/account_database,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"PI" = (
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"PJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/recharge_station,
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"PL" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"PM" = (
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_one_access = list(35,28)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/hydroponics)
-"PN" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/robotics)
-"PO" = (
-/obj/structure/bookcase{
- desc = "There appears to be a shrine to WGW at the back...";
- name = "Forbidden Knowledge"
- },
-/obj/item/weapon/book/manual/engineering_hacking,
-/obj/item/weapon/book/manual/nuclear,
-/obj/item/weapon/book/custom_library/fiction/woodysgotwood,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"PQ" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen1";
- name = "Pen 1 Containment";
- pixel_y = -38;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"PR" = (
-/obj/effect/landmark/start/xenobio,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"PS" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"PT" = (
-/obj/machinery/button/remote/airlock{
- dir = 8;
- id = "dorm1";
- pixel_x = 27;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"PU" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"PV" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"PW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_research{
- name = "Robotics Lab";
- req_one_access = list(29,47)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/robotics)
-"PX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"PZ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Qa" = (
-/obj/machinery/r_n_d/server/robotics,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- icon_state = "map_vent_out";
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/science/server)
-"Qc" = (
-/obj/random/mob/bird,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"Qe" = (
-/obj/structure/sign/painting/library_private{
- pixel_y = -32
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Qf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Qg" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Qh" = (
-/obj/structure/bookcase{
- name = "bookcase (Religious)"
- },
-/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,
-/obj/item/weapon/book/custom_library/religious/feastofkubera,
-/obj/item/weapon/book/custom_library/religious/storyoflordganesha,
-/obj/item/weapon/book/custom_library/religious/sungoddessofkorea,
-/obj/item/weapon/book/custom_library/religious/wayofbleedingswan,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Qi" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Qn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"Qp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Qq" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm5";
- name = "Room 5"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room5)
-"Qr" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Qs" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Medical Forms"
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"Qt" = (
-/obj/machinery/computer/crew{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Qu" = (
-/obj/effect/landmark{
- name = "droppod_landing"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/unexplored/outdoors)
-"Qv" = (
-/obj/machinery/vending/wardrobe/cargodrobe,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Qw" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Qx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"Qy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"Qz" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"QA" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"QB" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"QC" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"QD" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/eastspur)
-"QE" = (
-/obj/machinery/appliance/mixer/cereal,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"QF" = (
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"QG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"QH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"QI" = (
-/obj/structure/closet/secure_closet/hop,
-/obj/item/clothing/glasses/omnihud,
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"QJ" = (
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"QK" = (
-/obj/structure/closet/walllocker_double{
- dir = 8;
- pixel_x = -28
- },
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/canvas/twentythree_twentythree,
-/obj/structure/easel,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"QL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"QM" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"QN" = (
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"QO" = (
-/obj/machinery/button/remote/airlock{
- id = "dorm7";
- pixel_y = 27;
- specialfunctions = 4
- },
-/obj/structure/bed/chair/sofa/corp/right{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"QP" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"QQ" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"QR" = (
-/obj/effect/landmark/start/entertainer,
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"QS" = (
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"QV" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"QW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"QX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/camera/network/command{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"QY" = (
-/obj/random/vendorall,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/science/picnic)
-"QZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start/chaplain,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"Ra" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/skills{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"Rb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Rc" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Rd" = (
-/obj/structure/table/reinforced,
-/obj/item/device/megaphone,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"Re" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Rf" = (
-/obj/machinery/beehive,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Rg" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "packageSort1"
- },
-/obj/structure/disposalpipe/down{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Rh" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/circuits)
-"Ri" = (
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Rk" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/computer/timeclock/premade/north,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Rm" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Rn" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "Port to Isolation"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Ro" = (
-<<<<<<< HEAD
-/obj/structure/disposalpipe/segment{
- dir = 4
-=======
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-/area/groundbase/medical/lobby)
-"Rp" = (
-/mob/living/simple_mob/animal/passive/cow,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"Rq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/research{
- frequency = 1379;
- id_tag = "xenobio_airlock_interior";
- locked = 1;
- name = "Xenobiology Lab";
- req_access = list(47,55)
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- dir = 1;
- frequency = 1379;
- master_tag = "xenobio_airlock_control";
- name = "Xenobiology Access Button";
- pixel_y = -32;
- req_access = null;
- req_one_access = list(47,55)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/xenobiology)
-"Rr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Rs" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/chapel)
-"Ru" = (
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/sw)
-"Rv" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Rw" = (
-/obj/structure/table/woodentable,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/item/device/perfect_tele{
- desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Site Manager's, and they are authorized to use it.";
- name = "manager's translocator"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captain)
-"Ry" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"Rz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"RB" = (
-/obj/machinery/portable_atmospherics/canister/phoron,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"RC" = (
-/obj/item/weapon/gun/projectile/shotgun/doublebarrel{
- name = "chef's double-barreled shotgun"
- },
-/obj/item/weapon/paper{
- info = "This permit signifies that the Chef is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest.";
- name = "Shotgun permit"
- },
-/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
-/obj/structure/table/wooden_reinforced,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/kitchen/backroom)
-"RD" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"RE" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/rnd)
-<<<<<<< HEAD
-=======
-"RF" = (
-/turf/simulated/open,
-/area/groundbase/level2/se)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"RG" = (
-/obj/machinery/camera/network/civilian{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"RH" = (
-/obj/structure/table/woodentable,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 4;
- name = "Chapel";
- sortType = "Chapel"
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"RI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"RJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"RK" = (
-/obj,
-/turf/simulated/open/virgo3c,
-/area/groundbase/level2/northspur)
-"RL" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/sw)
-"RO" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"RP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"RQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"RR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"RU" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"RV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"RW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"RX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Sa" = (
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- dir = 8;
- id_tag = "xenobot_airlock_control";
- name = "Xenobotany Access Console";
- pixel_x = 24;
- tag_exterior_door = "xenobot_airlock_exterior";
- tag_interior_door = "xenobot_airlock_interior"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Sb" = (
-/obj/structure/table/steel,
-/obj/item/device/electronic_assembly/large/default,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Sc" = (
-/obj/structure/table/woodentable,
-/obj/item/device/tvcamera,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Se" = (
-/obj/structure/table/woodentable,
-/obj/item/clothing/mask/gas/clown_hat{
- desc = "Legends say that if on a full moon you drink iced tea from Donksoft Brand Donksofts you will feel the burn for only 99.99 try now or die in an action packed adventure into the depths of four cups of peanut butter, margerine, not butter, fourty five ounces of liquid sugar, eat fresh meat fresh";
- name = "The Clown Mask"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Sf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Sg" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"Sj" = (
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Sl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/item/device/destTagger,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Sm" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Sn" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Sp" = (
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"Sq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Ss" = (
-<<<<<<< HEAD
-/obj/structure/closet/chefcloset,
-/obj/item/glass_jar,
-/obj/item/device/retail_scanner/civilian,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/device/destTagger{
- pixel_x = 4;
- pixel_y = 3
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/tool/wrench,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"St" = (
-/obj/structure/fence/corner{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"Su" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/research{
- frequency = 1379;
- id_tag = "xenobot_airlock_interior";
- locked = 1;
- name = "Xenobotany Lab";
- req_access = list(47,55)
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "xenobot_airlock_control";
- name = "Xenobotany Access Button";
- pixel_y = 32;
- req_one_access = list(47,55)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/xenobot)
-"Sv" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Sy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Sz" = (
-/obj/machinery/computer/communications{
- dir = 4
- },
-/obj/item/weapon/storage/secure/safe{
- pixel_x = -24
- },
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"SC" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 1;
- name = "Slime Pen";
- req_access = list(55)
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"SE" = (
-/obj/structure/bed/chair/comfy/blue{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"SF" = (
-/obj/machinery/door/airlock{
- id_tag = "dorm7";
- name = "Room 7"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/dorms/room7)
-"SH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"SI" = (
-/obj/machinery/door/window/southleft{
- dir = 4;
- name = "Library Desk Door";
- req_access = list(37)
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"SJ" = (
-/obj/structure/closet/walllocker_double{
- dir = 4;
- pixel_x = 27
- },
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/storage/box{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/level2/nw)
-"SK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/xenohall)
-"SL" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/triage)
-"SM" = (
-/obj/item/weapon/bedsheet/green,
-/obj/structure/bed/padded,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/landmark{
- name = "morphspawn"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"SN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"SO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"SQ" = (
-/obj/machinery/disposal/wall{
- dir = 1;
- name = "Auto-Resleeving Item Deposit"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 10;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"SR" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 28
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"ST" = (
-/obj/machinery/camera/network/research/xenobio,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"SU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"SV" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"SW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"SX" = (
-/obj/structure/table/woodentable,
-/obj/structure/flora/pottedplant/small{
- pixel_y = 12
- },
-/obj/structure/sign/painting/library_secure{
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"SY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"SZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
-"Ta" = (
-/obj/machinery/autolathe,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Tc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Td" = (
-/obj/machinery/photocopier,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Tf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Th" = (
-/obj/structure/closet/secure_closet/hydroponics/sci{
- req_access = list(77)
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Ti" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Tj" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Tk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"Tl" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Tm" = (
-/obj/machinery/chem_master/condimaster,
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Tn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"Tp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Tq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Tr" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Tu" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Tx" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"Ty" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"TB" = (
-/obj/structure/sign/painting/library_secure{
- pixel_y = -30
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"TC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"TD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"TF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/medical,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"TH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"TI" = (
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/cargo/bay)
-"TJ" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"TL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level2/se)
-"TM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/groundbase/science/server)
-"TN" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light,
-/obj/effect/landmark/start/entertainer,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"TO" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/cargo,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"TS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Bar"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/bar/upper)
-"TT" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"TU" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/reinforced,
-/area/groundbase/medical/triage)
-"TV" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"TX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/command/captainq)
-"TZ" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"Ub" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-<<<<<<< HEAD
-=======
-"Uc" = (
-/obj/structure/stairs/spawner/south,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ud" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"Ue" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Uf" = (
-/obj/structure/filingcabinet/filingcabinet,
-/obj/machinery/camera/network/command,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Ug" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Uh" = (
-/obj/machinery/atmospherics/unary/heater{
- icon_state = "heater"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Uj" = (
-/obj/machinery/door/blast/regular{
- id = "xenobiodiv4";
- layer = 8;
- name = "Divider"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Uk" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"Um" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Un" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Uo" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Ur" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Ut" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Uu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/full,
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Uv" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/syringes,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Uw" = (
-/obj/effect/landmark/start/chef,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"Ux" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Uy" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Uz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room8)
-"UB" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"UC" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/requests_console{
- department = "Service";
- dir = 4;
- pixel_x = -25
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"UD" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/unexplored/outdoors)
-"UE" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/level2/se)
-"UF" = (
-/obj/structure/sign/directions/bar{
- dir = 8;
- pixel_y = 32
- },
-/obj/structure/sign/directions/dorms{
- dir = 1;
- pixel_y = 38
- },
-/obj/structure/sign/directions/medical{
- dir = 4;
- pixel_y = 44
- },
-/obj/structure/sign/directions/cargo{
- dir = 4;
- pixel_y = 26
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"UG" = (
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"UH" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/unexplored/rock)
-"UI" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/Chemistry)
-=======
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"UK" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = -2;
- pixel_y = 10
- },
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 5;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"UL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northright{
- name = "Cargo Ordering";
- req_access = list(50)
- },
-/obj/structure/table/reinforced,
-/turf/simulated/floor{
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"UN" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"UQ" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"UR" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"US" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"UT" = (
-/turf/simulated/wall,
-/area/groundbase/command/hop)
-"UU" = (
-/obj/machinery/shower{
- dir = 1;
- pixel_y = -2
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/curtain/open/shower/medical,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/medical/virology)
-"UV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/reagentgrinder,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"UW" = (
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"UX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"UY" = (
-/obj/machinery/light/bigfloorlamp,
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/Chemistry)
-"Vb" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"Vc" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Vd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"Ve" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Vf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Vg" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/psych)
-"Vh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/picnic)
-"Vi" = (
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"Vj" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Vk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/nw)
-"Vl" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/kitchen)
-"Vm" = (
-/obj/machinery/light/small,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/lobby)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Vo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"Vq" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"Vr" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Vs" = (
-<<<<<<< HEAD
-/turf/simulated/open/virgo3c,
-/area/groundbase/level2/se)
-=======
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Vt" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"Vu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Vv" = (
-/obj/structure/sign/directions/evac{
- dir = 8;
- pixel_x = -32;
- pixel_y = -32
- },
-<<<<<<< HEAD
-/obj/structure/sign/directions/science/exploration{
- dir = 8;
- pixel_x = -32;
- pixel_y = -38
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/groundbase/level2/nw)
-"Vw" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Vx" = (
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "dorm2";
- pixel_x = -27;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"Vz" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"VA" = (
-/turf/simulated/floor/glass/reinforced{
- outdoors = 1
- },
-/area/groundbase/level2/westspur)
-"VB" = (
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 4;
- name = "Robotics Desk";
- req_access = list(29,47);
- req_one_access = null
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "robshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/robotics)
-"VC" = (
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"VD" = (
-/obj/structure/table/glass,
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"VE" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/photo_album{
- pixel_y = -10
- },
-/obj/item/weapon/reagent_containers/food/drinks/flask{
- pixel_x = 8
- },
-/obj/item/weapon/reagent_containers/food/drinks/bottle/carnoth,
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"VG" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"VH" = (
-/obj/structure/table/standard,
-/obj/machinery/power/apc,
-/obj/structure/cable/yellow,
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"VI" = (
-/obj/structure/table/steel,
-/obj/item/device/slime_scanner,
-/obj/item/device/slime_scanner,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"VJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"VK" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"VL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"VN" = (
-/obj/structure/table/woodentable,
-/obj/random/donkpocketbox,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"VO" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/open,
-/area/groundbase/level2/eastspur)
-"VQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/hall)
-"VR" = (
-/turf/simulated/open,
-/area/groundbase/level2/northspur)
-"VS" = (
-/obj/structure/table/woodentable,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"VT" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"VV" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"VW" = (
-/obj/structure/bed/chair/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"VX" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"VY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/window/northleft{
- dir = 2;
- icon_state = "right";
- name = "Reception Window"
- },
-/obj/machinery/door/window/brigdoor/eastright{
- dir = 1;
- name = "Head of Personnel's Desk";
- req_access = list(57)
- },
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "hop_office_desk";
- layer = 3.1;
- name = "HoP's Shutters"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"VZ" = (
-/obj/machinery/door/window/brigdoor/southright{
- dir = 1;
- req_access = list(77);
- req_one_access = newlist()
- },
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Wa" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"Wb" = (
-/obj/machinery/computer/arcade{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Wc" = (
-/obj/structure/cable/yellow{
- icon_state = "32-2"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/civilian/bar/upper)
-"Wd" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/level2/northspur)
-"We" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/vending/nifsoft_shop,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"Wf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Wg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Wh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"Wi" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/landmark/start/entertainer,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Wj" = (
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Wk" = (
-/obj/machinery/light,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Wl" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/hydroponics)
-"Wm" = (
-/obj/machinery/keycard_auth{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"Wn" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/robotics)
-"Wp" = (
-/obj/structure/table/standard,
-/obj/machinery/requests_console{
- department = "Service";
- dir = 4;
- pixel_x = -25
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"Wr" = (
-/obj/structure/bed/chair/sofa/bench/left{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/nw)
-"Wu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Wv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Ww" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "packageSort1"
- },
-/obj/structure/disposalpipe/trunk,
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Wx" = (
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Wy" = (
-/obj/structure/closet/secure_closet/RD,
-/obj/item/device/aicard,
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"Wz" = (
-/obj/structure/table/rack,
-/obj/item/canvas,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_twentythree,
-/obj/item/paint_palette,
-/obj/item/paint_brush,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"WA" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"WB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"WC" = (
-/obj/effect/mouse_hole_spawner,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/sw)
-"WD" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-=======
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/medical/virology)
-"WE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"WG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"WH" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/se)
-"WK" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room5)
-"WM" = (
-/obj/structure/table/steel,
-/obj/item/weapon/melee/baton/slime/loaded,
-/obj/item/weapon/melee/baton/slime/loaded,
-/obj/item/weapon/gun/energy/taser/xeno,
-/obj/item/weapon/gun/energy/taser/xeno,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = -8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"WN" = (
-/obj/item/weapon/bedsheet/green,
-/obj/structure/bed/padded,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"WO" = (
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"WP" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"WQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"WR" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/lino{
- edge_blending_priority = 0.1
- },
-/area/groundbase/civilian/kitchen)
-"WU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"WV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/freezer/cold,
-/area/groundbase/civilian/kitchen/freezer)
-"WW" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/circuits)
-"WX" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/level2/westspur)
-"WY" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"WZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"Xa" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"Xc" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Xd" = (
-/obj/machinery/camera/network/civilian{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Xf" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/lino,
-/area/groundbase/civilian/chapel/office)
-"Xg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Xh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Chapel Office";
- req_access = list(27)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/civilian/chapel/office)
-"Xi" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Xj" = (
-/obj/structure/table/bench/padded,
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Xl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Xn" = (
-/obj/item/weapon/rig/hazmat/equipped,
-/obj/structure/table/rack,
-/obj/item/clothing/glasses/welding/superior,
-/obj/item/weapon/cartridge/signal/science,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rd)
-"Xq" = (
-/obj/machinery/vending/nifsoft_shop,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Xr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Xs" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/command/hop)
-"Xt" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"Xv" = (
-/obj/structure/closet/walllocker_double/north{
- dir = 8;
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/circuits)
-"Xw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"Xx" = (
-/obj/machinery/power/apc{
- dir = 4;
- nightshift_setting = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/science/picnic)
-"Xy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/server)
-"XA" = (
-<<<<<<< HEAD
-/obj/machinery/light/small,
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/medical/Chemistry)
-=======
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/computer/guestpass{
- dir = 4;
- pixel_x = -25
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
->>>>>>> b7b3ae73e0... Merge pull request #12838 from Very-Soft/gbwilds
-"XB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"XC" = (
-/obj/structure/bed/chair/sofa/bench,
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"XD" = (
-/obj/structure/bed/chair/sofa/corp,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room3)
-"XE" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/xenobio,
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"XG" = (
-/obj/effect/landmark/start/cargo,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"XH" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/rnd)
-"XI" = (
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "xenobotshutters";
- name = "Privacy Shutters"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/xenobot)
-"XJ" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level2/ne)
-"XK" = (
-/obj/structure/table/hardwoodtable,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"XM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Bridge";
- req_access = list(19)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/command/bridge)
-"XO" = (
-/obj/item/device/radio/headset/headset_med,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"XR" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"XT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/sign/department/mail{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/cargo/office)
-"XU" = (
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- dir = 8;
- pixel_x = 30
- },
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"XW" = (
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"XX" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/rd)
-"Yb" = (
-/obj/structure/table/standard,
-/obj/item/weapon/disk/tech_disk,
-/obj/item/weapon/disk/tech_disk,
-/obj/item/weapon/disk/design_disk,
-/obj/item/weapon/disk/design_disk,
-/obj/item/weapon/reagent_containers/dropper{
- pixel_y = -4
- },
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/rnd)
-"Yc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Yd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/hall)
-"Ye" = (
-/obj/machinery/vending/medical,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"Yf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Yg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/command/bridge)
-"Yj" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"Yl" = (
-/obj/structure/table/bench/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"Ym" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"Yn" = (
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 2;
- id = "xenobotshutters";
- name = "Privacy Shutters"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/xenobot)
-"Yp" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/dorms)
-"Yr" = (
-/obj/structure/sign/department/bar,
-/turf/simulated/wall,
-/area/groundbase/civilian/bar/upper)
-"Ys" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenohall)
-"Yt" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Yu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/Chemistry)
-"Yv" = (
-/obj/structure/bed/chair/comfy/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/hop,
-/turf/simulated/floor/carpet,
-/area/groundbase/command/hop)
-"Yx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"Yz" = (
-/obj/machinery/vending/loadout/uniform,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/robotics)
-"YA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"YF" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"YG" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"YH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/chapel)
-"YI" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/xenohall)
-"YL" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"YM" = (
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level2/sw)
-"YN" = (
-/obj/machinery/button/remote/blast_door{
- id = "xenobotshutters";
- name = "Privacy Shutter Control";
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"YO" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/open,
-/area/groundbase/civilian/bar/upper)
-"YQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"YR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/bar/upper)
-"YS" = (
-/obj/machinery/biogenerator,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"YT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/cafe,
-/area/groundbase/civilian/kitchen)
-"YW" = (
-/obj/structure/fence/corner{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/civilian/hydroponics/out)
-"YX" = (
-/obj/structure/table/steel,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/weapon/soap/nanotrasen,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/janitor)
-"YZ" = (
-/obj/machinery/atm{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"Za" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room6)
-"Zb" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen7";
- name = "Pen 7 Containment";
- pixel_y = -38;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiodiv5";
- name = "Divider";
- pixel_y = -27;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology)
-"Zc" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Zd" = (
-/obj/machinery/computer/centrifuge,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Ze" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/virology)
-"Zf" = (
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/se)
-"Zg" = (
-/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level2/nw)
-"Zh" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled{
- edge_blending_priority = -1;
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"Zi" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor/carpet/geo,
-/area/groundbase/civilian/kitchen/backroom)
-"Zk" = (
-/obj/item/weapon/bedsheet/browndouble,
-/obj/structure/bed/double/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room2)
-"Zl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start/botanist,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/hydroponics)
-"Zn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level2/nw)
-"Zo" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Zp" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/meeting)
-"Zr" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"Zs" = (
-/obj/structure/bed/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/groundbase/medical/psych)
-"Zt" = (
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"Zv" = (
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/obj/structure/table/woodentable,
-/obj/machinery/recharger{
- pixel_y = 5
- },
-/turf/simulated/floor/wood,
-/area/groundbase/civilian/library)
-"Zw" = (
-/obj/effect/landmark/start/mime,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/groundbase/civilian/mime)
-"Zx" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level2/sw)
-"Zy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start/qm,
-/turf/simulated/floor/tiled,
-/area/groundbase/cargo/office)
-"Zz" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot/storage)
-"ZB" = (
-/obj/machinery/computer/crew{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/lobby)
-"ZC" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room1)
-"ZD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/groundbase/cargo/qm)
-"ZE" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/cargo/office)
-=======
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level2/ne)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ZF" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/gloves{
- pixel_y = 4
- },
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/xenobot)
-"ZG" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/command/bridge)
-"ZI" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 4;
- frequency = 1380;
- id_tag = "cargo_bay";
- pixel_x = -23
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/bay)
-"ZJ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/hall)
-"ZK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor,
-/area/rnd/xenobiology)
-"ZL" = (
-/obj/structure/sign/department/sci,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/xenobot)
-"ZM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"ZN" = (
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "xenobotshutters";
- name = "Privacy Shutters"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/science/xenobot)
-"ZO" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start/captain,
-/turf/simulated/floor/wood,
-/area/groundbase/command/captainq)
-"ZP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/civilian/chapel)
-"ZR" = (
-/obj/structure/table/woodentable,
-/obj/machinery/computer/skills{
- dir = 8
- },
-/obj/item/weapon/paper/dockingcodes,
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"ZT" = (
-/obj/machinery/door/airlock{
- id_tag = "toilet2";
- name = "Toilet 2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"ZU" = (
-/turf/simulated/floor/wood,
-/area/groundbase/dorms/room7)
-"ZV" = (
-/turf/simulated/floor/carpet/blucarpet,
-/area/groundbase/command/captain)
-"ZW" = (
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- pixel_y = 29
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/triage)
-"ZY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/civilian/library)
-"ZZ" = (
-/obj/structure/table/marble,
-/obj/machinery/door/blast/gate/thin{
- dir = 2;
- id = "kitchen";
- layer = 3.3
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/civilian/kitchen)
-
-(1,1,1) = {"
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-fX
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-ON
-"}
-(2,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-AD
-AD
-AD
-AD
-AD
-AD
-AD
-AD
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(3,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-xE
-xE
-xE
-bY
-bY
-xE
-xE
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-AD
-AD
-AD
-AD
-AD
-AD
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(4,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-xE
-xE
-xE
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-AD
-AD
-AD
-AD
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(5,1,1) = {"
-fX
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-Fw
-Fs
-pw
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(6,1,1) = {"
-fX
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-Fw
-Fs
-pw
-bY
-bY
-Jc
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-it
-it
-it
-it
-it
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(7,1,1) = {"
-fX
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-wS
-UH
-UH
-Fw
-Fs
-pw
-bY
-Jc
-Jc
-Jc
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-it
-it
-it
-it
-SR
-lc
-gz
-Al
-EE
-it
-it
-it
-it
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(8,1,1) = {"
-fX
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-Fw
-Fs
-xE
-bY
-bY
-Jc
-Jc
-Jc
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-JP
-jA
-iQ
-Kg
-wc
-ls
-WG
-ls
-DX
-pq
-Zo
-jA
-Wk
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(9,1,1) = {"
-fX
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-wS
-KW
-xE
-bY
-bY
-Jc
-Jc
-Jc
-Jc
-Jc
-Jc
-bY
-bY
-bY
-bY
-bY
-Jc
-Jc
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-HY
-jA
-jA
-nI
-pD
-ls
-WG
-ls
-NS
-Gj
-jA
-jA
-UG
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(10,1,1) = {"
-fX
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-wS
-wS
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-xE
-xE
-bY
-bY
-bY
-rG
-il
-il
-il
-il
-il
-il
-il
-il
-il
-il
-il
-il
-il
-il
-il
-zL
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-ST
-jA
-jA
-oM
-GH
-ls
-iK
-ls
-FO
-kz
-jA
-jA
-nY
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(11,1,1) = {"
-fX
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-xE
-xE
-xE
-bY
-ln
-iY
-iW
-bY
-xE
-bY
-bY
-bY
-Jc
-Jc
-bY
-Jc
-Jc
-Jc
-Jc
-Jc
-Jc
-sN
-Jc
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-Ii
-Ii
-Ii
-it
-DH
-Fi
-xZ
-Al
-Zb
-it
-Dz
-Dz
-Dz
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(12,1,1) = {"
-fX
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-xE
-xE
-xE
-wK
-wK
-lY
-wK
-wK
-xE
-xE
-xE
-xE
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-Jc
-Jc
-sN
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-uP
-uP
-uP
-uP
-uP
-Zx
-uP
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-JP
-jA
-iQ
-CS
-wc
-ls
-WG
-ls
-DX
-aQ
-Zo
-jA
-Wk
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(13,1,1) = {"
-fX
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-xE
-xE
-xE
-wK
-rO
-Lb
-IB
-wK
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-bY
-bY
-bY
-sN
-pw
-Gp
-Gp
-Gp
-Gp
-Gp
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Db
-Db
-Db
-Db
-Db
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-HY
-sg
-jA
-SC
-pD
-ls
-WG
-ls
-NS
-Aa
-jA
-sg
-UG
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(14,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-xE
-xE
-xE
-wK
-Il
-Zw
-am
-wK
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-yW
-Ja
-tZ
-Pz
-KC
-ro
-QK
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Db
-OK
-SV
-kI
-Db
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-ST
-jA
-jA
-UQ
-GH
-ls
-iK
-ls
-FO
-Tu
-jA
-jA
-nY
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(15,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-xE
-xE
-xE
-wK
-GQ
-ex
-qD
-wK
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-sN
-pw
-OU
-Gp
-aJ
-xA
-xA
-fD
-TZ
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Db
-Uh
-DF
-Wh
-Db
-Zx
-Zx
-Zx
-Zx
-Zx
-it
-Uj
-Uj
-Uj
-it
-wO
-Fi
-hT
-Al
-cY
-it
-oA
-Dz
-Dz
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(16,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-KW
-KW
-xE
-wK
-wK
-wK
-wK
-wK
-xE
-xE
-Do
-Do
-Do
-Do
-Do
-Do
-Do
-Do
-xE
-bY
-bY
-sN
-bY
-OU
-Gp
-aJ
-QR
-xA
-fD
-TZ
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Db
-qB
-nE
-Wh
-Db
-Db
-Db
-Db
-Db
-Db
-it
-JP
-jA
-iQ
-zB
-wc
-ls
-WG
-ls
-DX
-NA
-Zo
-jA
-Wk
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(17,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-Do
-fZ
-yX
-Cy
-vS
-sb
-KO
-Do
-xE
-xE
-bY
-sN
-bY
-OU
-Gp
-aJ
-xA
-QN
-fD
-TZ
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-uP
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Db
-rC
-MG
-fB
-VZ
-QC
-Ms
-lm
-Rc
-hH
-it
-HY
-pE
-jA
-tT
-pD
-ls
-WG
-ls
-NS
-zI
-jA
-pE
-UG
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(18,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-Do
-BK
-Vb
-Vb
-VJ
-Vb
-zb
-Do
-xE
-xE
-bY
-sN
-bY
-OU
-Gp
-aJ
-JH
-bW
-fD
-TZ
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Zx
-Db
-Vw
-EA
-Eb
-LB
-Ei
-Ex
-Jy
-yM
-RB
-it
-ST
-jA
-jA
-tB
-GH
-ls
-kN
-ls
-FO
-bj
-jA
-jA
-nY
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(19,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-Do
-zz
-Vb
-KE
-aD
-Vb
-YX
-Do
-xE
-xE
-bY
-sN
-bY
-OU
-Gp
-aJ
-xA
-QN
-fD
-TZ
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Zx
-Db
-Vw
-EA
-Eb
-bL
-DI
-te
-YL
-Rn
-OF
-it
-qS
-qS
-qS
-it
-cn
-Fi
-xZ
-Al
-Oo
-it
-Fb
-Fb
-Fb
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(20,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-wS
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-wS
-wS
-wS
-wS
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-Do
-HB
-eE
-nd
-ey
-Vb
-Vb
-Do
-bY
-bY
-bY
-sN
-bY
-OU
-Gp
-aJ
-QR
-xA
-fD
-TZ
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-Qu
-cK
-cK
-uP
-uP
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Db
-ik
-EA
-Eb
-IZ
-Ni
-YL
-Gy
-SV
-Zz
-it
-JP
-jA
-iQ
-hX
-wc
-ls
-WG
-ls
-DX
-Sj
-Zo
-jA
-Wk
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(21,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-Do
-zO
-Vb
-Vb
-qr
-Vb
-zb
-Do
-GY
-bY
-bY
-sN
-pw
-OU
-Gp
-aJ
-xA
-xA
-fD
-BZ
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-jG
-jG
-jG
-jG
-Zx
-Zx
-Zx
-Db
-Vw
-EA
-Sn
-qY
-JM
-sY
-bB
-vs
-vs
-it
-HY
-jA
-jA
-xN
-pD
-ls
-WG
-ls
-NS
-xy
-jA
-jA
-UG
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(22,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-UH
-UH
-UH
-UH
-wS
-wS
-Cr
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-Do
-kn
-aO
-US
-HG
-rU
-jX
-Do
-bY
-Jc
-bY
-OZ
-Cw
-ay
-oB
-vT
-SJ
-GO
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-jG
-jG
-lV
-lV
-lV
-lV
-lV
-lV
-lV
-lV
-lV
-lV
-yO
-lV
-lV
-lV
-lV
-lV
-ST
-jA
-jA
-hl
-GH
-ls
-iK
-ls
-ZK
-bb
-jA
-jA
-nY
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(23,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-Do
-Do
-Do
-Do
-eJ
-Do
-Do
-Do
-bY
-Jc
-bY
-sN
-pw
-Gp
-Gp
-Gp
-Gp
-Gp
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-jG
-jG
-lV
-IE
-BR
-BR
-nV
-BR
-qP
-IE
-BR
-BR
-kq
-Ci
-lv
-eT
-Zr
-lV
-it
-it
-it
-it
-do
-Fi
-xZ
-Al
-PQ
-it
-it
-it
-it
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(24,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-bY
-bY
-bY
-bY
-zR
-Hv
-zR
-bY
-bY
-bY
-bY
-bY
-sN
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-jG
-jG
-Yn
-BR
-BR
-es
-OL
-lJ
-BR
-BR
-BR
-BR
-Qg
-PX
-PX
-IJ
-Ci
-lV
-LE
-DD
-Ha
-Ax
-ls
-ls
-WG
-ls
-ls
-ls
-fV
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(25,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-Jc
-Jc
-bY
-Zg
-bY
-GZ
-il
-il
-il
-il
-il
-il
-LA
-bY
-Jc
-Jc
-Jc
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-jG
-jG
-Yn
-BR
-BR
-wF
-KY
-wF
-BR
-BR
-BR
-BR
-vO
-BR
-BR
-wn
-pk
-lV
-jL
-ls
-ls
-ls
-ls
-ls
-WG
-ls
-ls
-ls
-Uv
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(26,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-sZ
-bY
-bY
-bY
-bY
-wD
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-jG
-jG
-Fl
-Fl
-Fl
-jG
-Yn
-BR
-BR
-wF
-jH
-wF
-aE
-Ir
-Ir
-Ir
-qy
-wZ
-dl
-Xr
-lJ
-lV
-mt
-XE
-ls
-ls
-zn
-jF
-IT
-zn
-ls
-uM
-Mz
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(27,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-FF
-FF
-FF
-FF
-FF
-FF
-FF
-FF
-FF
-Wc
-MD
-MD
-MD
-Gn
-FF
-FF
-FF
-bY
-sZ
-uj
-Vl
-Vl
-Vl
-Vl
-Vl
-Vl
-Vl
-Vl
-Vl
-Vl
-JJ
-JJ
-JJ
-JJ
-JJ
-JJ
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-Yn
-BR
-BR
-wF
-jH
-wF
-jH
-BR
-BR
-BR
-ox
-lV
-QP
-kq
-MX
-lV
-DK
-YQ
-YQ
-YQ
-YQ
-tf
-ls
-ls
-ls
-ls
-zV
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(28,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-FF
-ye
-RU
-lu
-YR
-YR
-Yl
-Yl
-DZ
-PU
-Ea
-AK
-AK
-cl
-ib
-sd
-FF
-bY
-sZ
-GT
-tW
-vI
-Vl
-Oz
-Ej
-ep
-LD
-Ss
-Wp
-JO
-JJ
-Dp
-AF
-MB
-qo
-JJ
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-jG
-lV
-Pc
-BR
-wF
-He
-wF
-jH
-yF
-Iu
-UK
-BF
-lV
-bV
-kq
-fl
-lV
-ur
-aX
-MV
-ic
-rW
-SY
-ls
-ic
-uN
-WM
-VI
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(29,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-rP
-rP
-rP
-rP
-rP
-rP
-rP
-rP
-rP
-xE
-xE
-xE
-FF
-Rm
-JB
-LS
-Ny
-Ny
-LS
-LS
-LS
-LS
-LS
-Ny
-Ny
-Ch
-JB
-jT
-rl
-bY
-sZ
-GT
-Bz
-WR
-ZZ
-Gc
-Gc
-Gc
-Gc
-Gc
-Gc
-qQ
-JJ
-CP
-AF
-AF
-si
-JJ
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-jG
-Yn
-sT
-BR
-BR
-Re
-dl
-Jz
-BR
-BR
-mB
-oq
-lV
-lV
-Su
-lV
-lV
-it
-it
-it
-it
-it
-Rq
-it
-it
-it
-it
-it
-it
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(30,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-mo
-uQ
-CW
-MY
-IR
-AG
-kt
-IR
-rP
-xE
-xE
-xE
-FF
-PS
-LS
-Ny
-Ny
-Ny
-Ny
-Ny
-Ux
-Ny
-Ny
-Ny
-Ny
-yh
-LS
-sl
-rl
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-Gc
-Gc
-eo
-Tm
-Gc
-Gc
-Gc
-JJ
-qZ
-Uw
-NG
-WV
-JJ
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-jG
-Yn
-aU
-BR
-wF
-KY
-wF
-BR
-GI
-BR
-cv
-ZF
-lV
-BR
-kq
-bz
-lV
-gf
-uu
-om
-it
-rT
-SY
-ls
-it
-az
-KL
-ag
-ag
-ag
-ag
-ag
-ag
-Zx
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(31,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-xE
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-Zv
-MY
-MY
-MY
-Ed
-uz
-bQ
-vQ
-rP
-xE
-xE
-xE
-FF
-Yf
-Ny
-Ny
-GS
-TT
-TT
-TT
-TT
-TT
-TT
-TT
-Cx
-yh
-Ny
-DT
-FF
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-Gc
-Gc
-Jm
-Lf
-rt
-NM
-yP
-Ac
-jw
-JQ
-JQ
-uE
-JJ
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-lV
-KF
-BR
-wF
-jH
-wF
-BR
-BR
-BR
-mB
-oq
-lV
-Th
-TV
-Pw
-Gs
-SO
-SK
-SO
-is
-qX
-Ub
-uY
-it
-QY
-Br
-lW
-ag
-ag
-ag
-Fu
-ag
-ag
-Zx
-Zx
-Zx
-Zx
-Zx
-ON
-"}
-(32,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-sy
-MY
-MY
-MY
-MY
-wg
-MY
-UR
-rP
-xE
-xE
-xE
-FF
-Dx
-Ny
-Ny
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-yh
-Ny
-cs
-rl
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-ht
-Vc
-Es
-jv
-qA
-Vf
-uh
-JJ
-Dc
-AF
-AF
-kd
-JJ
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-Yn
-BR
-BR
-wF
-jH
-wF
-BR
-yF
-Iu
-UK
-BF
-lV
-yU
-Sa
-wY
-lV
-Fk
-pV
-Qn
-LW
-ls
-Ks
-MV
-it
-cS
-Xx
-lW
-lW
-lW
-lW
-lW
-lW
-ag
-ag
-ag
-Zx
-Zx
-Zx
-ON
-"}
-(33,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-KW
-KW
-KW
-KW
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-rP
-rP
-rP
-rP
-rP
-rP
-cX
-cX
-cX
-MY
-jk
-wg
-MY
-Od
-rP
-xE
-xE
-xE
-FF
-AS
-LS
-Ny
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-yh
-LS
-sl
-rl
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-Tf
-eq
-Es
-JD
-qA
-Vf
-QE
-JJ
-HT
-rr
-rr
-jy
-JJ
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-jG
-Yn
-BR
-BR
-wF
-He
-wF
-BR
-mW
-Rh
-Rh
-Rh
-Rh
-Rh
-Rh
-Rh
-Rh
-ff
-Gb
-oS
-jV
-it
-it
-it
-it
-Bl
-Mf
-ag
-lW
-lW
-Jq
-cP
-Jq
-lW
-ag
-ag
-ag
-Zx
-Zx
-ON
-"}
-(34,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-PO
-rb
-Wz
-rb
-CC
-rP
-wE
-Ak
-cX
-zi
-AX
-XR
-MY
-MY
-rP
-xE
-xE
-xE
-FF
-PS
-LS
-Ny
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-yh
-LS
-sl
-rl
-bY
-sZ
-fz
-kf
-WR
-ZZ
-iO
-tj
-Sm
-FW
-qA
-Vf
-cE
-JJ
-JJ
-JJ
-JJ
-JJ
-JJ
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-Yn
-BR
-BR
-KP
-oN
-pW
-BR
-Gi
-Rh
-hh
-GJ
-Xv
-th
-my
-dm
-Rh
-EJ
-YI
-ng
-PD
-AH
-lO
-Ga
-Ut
-Xt
-Mf
-ag
-ag
-lW
-FU
-cP
-Jq
-lW
-ag
-ag
-ag
-Zx
-Zx
-ON
-"}
-(35,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-fE
-cX
-ZY
-cX
-Qe
-rP
-zo
-nn
-cX
-iE
-fT
-WY
-MY
-MY
-rP
-xE
-xE
-xE
-FF
-Wi
-mM
-Ux
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-wv
-xS
-TN
-FF
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-rL
-eq
-YA
-gv
-Ku
-Vf
-cm
-rk
-GA
-RC
-wq
-nJ
-rk
-bY
-uP
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-Yn
-BR
-BR
-BR
-BR
-BR
-BR
-zH
-Rh
-Sb
-QV
-Tl
-Tl
-nM
-Lk
-Rh
-bO
-AZ
-ff
-PD
-IO
-qW
-PZ
-fP
-xX
-Vh
-ag
-lW
-lW
-Jq
-cP
-Jq
-lW
-ag
-ag
-ag
-Zx
-Zx
-ON
-"}
-(36,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-Dq
-cX
-Vo
-gx
-gx
-Bm
-DR
-lf
-vJ
-Py
-yt
-cW
-MY
-qw
-rP
-xE
-xE
-xE
-FF
-PS
-LS
-Ny
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-yh
-LS
-cU
-rl
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-jf
-CQ
-rL
-Pk
-QW
-yE
-yP
-BO
-ca
-im
-im
-Dv
-xU
-bY
-uP
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-lV
-YN
-BR
-QM
-BR
-BR
-BR
-ge
-Rh
-ri
-Tl
-Tl
-Au
-Ty
-wI
-Rh
-ff
-AZ
-ff
-PD
-nw
-qW
-lw
-Vr
-Vr
-jU
-lW
-lW
-lW
-lW
-lW
-lW
-ag
-ag
-Fv
-ag
-Zx
-Zx
-ON
-"}
-(37,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-fE
-cX
-wG
-cX
-Qe
-rP
-cX
-fe
-cX
-iE
-fW
-WY
-MY
-MY
-rP
-xE
-xE
-xE
-FF
-PS
-LS
-Ny
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-yh
-LS
-Xj
-rl
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-QW
-fC
-yq
-hi
-GL
-Vf
-uU
-rk
-cx
-Fg
-Fg
-Fg
-xU
-bY
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-lV
-lV
-ZN
-ZN
-XI
-wx
-XI
-lV
-Rh
-NX
-Tl
-UB
-Tl
-Ty
-Tl
-Rh
-Fk
-AZ
-yw
-PD
-ws
-qW
-lw
-Vr
-Vr
-Bl
-ag
-ag
-ag
-ag
-Fu
-ag
-ag
-Fv
-Fv
-ag
-Zx
-Zx
-ON
-"}
-(38,1,1) = {"
-fX
-xE
-Gk
-Gk
-Gk
-Gk
-Gk
-Gk
-kH
-kH
-kH
-kH
-kH
-CB
-CB
-CB
-CB
-CB
-xE
-xE
-xE
-rP
-aV
-in
-jm
-in
-Sc
-rP
-SI
-Gm
-cX
-zi
-WA
-XR
-MY
-MY
-rP
-xE
-xq
-xE
-FF
-Dx
-Ny
-Ny
-YO
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Gl
-Fp
-yh
-Ny
-Ny
-rl
-bY
-sZ
-fz
-Bz
-WR
-ZZ
-GL
-JL
-hV
-rx
-GL
-Vf
-Ih
-rk
-sX
-Fg
-Fg
-Fg
-rk
-bY
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-lV
-CF
-mP
-AT
-mP
-mP
-mP
-FL
-Rh
-Jd
-UX
-Dn
-ww
-Ve
-Ix
-Rh
-vh
-Nb
-Ys
-PD
-aB
-PR
-lw
-Vr
-aw
-Bl
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-Zx
-Zx
-ON
-"}
-(39,1,1) = {"
-fX
-xE
-Gk
-eU
-IY
-Mr
-ZC
-Gk
-OR
-co
-oE
-Im
-kH
-yC
-Ho
-Vq
-TJ
-CB
-xE
-xE
-xE
-rP
-rP
-rP
-rP
-rP
-rP
-rP
-rn
-cX
-cX
-MY
-xt
-wg
-MY
-MY
-rP
-xW
-bX
-Gp
-FF
-xM
-Ny
-Ny
-ps
-Bb
-Bb
-Bb
-Bb
-Bb
-Bb
-Bb
-Iz
-yh
-GS
-CD
-FF
-bY
-sZ
-GT
-Bz
-WR
-ZZ
-GL
-Uo
-qz
-VV
-GL
-Vf
-qQ
-rk
-Zi
-bl
-bl
-Oj
-rk
-bY
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-ZL
-RL
-jG
-jG
-jG
-RL
-jG
-WC
-Rh
-mZ
-kZ
-Rh
-Rh
-Hf
-Rh
-Rh
-PD
-qU
-PD
-PD
-Ov
-PR
-lw
-Vr
-pT
-XX
-XX
-aa
-aa
-XX
-XX
-XX
-XX
-jG
-jG
-Zx
-Zx
-Zx
-ON
-"}
-(40,1,1) = {"
-fX
-xE
-Gk
-rc
-OJ
-BX
-Tx
-Gk
-oL
-wu
-kC
-kC
-kH
-Kj
-Jh
-Ec
-Ec
-CB
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-rP
-Ee
-yp
-yp
-yp
-yp
-vA
-kA
-UR
-rP
-Nd
-mk
-ka
-rl
-PS
-LS
-Ny
-Ny
-Ny
-Ny
-Ny
-Ny
-Ny
-Ny
-Ny
-Ny
-yh
-YO
-Gl
-rl
-bY
-sZ
-GT
-Bz
-Op
-Vl
-zJ
-fC
-fC
-di
-YT
-np
-VH
-rk
-EW
-nf
-nf
-bl
-xU
-bY
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-bY
-Hw
-Hw
-FS
-FS
-FS
-FS
-FS
-FS
-FS
-FS
-tq
-tq
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-ba
-WW
-WW
-qa
-eS
-QL
-ZJ
-Lm
-JU
-lC
-Vr
-fn
-Vr
-Vr
-lw
-Vr
-op
-XX
-Wy
-yT
-Fx
-kT
-hb
-uG
-XX
-jG
-jG
-Zx
-Zx
-Zx
-ON
-"}
-(41,1,1) = {"
-fX
-xE
-Gk
-Ps
-DL
-EH
-Yx
-Gk
-dd
-Qy
-oU
-ar
-kH
-WK
-gQ
-Kc
-DP
-CB
-jn
-jn
-jn
-jn
-jn
-xE
-bY
-bY
-xE
-rP
-Ce
-MY
-MY
-MY
-Qh
-RR
-TD
-Oc
-rP
-bY
-fI
-bY
-rl
-Rm
-LS
-LS
-Ny
-Ny
-Ny
-Ny
-FT
-ip
-xm
-xm
-xm
-Um
-Ny
-hL
-rl
-bY
-sZ
-GT
-Bz
-Bz
-bu
-Gc
-Gc
-Gc
-ab
-Gc
-Gc
-xs
-rk
-hm
-nf
-nf
-bl
-xU
-bY
-uP
-uP
-uP
-cK
-cK
-cK
-uP
-bY
-bY
-bY
-bY
-bY
-bY
-fD
-tO
-Nf
-VA
-VA
-VA
-VA
-VA
-VA
-Nf
-Ru
-YM
-RL
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-RL
-rF
-Ji
-Vr
-hd
-dF
-jz
-Vr
-lC
-Vr
-dM
-Vr
-jz
-ts
-jz
-Vr
-XX
-mz
-Fx
-nt
-pu
-Fx
-md
-aa
-jG
-jG
-Zx
-Zx
-Zx
-ON
-"}
-(42,1,1) = {"
-fX
-xE
-Gk
-EC
-OJ
-VK
-Dl
-Gk
-XD
-wu
-ky
-kC
-kH
-jp
-Jh
-LC
-Ec
-CB
-GF
-kY
-cQ
-ax
-jn
-xE
-bY
-bY
-xE
-rP
-mG
-JF
-LO
-MY
-RG
-Ip
-IQ
-gR
-rP
-GY
-fI
-bY
-FF
-iB
-LV
-wd
-YR
-YR
-OC
-sH
-Uy
-yh
-Dt
-yI
-Ny
-Ny
-jt
-hY
-FF
-bY
-sZ
-GT
-Hz
-zc
-Vl
-gT
-Gc
-hw
-ab
-iN
-Gc
-Rv
-rk
-gY
-NT
-Oh
-mn
-rk
-bY
-uP
-uP
-cK
-cK
-uP
-uP
-uP
-bY
-lQ
-Ja
-Ja
-Ja
-Ja
-Ja
-Ja
-Nf
-VA
-VA
-VA
-VA
-VA
-VA
-Nf
-xD
-xD
-xD
-xD
-xD
-xD
-xD
-xD
-xD
-xD
-xD
-rf
-vo
-ei
-AC
-Yd
-NW
-Nl
-xJ
-Cd
-vB
-LL
-JT
-hx
-cy
-LL
-xp
-sB
-Fx
-fr
-LU
-ad
-zA
-aa
-jG
-jG
-Zx
-Zx
-Zx
-ON
-"}
-(43,1,1) = {"
-fX
-xE
-Gk
-eR
-sw
-PT
-yB
-Gk
-dh
-ue
-RQ
-rM
-kH
-tM
-fm
-jJ
-fY
-CB
-VN
-xi
-ZU
-ZU
-jn
-bY
-bY
-bY
-bY
-rP
-rP
-rP
-rP
-PA
-eH
-Nc
-rP
-rP
-rP
-bY
-fI
-bY
-FF
-FF
-rl
-rl
-rl
-FF
-FF
-TS
-Yr
-BT
-FF
-FF
-rl
-rl
-rl
-FF
-FF
-bY
-sZ
-uj
-Vl
-Vl
-Vl
-tD
-tD
-Vl
-JI
-Vl
-tD
-tD
-rk
-rk
-xU
-xU
-rk
-rk
-bY
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-bY
-bX
-pw
-bY
-bY
-bY
-fD
-tO
-Nf
-VA
-VA
-VA
-VA
-VA
-VA
-Nf
-Ru
-YM
-RL
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-RL
-rF
-qa
-bF
-jz
-mx
-hd
-Vr
-Vr
-SN
-DJ
-Vr
-jz
-IV
-jz
-Vr
-XX
-aY
-Fx
-Fx
-Ra
-Fx
-Fh
-aa
-jG
-jG
-Zx
-Zx
-Zx
-ON
-"}
-(44,1,1) = {"
-fX
-eC
-Gk
-Gk
-Gk
-Gk
-jb
-Gk
-kH
-kH
-kL
-kH
-kH
-CB
-CB
-Qq
-CB
-CB
-gV
-xi
-mw
-rm
-jn
-bY
-Jc
-Jc
-bY
-Jc
-bY
-bY
-LT
-bX
-bY
-Pe
-LT
-bY
-bY
-bY
-fI
-Vv
-bY
-bY
-bY
-bY
-bY
-yj
-LT
-Vk
-bY
-Ad
-LT
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-sZ
-bY
-bY
-QS
-bY
-pw
-pw
-lM
-ml
-LT
-EZ
-pw
-bY
-lM
-bY
-bY
-bY
-tm
-bY
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-bY
-bX
-bY
-bY
-bY
-bY
-wA
-wA
-WX
-WX
-WX
-WX
-WX
-WX
-WX
-WX
-HQ
-HQ
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-PN
-qq
-qq
-qa
-eS
-oC
-Xl
-QL
-Vr
-nK
-OG
-OE
-Vr
-Vr
-sz
-Vr
-Vr
-XX
-xv
-Fx
-Fx
-Ay
-ja
-Xn
-XX
-jG
-jG
-jG
-Zx
-Zx
-ON
-"}
-(45,1,1) = {"
-fX
-eC
-LN
-kk
-BY
-eC
-Mm
-Yp
-Ie
-aF
-Mm
-cd
-uO
-Bs
-CH
-ug
-jW
-SF
-uC
-lN
-sM
-ZU
-jn
-bY
-Jc
-Jc
-Jc
-Jc
-Jc
-Jc
-bY
-bX
-pw
-Pe
-pw
-bY
-bY
-pw
-fI
-pw
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-Vk
-pw
-Ad
-pw
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-sZ
-pw
-bY
-bY
-bY
-bY
-bY
-wl
-ml
-pw
-oG
-bY
-bY
-oG
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-bX
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-Cs
-RL
-jG
-jG
-jG
-RL
-jG
-jG
-Bv
-VB
-DE
-Wn
-Wn
-Wn
-Wn
-PW
-Wn
-Wn
-Wn
-Wn
-Xq
-Vr
-NY
-sn
-Av
-XX
-XX
-aa
-aa
-XX
-XX
-XX
-XX
-jG
-jG
-jG
-Zx
-Zx
-ON
-"}
-(46,1,1) = {"
-fX
-eC
-LN
-kk
-bi
-eC
-LF
-iA
-pI
-iA
-HZ
-iA
-JR
-iA
-iA
-aT
-pp
-jn
-QO
-Bj
-dI
-yy
-jn
-bY
-Jc
-Jc
-Jc
-Jc
-Jc
-bY
-bY
-pG
-mm
-CX
-mm
-mm
-mm
-mm
-Eg
-mm
-mm
-mm
-Fj
-mm
-mm
-mm
-mm
-MZ
-Hm
-oI
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-fK
-Hm
-Hm
-Hm
-Hm
-Hm
-Hm
-Hr
-pJ
-sF
-go
-sF
-vV
-go
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-sF
-ET
-pw
-bY
-IA
-mS
-kl
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-OY
-dy
-pt
-XH
-pt
-pt
-pt
-RE
-Wn
-hU
-Hy
-CA
-AR
-ov
-My
-yN
-Bh
-bf
-Ri
-Wn
-zT
-zT
-nm
-zT
-zT
-zT
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-Fl
-jG
-Zx
-Zx
-ON
-"}
-(47,1,1) = {"
-fX
-eC
-LN
-zh
-HD
-eC
-bA
-Yp
-Dw
-Dw
-vu
-Yp
-DY
-fo
-Yp
-pK
-Kp
-jn
-jn
-jn
-jn
-jn
-jn
-By
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-ml
-pw
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-Vk
-pw
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-wl
-sN
-pw
-oG
-bY
-Oa
-oG
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-fM
-sF
-sF
-qv
-Hn
-WX
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-OY
-OY
-gm
-rh
-dN
-zK
-dN
-OY
-Wn
-GK
-nF
-nF
-nF
-gK
-sG
-eB
-WE
-Pl
-qu
-Wn
-Qa
-aS
-mr
-yu
-fc
-zT
-EB
-jG
-jG
-jG
-jG
-jG
-Fl
-Fl
-Fl
-jG
-Zx
-Zx
-ON
-"}
-(48,1,1) = {"
-fX
-eC
-eC
-eC
-sJ
-bn
-Cb
-bE
-As
-pA
-Wu
-RP
-XK
-As
-Mq
-IX
-yc
-jW
-jW
-iz
-jW
-jW
-dU
-mm
-mm
-mm
-mm
-mm
-cF
-hI
-mm
-Da
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-Vk
-bY
-Zg
-bY
-Jc
-Jc
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-Zg
-bY
-bY
-bY
-bY
-bY
-bY
-lM
-sN
-bY
-lM
-bY
-Oa
-lM
-wD
-Aq
-bY
-bY
-bY
-bY
-Zg
-bY
-bY
-bY
-Wr
-wR
-Bw
-Hn
-Ja
-Ja
-Ja
-Hn
-FS
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-OY
-bZ
-Fm
-Fm
-Fm
-Fm
-Fm
-MR
-Wn
-tb
-dT
-qs
-Pa
-Ev
-rq
-OQ
-mH
-Fd
-mH
-Wn
-ee
-Gt
-ev
-Xy
-bM
-zT
-EB
-EB
-EB
-jG
-Fl
-Fl
-Fl
-Fl
-Fl
-jG
-Zx
-Zx
-ON
-"}
-(49,1,1) = {"
-fX
-eC
-hv
-dx
-BU
-eC
-Rk
-iP
-fo
-Dw
-jr
-iP
-Dw
-Dw
-Yp
-Sy
-Cu
-bN
-bN
-bN
-bN
-bN
-bN
-xE
-xE
-xE
-bY
-yS
-EI
-NK
-yS
-bY
-bY
-bY
-bY
-Jc
-bY
-bY
-bY
-bY
-bY
-bY
-Vk
-bY
-uP
-cK
-cK
-uP
-uP
-cK
-uP
-uP
-uP
-bY
-St
-uX
-uX
-uX
-uX
-uX
-uX
-uX
-uX
-Wl
-Wl
-Wl
-gH
-Wl
-Wl
-Wl
-NP
-Wl
-Wl
-Wl
-Cj
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-pw
-pw
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-OY
-rH
-Fm
-MF
-tI
-cq
-Fm
-Yb
-Wn
-Ao
-wJ
-AL
-ct
-AL
-nk
-Wn
-Wn
-Wn
-Wn
-Wn
-TM
-jB
-ku
-lZ
-kj
-zT
-EB
-EB
-EB
-jG
-jG
-jG
-Fl
-Fl
-jG
-jG
-Zx
-Zx
-ON
-"}
-(50,1,1) = {"
-fX
-eC
-eC
-eC
-IW
-eC
-MJ
-iA
-qb
-iA
-hZ
-iA
-aA
-iA
-iA
-Ca
-sk
-bN
-Lt
-ql
-AB
-uk
-bN
-xE
-xE
-zs
-zs
-FN
-Rs
-GU
-zs
-hM
-hM
-zs
-hM
-hM
-zs
-hM
-hM
-zs
-zs
-UF
-Vk
-bY
-cK
-cK
-uP
-uP
-cK
-uP
-cK
-cK
-uP
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-Wl
-hQ
-fs
-Wv
-pM
-UC
-JZ
-Ep
-OA
-BS
-Wl
-bY
-bY
-bY
-bY
-eN
-eN
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-jG
-OY
-Mw
-jS
-wW
-Lu
-Iy
-cO
-jN
-cc
-Vd
-An
-oW
-MO
-oW
-de
-Wn
-Yz
-ir
-Ue
-Wn
-Gu
-Nn
-Xa
-Bt
-KM
-zT
-EB
-EB
-EB
-EB
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-Zx
-ON
-"}
-(51,1,1) = {"
-fX
-eC
-EU
-ZT
-uy
-eC
-pK
-hr
-AO
-Yp
-pK
-Yp
-Ct
-Ai
-Yp
-eM
-Sq
-jM
-wQ
-mF
-Tk
-CE
-bN
-xE
-xE
-zs
-jq
-hy
-eD
-CZ
-lA
-Xd
-eD
-lA
-eD
-eD
-lA
-Xd
-eD
-hy
-zs
-bY
-Vk
-bY
-uP
-uP
-cK
-cK
-uP
-cK
-cK
-uP
-uP
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-Rp
-iI
-iI
-In
-Mo
-Yt
-Wv
-Yt
-Yt
-Yt
-Yt
-Yt
-Yt
-In
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-Jr
-jG
-jG
-OY
-lK
-WB
-gd
-ph
-Fm
-bg
-EK
-Wn
-nl
-nF
-Tj
-qk
-cB
-Ph
-bD
-Hb
-wp
-WU
-Wn
-zT
-zT
-zT
-zT
-zT
-zT
-EB
-EB
-EB
-EB
-EB
-jG
-jG
-EB
-EB
-jG
-jG
-Zx
-ON
-"}
-(52,1,1) = {"
-fX
-eC
-jC
-jC
-jC
-jC
-iM
-jC
-dS
-dS
-mu
-dS
-dS
-LP
-LP
-uL
-LP
-LP
-Cg
-Uz
-jc
-jP
-bN
-xE
-xE
-zs
-VT
-ZM
-Qw
-ZP
-eD
-eD
-eD
-eD
-kV
-Ah
-eD
-eD
-eD
-eD
-hM
-bY
-ft
-bY
-uP
-cK
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-bY
-bp
-iI
-iI
-Gd
-iI
-iI
-iI
-iI
-iI
-In
-qV
-Tp
-nh
-Tr
-Oe
-Tr
-Tr
-FM
-Yt
-In
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-Jr
-jG
-jG
-OY
-vF
-qt
-Cc
-Mj
-tC
-Ls
-Dm
-Wn
-Lo
-wP
-cN
-Fz
-Dh
-rI
-Wn
-pP
-IL
-nN
-Wn
-jG
-jG
-jG
-jG
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-Zx
-ON
-"}
-(53,1,1) = {"
-fX
-xE
-jC
-aW
-JA
-Vx
-hS
-jC
-bc
-gP
-fb
-aN
-dS
-BD
-qE
-Bi
-Pu
-LP
-qH
-Uz
-CE
-CE
-bN
-xE
-xE
-zs
-rD
-eD
-Tc
-Ym
-wB
-QB
-sp
-js
-NJ
-qj
-hp
-kV
-Ah
-eD
-hM
-bY
-ft
-bY
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-bT
-Wl
-kp
-Yt
-Iv
-Yt
-Iw
-Yt
-ji
-Yt
-Bq
-Wl
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-Jr
-jG
-jG
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Wn
-Wn
-DW
-Wn
-Wn
-DW
-Wn
-Wn
-Wn
-Wn
-Wn
-Wn
-jG
-jG
-jG
-jG
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-Zx
-ON
-"}
-(54,1,1) = {"
-fX
-xE
-jC
-so
-dz
-PV
-tV
-jC
-EN
-aP
-sL
-aP
-dS
-Pq
-jQ
-aI
-zE
-LP
-nA
-HK
-RD
-CE
-bN
-xE
-xE
-zs
-eu
-eD
-Ds
-Ib
-Qp
-wH
-fQ
-oY
-eD
-eD
-Nz
-wH
-AA
-eD
-zs
-By
-ft
-bY
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-Hi
-tr
-PM
-Yt
-Yt
-Wv
-Yt
-Yt
-Yt
-Yt
-Yt
-Yt
-In
-bY
-bY
-bY
-AV
-AV
-AV
-AV
-AV
-AV
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-EB
-EB
-jG
-jG
-jG
-jG
-jG
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(55,1,1) = {"
-fX
-xE
-jC
-Uk
-lx
-Zk
-qf
-jC
-Be
-qJ
-Df
-BC
-dS
-fH
-el
-mN
-Za
-LP
-bN
-bN
-bN
-bN
-bN
-ME
-ME
-ME
-eD
-eD
-QZ
-RH
-Qp
-eD
-Qp
-hD
-kV
-LR
-WO
-eD
-eD
-bU
-Hp
-Ja
-Sf
-bY
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-bY
-dY
-iI
-iI
-iI
-Rp
-iI
-iI
-Hi
-HH
-Wl
-Eo
-Tp
-nh
-Tr
-Zl
-Tr
-Tr
-NE
-WP
-In
-bY
-bY
-bY
-bY
-bY
-AV
-AV
-AV
-AV
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-jG
-EB
-EB
-jG
-jG
-jG
-EB
-EB
-EB
-EB
-EB
-EB
-jG
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(56,1,1) = {"
-fX
-xE
-jC
-AY
-dz
-Kn
-fO
-jC
-aP
-aP
-JY
-aP
-dS
-LZ
-jQ
-zE
-zE
-LP
-xE
-xE
-ME
-ED
-df
-zG
-lI
-ME
-wk
-eD
-YH
-VS
-Nv
-iu
-Nv
-bI
-Xi
-Je
-wb
-iu
-iu
-iu
-uo
-sF
-Zn
-bY
-uP
-uP
-cK
-uP
-cK
-cK
-cK
-cK
-uP
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-Hi
-HH
-Wl
-WP
-Yt
-Wv
-Yt
-Yt
-Yt
-Yt
-Yt
-Yt
-In
-bY
-bY
-bY
-bY
-bY
-AV
-AV
-AV
-AV
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-EB
-EB
-EB
-jG
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(57,1,1) = {"
-fX
-xE
-jC
-nv
-OB
-ai
-Lp
-jC
-HI
-cI
-tP
-HI
-dS
-mU
-NZ
-YF
-UN
-LP
-xE
-xE
-ME
-jx
-Cl
-VW
-gA
-ME
-eu
-eD
-YH
-Nj
-SW
-kV
-Oq
-GP
-eD
-eD
-BB
-kV
-Ah
-eD
-FN
-By
-HX
-bY
-uP
-uP
-cK
-cK
-uP
-cK
-cK
-cK
-cK
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-Hi
-tr
-PM
-Yt
-Yt
-Iv
-Yt
-mC
-Yt
-ji
-Yt
-Yt
-In
-bY
-bY
-bY
-bY
-bY
-AV
-AV
-AV
-AV
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-Jr
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(58,1,1) = {"
-fX
-xE
-jC
-jC
-jC
-jC
-jC
-jC
-dS
-dS
-dS
-dS
-dS
-LP
-LP
-LP
-LP
-LP
-xE
-xE
-ME
-le
-eO
-gq
-Wa
-Xh
-Eh
-Eh
-Lg
-Rb
-dX
-wH
-lX
-QJ
-Sv
-El
-pX
-wH
-AA
-eD
-hM
-bY
-HX
-pw
-Jc
-bY
-bY
-bY
-bY
-bY
-Jc
-Jc
-bY
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-bT
-Wl
-oe
-Tp
-Ew
-Tr
-UW
-Tr
-Tr
-FM
-Bq
-Wl
-bY
-bY
-bY
-bY
-AV
-AV
-AV
-AV
-AV
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-Jr
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(59,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-ME
-Xf
-fj
-bk
-QQ
-ME
-eD
-eD
-eD
-eD
-eD
-eD
-eD
-eD
-wH
-AA
-eD
-eD
-eD
-eD
-hM
-bY
-HX
-Ja
-Ja
-Ja
-Ja
-Ja
-bY
-Jc
-Jc
-Jc
-bY
-bY
-bp
-iI
-iI
-Rp
-iI
-iI
-iI
-Gd
-iI
-In
-rQ
-Yt
-ny
-Yt
-Yt
-Yt
-Yt
-Yt
-Yt
-In
-bY
-bY
-bY
-AV
-AV
-AV
-AV
-AV
-AV
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(60,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-VR
-VR
-VR
-VR
-xE
-bY
-bY
-bY
-ME
-DN
-cA
-mJ
-sU
-ME
-Kx
-zS
-eD
-eD
-jh
-xk
-eD
-jh
-eD
-eD
-jh
-xk
-eD
-zS
-zs
-bY
-HX
-pw
-bY
-pw
-Hn
-Hn
-bY
-Jc
-bY
-Jc
-bY
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-In
-Bn
-Yt
-Aj
-JX
-Ox
-Yt
-Yt
-Yt
-Yt
-In
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(61,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-xE
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-ME
-ME
-Iq
-Iq
-ME
-ME
-zs
-zs
-hM
-hM
-zs
-hM
-hM
-zs
-hM
-hM
-zs
-hM
-hM
-zs
-zs
-bY
-HX
-bY
-Zg
-bY
-uT
-aC
-VR
-bY
-bY
-bY
-bY
-bY
-bp
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-iI
-Wl
-Kh
-Yt
-Rf
-Rf
-HF
-KN
-YS
-Yt
-zP
-Wl
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-ON
-"}
-(62,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-VR
-VR
-xE
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-bY
-bY
-VR
-VR
-VR
-VR
-VR
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-VR
-VR
-bY
-bY
-bY
-HX
-bY
-bY
-VR
-VR
-VR
-VR
-bY
-bY
-bY
-bY
-bY
-YW
-uX
-uX
-uX
-uX
-uX
-uX
-uX
-uX
-Wl
-Wl
-In
-In
-Wl
-Wl
-Wl
-In
-In
-Wl
-Wl
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-Nk
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-fk
-je
-"}
-(63,1,1) = {"
-fX
-xE
-xE
-xE
-xE
-xE
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-VR
-VR
-VR
-VR
-VR
-bY
-bY
-HX
-bY
-bY
-VR
-VR
-VR
-VR
-OI
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-fk
-fk
-je
-"}
-(64,1,1) = {"
-fX
-xE
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-bY
-bY
-VR
-VR
-VR
-VR
-VR
-VR
-Zg
-bY
-HX
-bY
-VR
-VR
-VR
-VR
-VR
-OI
-OI
-OI
-OI
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-kR
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-fk
-je
-"}
-(65,1,1) = {"
-fX
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-HX
-bY
-VR
-VR
-VR
-VR
-VR
-OI
-OI
-OI
-OI
-OI
-OI
-OI
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-bY
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-uP
-uP
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-EB
-EB
-uP
-uP
-fk
-je
-"}
-(66,1,1) = {"
-fX
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-HX
-bY
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-bY
-VR
-bY
-bY
-bY
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-je
-"}
-(67,1,1) = {"
-fX
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-RK
-VR
-VR
-bY
-yn
-bY
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-je
-"}
-(68,1,1) = {"
-fX
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-to
-iD
-to
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-je
-"}
-(69,1,1) = {"
-fX
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-to
-iD
-to
-to
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-uP
-EB
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(70,1,1) = {"
-fX
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-to
-to
-iD
-to
-to
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-eN
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-EB
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(71,1,1) = {"
-ni
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-to
-to
-to
-to
-VR
-VR
-VR
-VR
-VR
-to
-to
-iD
-to
-to
-to
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-cK
-cK
-uP
-uP
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(72,1,1) = {"
-ni
-ks
-VR
-VR
-VR
-VR
-VR
-VR
-ks
-ks
-ks
-VR
-VR
-ks
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-VR
-VR
-VR
-VR
-VR
-VR
-to
-VR
-to
-to
-to
-to
-to
-to
-to
-to
-VR
-VR
-to
-to
-to
-iD
-to
-to
-to
-to
-to
-to
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(73,1,1) = {"
-ni
-ks
-VR
-ks
-VR
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-uP
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-VR
-VR
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-iD
-to
-to
-to
-to
-mR
-Lv
-Wd
-VR
-VR
-VR
-VR
-VR
-VR
-VR
-to
-VR
-VR
-to
-to
-to
-VR
-QD
-QD
-QD
-QD
-VR
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-Qu
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(74,1,1) = {"
-ni
-ks
-VR
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-to
-to
-Wj
-Wj
-oa
-Wj
-Wj
-oa
-oa
-Wj
-Wj
-to
-to
-to
-to
-to
-iD
-XJ
-to
-to
-to
-mR
-mR
-BW
-VR
-to
-to
-VR
-VR
-to
-to
-to
-to
-to
-to
-to
-to
-QD
-QD
-QD
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-gs
-gs
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(75,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-to
-Em
-vH
-hc
-Rg
-MC
-MC
-MC
-Dk
-Ww
-FD
-Wj
-oa
-oa
-Wj
-rE
-ap
-Dd
-Dd
-Dd
-Dd
-Dd
-SZ
-to
-to
-to
-to
-to
-to
-to
-iw
-iw
-iw
-iw
-iw
-to
-to
-QD
-QD
-QD
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(76,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-ks
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-to
-RX
-It
-rv
-Ti
-XT
-CR
-pd
-Wj
-Wj
-AU
-Qi
-PJ
-nP
-YZ
-Kl
-Aw
-XJ
-to
-to
-to
-XJ
-NC
-to
-to
-to
-to
-to
-to
-to
-to
-to
-iw
-iw
-iw
-iw
-to
-to
-to
-QD
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(77,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-uP
-to
-mj
-up
-ea
-Ln
-Gf
-LG
-Lj
-xc
-iV
-Xg
-sP
-sI
-Zh
-nP
-ZE
-Aw
-to
-to
-Ou
-IK
-IK
-Ro
-fJ
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(78,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-to
-to
-iw
-to
-to
-to
-to
-to
-to
-mj
-FR
-Lc
-Oi
-xK
-uS
-qN
-FR
-FR
-Lc
-OO
-LX
-PC
-BI
-wX
-Sp
-to
-to
-IK
-Du
-mv
-ci
-Du
-Du
-Du
-Du
-Du
-Du
-fy
-fy
-yL
-yL
-yL
-fy
-fy
-to
-to
-to
-to
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-cK
-cK
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(79,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-to
-to
-to
-to
-Cz
-Cz
-sS
-gX
-Cz
-Ly
-Ef
-yb
-Kr
-Dr
-Sl
-Pb
-rg
-FR
-cp
-mq
-uq
-nP
-nP
-Kl
-iD
-XJ
-to
-IK
-mv
-We
-tw
-Ia
-yJ
-HU
-Du
-ty
-Ud
-fy
-ll
-br
-iy
-Qs
-pi
-fy
-to
-to
-to
-to
-to
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-cK
-cK
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(80,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-to
-to
-to
-OM
-Cz
-EQ
-ZD
-Zt
-EX
-MW
-Wg
-gB
-oo
-ga
-zf
-cr
-Po
-Zy
-MQ
-mq
-uq
-nP
-nP
-jY
-lk
-gZ
-gZ
-en
-Ft
-mT
-lr
-Ud
-Ud
-iL
-Ud
-Ud
-ao
-fy
-RO
-Zs
-CL
-xu
-VC
-yL
-to
-to
-to
-to
-to
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-cK
-cK
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(81,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-to
-to
-to
-Cz
-Ok
-KS
-QH
-QH
-Jp
-Ug
-tU
-Cf
-Kk
-Le
-rN
-EF
-rg
-TO
-UL
-gn
-nP
-nP
-ZE
-NC
-to
-to
-Vm
-Du
-jK
-gt
-jl
-DO
-qh
-mY
-mY
-hs
-bv
-MM
-EV
-BV
-ih
-VC
-yL
-to
-to
-to
-to
-to
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(82,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-Cz
-Vi
-FJ
-JW
-eV
-Cz
-Ki
-za
-za
-Vu
-Lc
-rj
-dA
-XU
-wm
-dH
-Jt
-gI
-Lz
-Kl
-NC
-to
-to
-to
-Du
-xa
-lb
-wL
-Ud
-me
-Du
-Ud
-as
-fy
-gF
-Tn
-VC
-VC
-TB
-fy
-to
-to
-to
-to
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(83,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-wS
-UH
-wS
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-Cz
-Ns
-vW
-lU
-he
-gX
-Mk
-Lc
-Lc
-yH
-gL
-Lc
-Me
-Wj
-Wj
-Wj
-oa
-oa
-Wj
-rE
-NC
-to
-to
-to
-Du
-Du
-vL
-oD
-vP
-Du
-Du
-SL
-No
-fy
-NU
-cT
-oh
-AI
-yG
-yL
-to
-to
-QD
-QD
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(84,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-Cz
-GD
-ot
-gk
-KB
-Cz
-Qv
-zp
-zp
-Yc
-eL
-Lc
-FR
-Ta
-dv
-Wj
-to
-to
-to
-to
-NC
-to
-to
-to
-Du
-um
-HC
-td
-wj
-ZB
-Du
-ZW
-GN
-fy
-Vg
-Ry
-yG
-zj
-yG
-yL
-to
-to
-to
-QD
-QD
-QD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-ha
-ix
-gs
-gs
-gs
-gs
-gs
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-gs
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(85,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-Cz
-Cz
-Cz
-Cz
-Cz
-Cz
-zX
-zX
-Lc
-VG
-yr
-za
-Eq
-xP
-HJ
-Wj
-JS
-to
-to
-to
-NC
-to
-to
-to
-HL
-eP
-au
-mO
-wa
-Xw
-Du
-Wx
-GN
-fy
-pC
-jI
-wf
-Mt
-sA
-fy
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Js
-NO
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(86,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-Wj
-dE
-dE
-Lc
-Ld
-gu
-Lc
-nD
-cZ
-uK
-Wj
-to
-to
-to
-to
-NC
-to
-to
-to
-HL
-WZ
-cM
-Np
-WQ
-qT
-Bx
-CN
-ii
-fy
-fy
-fy
-fy
-fy
-fy
-fy
-cR
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Qc
-jR
-kU
-kU
-hP
-hP
-hP
-hP
-hP
-hP
-hP
-hP
-kU
-mK
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(87,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-Wj
-Wj
-oa
-oa
-Wj
-Ob
-Hx
-Wj
-oa
-Wj
-Wj
-vk
-TI
-to
-to
-NC
-to
-to
-to
-Du
-JK
-VD
-hK
-Ud
-gy
-Du
-Ye
-RI
-tH
-Fc
-Pv
-xh
-xw
-OP
-nH
-cR
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-kU
-BP
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-eF
-BP
-kU
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(88,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-MH
-ck
-PI
-PI
-AM
-pB
-KU
-fq
-PI
-ZI
-ck
-KU
-MH
-to
-to
-NC
-to
-to
-OM
-sW
-sW
-sW
-sW
-tQ
-sW
-sW
-xg
-Mh
-CN
-xd
-CN
-xd
-Ey
-su
-vy
-cR
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-kU
-AN
-MA
-mi
-Qt
-LK
-NF
-zd
-nX
-BQ
-xY
-AN
-kU
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(89,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-to
-to
-to
-sW
-Ke
-lH
-dk
-pg
-hJ
-sW
-xj
-wN
-nR
-KV
-nR
-Eu
-CV
-ok
-cR
-cR
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-yo
-BP
-Wm
-pl
-ZG
-ZG
-Gv
-ZG
-ZG
-pl
-xx
-BP
-KJ
-At
-Bo
-Bo
-Bo
-Bo
-UE
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(90,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-to
-MH
-PI
-PI
-PI
-KU
-KU
-XG
-KU
-PI
-PI
-PI
-KU
-MH
-to
-to
-NC
-to
-to
-to
-ki
-nS
-Ur
-Yu
-Ur
-Ur
-io
-nR
-II
-TF
-Pp
-XB
-JV
-VX
-at
-uw
-to
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-At
-Yg
-oZ
-vr
-sx
-ld
-jg
-nC
-ss
-Mb
-vr
-sx
-rK
-CK
-kU
-MU
-kU
-kU
-Bo
-Bo
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(91,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-to
-to
-to
-ki
-xo
-UV
-Yu
-Ur
-SQ
-sW
-pv
-Qf
-zw
-ol
-ID
-ol
-nR
-nR
-cR
-to
-to
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-hC
-TL
-TL
-TL
-qe
-BP
-iT
-ZG
-KQ
-Ig
-ZG
-DG
-kE
-ZG
-Td
-DS
-GM
-GM
-GM
-GM
-kU
-Bo
-Bo
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(92,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-to
-MH
-JN
-JN
-JN
-JN
-JN
-JN
-JN
-JN
-JN
-JN
-JN
-MH
-Pt
-to
-NC
-to
-De
-to
-sW
-nW
-Ur
-Fo
-bG
-bS
-vt
-eX
-pf
-Ij
-PL
-zF
-Mu
-nR
-zW
-cR
-to
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-cV
-qd
-Bo
-Bo
-Bo
-BP
-BP
-Jo
-aR
-Ig
-se
-Dj
-tX
-Na
-BP
-lF
-KR
-NR
-la
-GM
-kU
-Bo
-Bo
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(93,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-to
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-XC
-XJ
-NC
-XJ
-Lq
-to
-vc
-XO
-Ur
-lL
-tv
-uF
-sW
-Pn
-YG
-GX
-xG
-ID
-ko
-nR
-nR
-cR
-to
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-UE
-Bo
-cV
-Bo
-qg
-qg
-qg
-qg
-qg
-qg
-qg
-Kv
-BP
-XM
-BP
-BP
-BP
-xV
-qn
-xF
-gN
-mQ
-kU
-Bo
-Bo
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(94,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-wS
-UH
-wS
-wS
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-to
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-gM
-to
-NC
-to
-Ik
-to
-sW
-Kd
-Tq
-RV
-Ur
-rZ
-sW
-TU
-dt
-On
-DM
-ID
-rs
-nR
-nR
-cR
-to
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-UE
-Bo
-cV
-Bo
-qg
-DV
-Sz
-dL
-IP
-sK
-qg
-iF
-QX
-HA
-jo
-jo
-on
-jo
-jo
-jo
-qC
-UT
-kU
-Bo
-Bo
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(95,1,1) = {"
-ni
-ks
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-to
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-to
-to
-to
-ki
-tt
-bx
-Yu
-Ur
-FC
-sW
-TU
-RJ
-fG
-lz
-ID
-ol
-nR
-QF
-cR
-to
-iw
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-UE
-UE
-Bo
-cV
-Bo
-qg
-aM
-em
-ZR
-hk
-uv
-qg
-VL
-sv
-Pm
-iC
-PG
-Xs
-vn
-xr
-GC
-iC
-dK
-kU
-Bo
-Bo
-uP
-cK
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(96,1,1) = {"
-ni
-ks
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-ks
-ks
-ks
-to
-to
-to
-MH
-KU
-Km
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-to
-to
-to
-ki
-ua
-Ur
-Yu
-lp
-Uu
-sW
-af
-af
-we
-Un
-ak
-TC
-TC
-TH
-cR
-to
-iw
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-UE
-UE
-Bo
-cV
-Bo
-qg
-by
-ZV
-cf
-Ap
-QG
-Fa
-Mc
-da
-zC
-iC
-Dy
-Hs
-ru
-Or
-GC
-Jl
-Bf
-kU
-Bo
-Bo
-uP
-cK
-cK
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-UD
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(97,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-ks
-ks
-ks
-to
-to
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-to
-to
-UI
-sW
-Mi
-Xc
-kP
-OD
-HR
-sW
-dr
-dr
-SH
-Fy
-fF
-DQ
-xz
-Ow
-cR
-to
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-UE
-UE
-Bo
-cV
-Bo
-qg
-lD
-oO
-dV
-oO
-Qz
-qg
-VL
-sv
-Pm
-iC
-Rd
-Yv
-Gx
-xB
-GC
-Jl
-Bf
-kU
-Bo
-Bo
-uP
-cK
-cK
-cK
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-UD
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(98,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-ks
-ks
-ks
-ks
-ks
-to
-iw
-iw
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-to
-UY
-XA
-sW
-sW
-ki
-ki
-ki
-sW
-sW
-cR
-cR
-lT
-un
-cR
-cR
-cR
-cR
-cR
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-UE
-Bo
-Bo
-cV
-Bo
-qg
-KD
-oO
-Cq
-OV
-Rw
-qg
-Pr
-of
-Pm
-iC
-QI
-pz
-zk
-Or
-GC
-Jl
-Bf
-kU
-Bo
-Bo
-uP
-uP
-cK
-cK
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-UD
-UD
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(99,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-wS
-wS
-ks
-ks
-ks
-ks
-to
-to
-iw
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-NC
-XJ
-to
-UI
-MU
-UI
-to
-to
-to
-to
-to
-to
-to
-Nw
-KA
-Nw
-to
-EP
-to
-to
-to
-iw
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-UE
-Bo
-Bo
-cV
-Bo
-qg
-ia
-ia
-yk
-ia
-ia
-ia
-dq
-Qx
-Vt
-Fq
-CT
-fg
-fu
-GC
-GC
-Jl
-Bf
-kU
-Bo
-Bo
-uP
-uP
-cK
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-UD
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(100,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-wS
-wS
-UH
-UH
-wS
-wS
-ks
-ks
-ks
-ks
-to
-iw
-iw
-to
-MH
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-KU
-MH
-to
-to
-Hu
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-Dd
-mp
-to
-to
-to
-to
-iw
-iw
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-cV
-Bo
-Bo
-ia
-bP
-tL
-Yj
-ZO
-ia
-qK
-da
-VQ
-iC
-Ck
-Xs
-ec
-GC
-GC
-Jl
-Bf
-kU
-Bo
-Bo
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-UD
-UD
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(101,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-wS
-UH
-wS
-wS
-UH
-UH
-UH
-wS
-UH
-ks
-ks
-ks
-to
-to
-iw
-iw
-to
-FI
-vk
-vk
-vk
-vk
-vk
-vk
-vk
-vk
-vk
-vk
-vk
-zt
-to
-vb
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-Mn
-Hj
-dp
-Hj
-et
-to
-iw
-iw
-iw
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-UE
-Bo
-cV
-Bo
-Bo
-ia
-fS
-eA
-XW
-VE
-ia
-VL
-sv
-Pm
-iC
-Ml
-dW
-yv
-eg
-ym
-Jl
-ND
-kU
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-UD
-UD
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(102,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-wS
-UH
-ks
-ks
-ks
-to
-to
-iw
-iw
-iw
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-to
-to
-to
-to
-to
-to
-fp
-to
-to
-to
-to
-Mn
-MS
-dp
-MS
-et
-to
-iw
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-bh
-Bo
-UE
-Bo
-cV
-Bo
-jd
-ia
-Hc
-TX
-Hl
-ej
-ia
-ek
-sv
-ta
-iC
-iJ
-GC
-GC
-GC
-IU
-VY
-if
-kU
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(103,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-wS
-UH
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-to
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-to
-oH
-fp
-fp
-fp
-fp
-fp
-Am
-MS
-Jv
-MS
-et
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-bh
-Bo
-Bo
-Bo
-cV
-Bo
-Bo
-ia
-nz
-no
-mX
-ow
-ia
-kr
-pN
-Pm
-iC
-Ne
-GC
-DA
-mE
-sV
-iC
-qM
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-Qu
-cK
-cK
-uP
-uP
-uP
-UD
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(104,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-wS
-UH
-ks
-ks
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-bh
-Bo
-Bo
-Bo
-cV
-Bo
-Bo
-ia
-ia
-an
-an
-an
-an
-Gq
-an
-gJ
-an
-an
-an
-an
-iC
-iC
-iC
-lG
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(105,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-wS
-wS
-UH
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-oH
-oH
-oH
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-bh
-Bo
-Bo
-Bo
-cV
-Bo
-Bo
-Bo
-Bo
-an
-Af
-lq
-kJ
-Wf
-hz
-LQ
-kJ
-Zp
-SX
-an
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-UD
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(106,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-wS
-wS
-UH
-ks
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-cV
-Bo
-Bo
-UE
-Bo
-an
-sD
-gE
-mL
-Hk
-vj
-sc
-gE
-gE
-pn
-an
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(107,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-wS
-wS
-wS
-rz
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-cV
-Bo
-UE
-UE
-Bo
-an
-pH
-gE
-iZ
-be
-dj
-pm
-SE
-gE
-hA
-an
-Zf
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(108,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-rz
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-cV
-Bo
-UE
-UE
-Bo
-an
-Uf
-gE
-iZ
-wh
-pj
-tJ
-SE
-gE
-Et
-an
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(109,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-rz
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-uI
-CG
-Bo
-UE
-Bo
-Bo
-an
-GW
-OS
-zZ
-iX
-gU
-ds
-zZ
-gE
-Se
-an
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-cK
-cK
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(110,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-uP
-cK
-cK
-cK
-cK
-Qu
-cK
-cK
-uP
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-UE
-Bo
-Bo
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-an
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-cK
-uP
-uP
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(111,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(112,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-Bo
-Bo
-UE
-UE
-UE
-UE
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(113,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-UE
-UE
-UE
-UE
-UE
-Bo
-Bo
-Bo
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-fk
-fk
-fk
-je
-"}
-(114,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-ks
-ks
-ks
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-UE
-UE
-UE
-UE
-UE
-Bo
-Bo
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-je
-"}
-(115,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-wS
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-oH
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-oH
-Bo
-UE
-UE
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-UE
-UE
-UE
-UE
-Bo
-Bo
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-uP
-fk
-fk
-je
-"}
-(116,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-oH
-oH
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-oH
-Bo
-UE
-UE
-Bo
-Bo
-uI
-ut
-ut
-ut
-ut
-SU
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-fk
-fk
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-Bo
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-fk
-fk
-je
-"}
-(117,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-UE
-Bo
-Bo
-Bo
-Bo
-oH
-oH
-Oy
-zx
-tK
-zx
-VO
-oH
-oH
-Bo
-Bo
-UE
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-fk
-fk
-fk
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-fk
-fk
-je
-"}
-(118,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-to
-to
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-UE
-UE
-UE
-Bo
-Bo
-Bo
-kG
-Nq
-ke
-Nq
-cC
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-UE
-UE
-UE
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-fk
-fk
-fk
-At
-Bo
-At
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-fk
-je
-"}
-(119,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-to
-to
-to
-iw
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-UE
-UE
-UE
-Bo
-Bo
-kG
-Nq
-zg
-Nq
-cC
-Bo
-Bo
-Bo
-Bo
-Bo
-uI
-SU
-Bo
-Bo
-UE
-UE
-UE
-UE
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-fk
-fk
-At
-At
-At
-fk
-fk
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-tN
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-uP
-fk
-je
-"}
-(120,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-to
-to
-to
-to
-to
-to
-cK
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-uP
-UD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-UE
-UE
-UE
-Bo
-kG
-kU
-zg
-kU
-cC
-Bo
-UE
-UE
-Bo
-uI
-SU
-Bo
-Bo
-UE
-UE
-UE
-UE
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-fk
-fk
-oF
-oF
-oF
-fk
-fk
-fk
-fk
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-uP
-fk
-je
-"}
-(121,1,1) = {"
-ni
-ks
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-ks
-ks
-ks
-ks
-ks
-ks
-to
-to
-to
-to
-to
-to
-to
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-UD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-zg
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-cV
-Bo
-Bo
-Bo
-UE
-UE
-UE
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-Fw
-UH
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-fk
-je
-"}
-(122,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-uP
-oH
-oH
-oH
-uP
-UD
-UD
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-UE
-Bo
-Bo
-zg
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-cV
-Bo
-Bo
-Bo
-Bo
-Co
-Bo
-Bo
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-fk
-je
-"}
-(123,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-to
-to
-to
-iw
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-UE
-Bo
-zg
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-cV
-Bo
-Bo
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-fk
-UH
-UH
-wS
-wS
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-fk
-tN
-kQ
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-gs
-uP
-uP
-gs
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-fk
-je
-"}
-(124,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-ks
-ks
-ks
-to
-to
-to
-to
-to
-to
-to
-to
-iw
-iw
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-zg
-Bo
-Bo
-UE
-Bo
-Bo
-Bo
-cV
-At
-WD
-pe
-Bg
-Ge
-UU
-pe
-Om
-lP
-Ky
-oT
-fx
-kK
-pe
-fk
-UH
-UH
-wS
-wS
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-Bo
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-gs
-fk
-je
-"}
-(125,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-ks
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-to
-iw
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Of
-Bo
-zg
-At
-Bo
-Bo
-Bo
-Bo
-At
-Sg
-rA
-oX
-fN
-EY
-Ze
-cD
-od
-cD
-Fn
-CJ
-CJ
-iG
-Vz
-pe
-fk
-UH
-wS
-wS
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-fk
-tN
-tN
-fk
-tN
-tN
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-Bo
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-gs
-je
-"}
-(126,1,1) = {"
-ni
-ks
-ks
-ks
-ks
-to
-to
-to
-to
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-WH
-vY
-vY
-vY
-vY
-vY
-vY
-eY
-At
-WD
-wy
-yY
-tY
-QA
-pe
-lj
-RW
-Zd
-kb
-aZ
-mb
-pe
-fk
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-wS
-UH
-fk
-fk
-tN
-tN
-fk
-fk
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-Bo
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-je
-"}
-(127,1,1) = {"
-ni
-ks
-ks
-ks
-to
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-At
-At
-At
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-pe
-pe
-pe
-pe
-pe
-tk
-OH
-cG
-Qr
-cG
-cG
-pe
-fk
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-wS
-wS
-UH
-fk
-tN
-tN
-tN
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-cK
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-je
-"}
-(128,1,1) = {"
-ni
-ks
-ks
-to
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-At
-Bo
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-pe
-qp
-Wb
-lh
-pe
-kc
-OH
-aH
-bC
-cG
-nx
-pe
-fk
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-fk
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-gs
-gs
-gs
-gs
-gs
-je
-"}
-(129,1,1) = {"
-ni
-ks
-ks
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-At
-tA
-Bo
-UE
-UE
-Bo
-Bo
-Bo
-Bu
-KG
-cG
-Rz
-pe
-bs
-Rr
-IH
-IH
-IH
-Ag
-pe
-fk
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-tN
-tN
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-cK
-cK
-cK
-cK
-cK
-uP
-uP
-gs
-gs
-gs
-gs
-je
-"}
-(130,1,1) = {"
-ni
-ks
-to
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-At
-gC
-UE
-UE
-UE
-Bo
-Bo
-Bo
-Bu
-KG
-cG
-tF
-pe
-yz
-OH
-cG
-cG
-cG
-Vz
-pe
-fk
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-fk
-tN
-tN
-tN
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-tN
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-cK
-cK
-uP
-uP
-gs
-gs
-gs
-gs
-je
-"}
-(131,1,1) = {"
-ni
-ks
-to
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-sr
-UE
-UE
-UE
-Bo
-Bo
-Bo
-pe
-nT
-IH
-uJ
-GE
-cj
-wt
-Mx
-FB
-cG
-fa
-pe
-fk
-UH
-UH
-wS
-UH
-UH
-UH
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-tN
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-cK
-cK
-cK
-cK
-uP
-uP
-uP
-uP
-gs
-gs
-je
-"}
-(132,1,1) = {"
-ni
-ks
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-UE
-UE
-Bo
-Bo
-fk
-pe
-Ju
-cG
-OH
-pe
-pe
-Jn
-pe
-pe
-OX
-pe
-pe
-fk
-UH
-UH
-wS
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-fk
-fk
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-fk
-fk
-tN
-tN
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-cK
-uP
-uP
-uP
-uP
-gs
-gs
-je
-"}
-(133,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-pe
-WN
-cG
-OH
-WN
-pe
-cG
-Zc
-pe
-cG
-Zc
-pe
-fk
-UH
-UH
-wS
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-uP
-uP
-uP
-fk
-gs
-gs
-je
-"}
-(134,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Bo
-Bo
-Bo
-Bo
-Bo
-Bo
-fk
-fk
-fk
-fk
-pe
-cG
-cG
-OH
-cG
-pe
-Ju
-Vz
-pe
-Ju
-Vz
-pe
-fk
-UH
-wS
-wS
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-uP
-uP
-uP
-uP
-uP
-fk
-fk
-gs
-gs
-je
-"}
-(135,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-Vs
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-pe
-SM
-LY
-vm
-bo
-pe
-Vj
-LJ
-pe
-Vj
-LJ
-pe
-fk
-UH
-wS
-wS
-wS
-UH
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-UH
-wS
-UH
-UH
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-gs
-je
-"}
-(136,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-pe
-fk
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-wS
-wS
-UH
-UH
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(137,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-UH
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-wS
-wS
-wS
-wS
-wS
-wS
-wS
-UH
-UH
-UH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(138,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-wS
-wS
-wS
-UH
-UH
-UH
-UH
-UH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-tN
-tN
-tN
-tN
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(139,1,1) = {"
-ni
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-oH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-UH
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-fk
-je
-"}
-(140,1,1) = {"
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-ni
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-je
-"}
\ No newline at end of file
+lol bye
\ No newline at end of file
diff --git a/maps/groundbase/gb-z3.dmm b/maps/groundbase/gb-z3.dmm
index 3743af1d6f..abb227d481 100644
--- a/maps/groundbase/gb-z3.dmm
+++ b/maps/groundbase/gb-z3.dmm
@@ -1,23272 +1 @@
-<<<<<<< HEAD
-lol
-=======
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-<<<<<<< HEAD
-/turf/simulated/wall,
-/area/groundbase/exploration/equipment)
-"ab" = (
-/obj/machinery/suit_cycler/medical,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-=======
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/exploration/shuttlepad)
-"ab" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
-"ac" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ak" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"aG" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"aQ" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white_cmo,
-/obj/item/weapon/stamp/cmo,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"bf" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/obj/item/device/gps/medical,
-/obj/item/device/radio,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"bh" = (
-/obj/machinery/atmospheric_field_generator/perma/underdoors,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/airlock/science{
- name = "Shuttle";
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/shuttle/groundbase/exploration)
-"bi" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/exploration/equipment)
-"bk" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/closet/crate,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/office)
-"bm" = (
-/obj/structure/closet/secure_closet/pilot,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"bM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/computer/guestpass{
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"bS" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"cb" = (
-/obj/structure/bed/psych{
- name = "couch"
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"cf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level3/nw)
-"cj" = (
-/turf/simulated/open,
-/area/groundbase/level3/se/open)
-"cB" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/groundbase/level3/escapepad;
-<<<<<<< HEAD
- base_turf = /turf/simulated/floor/outdoors/sidewalk/slab/virgo3c;
- docking_controller = "escape_dock";
-=======
- base_turf = /turf/simulated/floor/outdoors/sidewalk/slab;
- docking_controller = null;
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- landmark_tag = "escape_station";
- name = "Ship Arrivals"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"cE" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"cY" = (
-/obj/structure/cable/yellow{
- icon_state = "32-8"
- },
-/obj/structure/disposalpipe/down{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
-"dq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- id_tag = "patient4";
- name = "patient recovery";
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/patient4)
-"dE" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/science{
- name = "Exploration";
- req_one_access = list(19,43,67)
- },
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "1-2"
-=======
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bmarble,
-/area/groundbase/exploration/equipment)
-"dI" = (
-<<<<<<< HEAD
-/obj/machinery/firealarm,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-=======
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"dN" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- pixel_y = 7
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light_switch{
- pixel_x = 16;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"dQ" = (
-<<<<<<< HEAD
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32
-=======
-/obj/structure/hull_corner,
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 32;
- pixel_y = -9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"dR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"dU" = (
-/obj/structure/table/bench/marble,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start/chemist,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"dW" = (
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"dX" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/computer/ship/engines,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"ed" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw)
-"ei" = (
-/obj/structure/panic_button{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 8;
- frequency = 1380;
- id_tag = "ex_docker";
- pixel_x = 27;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"eo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"ey" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit{
- pixel_y = -5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"eB" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"eC" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"eE" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"fu" = (
-/obj/structure/table/bench/marble,
-/obj/effect/landmark/start/chemist,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"fy" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/camera/network/civilian,
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"fz" = (
-/turf/simulated/wall,
-/area/groundbase/civilian/pilot)
-"fH" = (
-/turf/simulated/wall,
-/area/groundbase/medical/patient4)
-"fI" = (
-/turf/simulated/wall,
-/area/groundbase/medical/patient2)
-"fM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "EMT Bay"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/paramedic)
-"fO" = (
-/obj/effect/landmark/start/paramedic,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"fS" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"gc" = (
-/obj/machinery/light/floortube,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/office)
-"gl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-<<<<<<< HEAD
-"gt" = (
-/turf/simulated/wall,
-/area/groundbase/level3/nw)
-=======
-"gs" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"gu" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-<<<<<<< HEAD
-/obj/machinery/power/apc/hyper,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
-=======
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"gx" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/structure/closet/secure_closet/guncabinet/excursion,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"gR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-<<<<<<< HEAD
-=======
-"gT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"gV" = (
-/obj/structure/railing,
-/obj/structure/table/steel,
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/kitchen)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"gZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"hb" = (
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/level3/nw)
-"hl" = (
-/turf/simulated/wall,
-/area/groundbase/level3/escapepad)
-"ht" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"hC" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"hN" = (
-/obj/structure/table/bench/marble,
-/obj/effect/landmark/start/medical,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"hO" = (
-/obj/effect/landmark/map_data/groundbase,
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/sw)
-"hQ" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"ik" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/medical/paramedic)
-"in" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "patient_room_4"
- },
-/turf/simulated/floor,
-/area/groundbase/medical/patient4)
-"it" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/level3/escapepad)
-"iN" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/civilian/pilot)
-"iQ" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"iT" = (
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/cargo/office)
-"iY" = (
-/obj/structure/filingcabinet,
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"jc" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/structure/closet/emergsuit_wall{
- dir = 8;
- pixel_x = -27
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"jo" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-<<<<<<< HEAD
-=======
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/shuttle/groundbase/exploration)
-"jp" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/groundbase/exploration/shuttlepad)
-"jp" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"jv" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level3/nw)
-"jF" = (
-/obj/machinery/door/airlock/command{
- id_tag = "cmodoor";
- name = "Chief Medical Officer";
- req_access = list(40);
- req_one_access = list()
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/cmo)
-"jX" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor,
-/area/shuttle/groundbase/exploration)
-"jY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"km" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"ku" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"ky" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"kB" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level3/ne)
-"kE" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"kQ" = (
-/obj/structure/closet/secure_closet/paramedic,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"kU" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/sw/open)
-"lk" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/ne)
-"ly" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/open,
-/area/groundbase/level3/nw/open)
-"lz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"lF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"ma" = (
-/obj/structure/closet/secure_closet/sar,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"me" = (
-/obj/structure/table/bench/marble,
-/obj/effect/landmark/start/medical,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"mr" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/nw)
-"mv" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"mw" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 4
- },
-/turf/simulated/wall/r_wall,
-/area/groundbase/level3/escapepad)
-"mU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
-"nb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized/full{
- id = "cmo_office"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/medical/cmo)
-"nq" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/medical/uhallway)
-"nr" = (
-/obj/machinery/button/remote/airlock{
- dir = 8;
- id = "patient3";
- name = "Door Lock";
- pixel_x = 26;
- pixel_y = 30;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"nC" = (
-/obj/structure/closet/secure_closet/CMO,
-/obj/item/weapon/storage/belt/medical,
-/obj/item/device/flashlight/pen,
-/obj/item/clothing/accessory/stethoscope,
-/obj/item/clothing/glasses/hud/health,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/weapon/cmo_disk_holder,
-/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo,
-/obj/item/weapon/storage/mrebag/pill/sleevingcure,
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"nN" = (
-/obj/machinery/light,
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"nR" = (
-/obj/effect/mouse_hole_spawner,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level3/nw)
-"nU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"nX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/landmark/start/cmo,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"og" = (
-/obj/machinery/suit_cycler/medical,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"ok" = (
-/obj/random/mob/bird,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/unexplored/outdoors)
-"om" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"ot" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"ow" = (
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"oF" = (
-/obj/effect/overmap/visitable/sector,
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/sw)
-"oK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/cargo/office)
-"oN" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- pixel_y = 7
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light_switch{
- pixel_x = 16;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"oQ" = (
-/obj/structure/fuel_port,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"oR" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"oW" = (
-/obj/machinery/papershredder,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"oX" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"pd" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"pe" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/light/floortube{
- pixel_y = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"pf" = (
-/turf/simulated/open,
-/area/groundbase/level3/sw/open)
-"pm" = (
-/obj/machinery/computer/shuttle_control/explore/gbexplo,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"pq" = (
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "patient4";
- name = "Door Lock";
- pixel_x = -26;
- pixel_y = 30;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"pv" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"pC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/floortube{
- dir = 1;
- pixel_y = -1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"pL" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"pY" = (
-/obj/structure/sign/nanotrasen,
-/turf/simulated/wall,
-/area/groundbase/level3/escapepad)
-"qf" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"qg" = (
-/obj/machinery/door/airlock/multi_tile/glass/polarized{
- name = "Cargo Office";
- req_one_access = list(31)
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/cargo/office)
-"qk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"qA" = (
-/obj/effect/landmark/start/cargo,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/office)
-"qC" = (
-/obj/machinery/station_map{
- dir = 8;
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"qL" = (
-/obj/machinery/photocopier/faxmachine{
- department = "CMO's Office"
- },
-/obj/structure/table/glass,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"qN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"qO" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level3/nw)
-"qT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"rb" = (
-<<<<<<< HEAD
-/obj/machinery/ion_engine{
- dir = 1
-=======
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/turf/simulated/shuttle/plating/airless,
-/area/shuttle/groundbase/exploration)
-"re" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"rh" = (
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/level3/nw)
-"ro" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"rD" = (
-/obj/structure/bookcase,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"rJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"rV" = (
-<<<<<<< HEAD
-/obj/item/weapon/paper_bin{
- pixel_y = 7
-=======
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- frequency = 1380;
- id_tag = "expshuttle_dock";
- pixel_y = 19;
- req_one_access = list(19,43,67)
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/exploration/shuttlepad)
-"sa" = (
-/obj/structure/railing{
- dir = 8
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/obj/structure/table/steel,
-/obj/item/weapon/pen,
-/obj/machinery/light,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"sb" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"sJ" = (
-/obj/machinery/station_map{
- dir = 4;
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-<<<<<<< HEAD
-=======
-"sL" = (
-/obj/structure/hull_corner{
- dir = 1
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/shuttle/groundbase/exploration)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"sP" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/ne)
-"sQ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"sS" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"to" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"tu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
-"tM" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level3/escapepad)
-"tU" = (
-<<<<<<< HEAD
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/exploration/shuttlepad)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"tY" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"tZ" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level3/se)
-"ui" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"um" = (
-/obj/machinery/power/smes/buildable{
- charge = 500000
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"uF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/level3/nw)
-"uG" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"uH" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable/yellow,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"uP" = (
-/obj/machinery/suit_cycler/pilot,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"uU" = (
-/obj/effect/landmark/start/pf,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"vp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"vs" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/unexplored/outdoors)
-"vu" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"vw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"vA" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"vV" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/structure/closet/emergsuit_wall{
- dir = 4;
- pixel_x = 27
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"vZ" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"wc" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 1
- },
-/obj/effect/landmark/start/cmo,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"wm" = (
-<<<<<<< HEAD
-/obj/structure/closet/secure_closet/explorer,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/level3/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"wn" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"ws" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"wu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/wall/rshull,
-/area/shuttle/groundbase/exploration)
-"wB" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"wP" = (
-/obj/effect/landmark{
- name = "Observer-Start"
- },
-/turf/simulated/open,
-/area/groundbase/level3/sw/open)
-"wU" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- pixel_y = 7
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light_switch{
- pixel_x = -16;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-<<<<<<< HEAD
-=======
-"xa" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level3/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xp" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"xs" = (
-/obj/structure/railing/grey,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/open,
-/area/groundbase/cargo/office)
-"xD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"xH" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/machinery/camera/network/exploration{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"xI" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"xM" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
-"xO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level3/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xX" = (
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"ym" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"yy" = (
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"yA" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/se/open)
-"yQ" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"yU" = (
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/office)
-"yZ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/random/vendorall,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"zb" = (
-/obj/structure/cable/yellow{
- icon_state = "32-8"
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 8
- },
-/turf/simulated/wall,
-/area/groundbase/medical/paramedic)
-"zh" = (
-/obj/effect/overmap/visitable/sector/virgo3b,
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/sw)
-"zF" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/expedition_medical,
-/obj/item/clothing/head/helmet/space/void/expedition_medical,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"zG" = (
-/obj/machinery/suit_cycler/exploration,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-=======
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"zJ" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"zK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"zL" = (
-/obj/structure/table/rack,
-/obj/item/device/defib_kit/compact/loaded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-<<<<<<< HEAD
-=======
-"zS" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/shuttle/groundbase/exploration)
-"zW" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/vending/wallmed1/public{
- dir = 1;
- pixel_y = -28
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Aa" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"Ak" = (
-/obj/machinery/recharge_station,
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"As" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "patient_room_2"
- },
-/turf/simulated/floor,
-/area/groundbase/medical/patient2)
-"Bd" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"Bg" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/sw)
-"Bo" = (
-/obj/machinery/computer/ship/sensors,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Bw" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"By" = (
-/obj/structure/catwalk,
-/turf/simulated/open,
-/area/groundbase/level3/nw/open)
-"BB" = (
-/turf/simulated/wall,
-/area/groundbase/medical/patient1)
-"BC" = (
-/obj/structure/table/bench/marble,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/landmark/start/cmo,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"BE" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"BH" = (
-/turf/simulated/wall,
-/area/groundbase/medical/patient3)
-<<<<<<< HEAD
-=======
-"BM" = (
-/obj/structure/catwalk,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
-"Cc" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Ck" = (
-/obj/structure/table/woodentable,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
- },
-/turf/simulated/floor/carpet/retro,
-/area/groundbase/dorms/bathroom)
-"Ct" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/kitchen)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Cv" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"CS" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"CU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Dm" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Dy" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 4;
- frequency = 1380;
- id_tag = "expshuttle_dock";
- pixel_x = -19;
- req_one_access = list(19,43,67)
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"DB" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"DE" = (
-/obj/machinery/shipsensors{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/shuttle/plating/airless,
-/area/shuttle/groundbase/exploration)
-"DI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"DQ" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit{
- pixel_y = -5
- },
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"DR" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/open,
-/area/groundbase/medical/uhallway)
-"Ea" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/groundbase/exploration/shuttlepad;
- base_turf = /turf/simulated/floor/reinforced/virgo3c;
- docking_controller = "expshuttle_dock";
- landmark_tag = "gb_excursion_pad";
- name = "Excursion Shuttlepad"
- },
-/obj/effect/overmap/visitable/ship/landable/gbexplo,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Ef" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Es" = (
-/obj/structure/closet/secure_closet/pathfinder{
- req_access = list(62,43,67)
- },
-/obj/item/device/bluespaceradio/groundbase_prelinked,
-/obj/machinery/camera/network/exploration,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Ev" = (
-/obj/machinery/camera/network/cargo,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/office)
-"EA" = (
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "patient2";
- name = "Door Lock";
- pixel_x = -26;
- pixel_y = 30;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"EJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"EL" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- pixel_y = 7
- },
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light_switch{
- pixel_x = -16;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"ER" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
-"Fb" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"Fe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- id_tag = "patient2";
- name = "patient recovery";
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/patient2)
-"Fx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level3/nw)
-"FO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
-=======
-/turf/simulated/floor{
-<<<<<<< HEAD
- edge_blending_priority = -1
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-=======
- edge_blending_priority = -1;
- outdoors = 1
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
- },
-/obj/machinery/door/airlock{
- name = "Pilots Office";
- req_access = list(67)
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/civilian/pilot)
-"FV" = (
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Gb" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/medical/uhallway)
-"Gf" = (
-/obj/machinery/light/bigfloorlamp,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/level3/escapepad)
-"Gn" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Gx" = (
-/obj/machinery/photocopier,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"GU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-<<<<<<< HEAD
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/groundbase/civilian/pilot)
-"GW" = (
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level3/escapepad)
-"Hm" = (
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"Hn" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Hx" = (
-/obj/structure/railing/grey,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"HE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"HI" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"HP" = (
-/turf/simulated/wall,
-/area/groundbase/medical/cmo)
-"HU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/alarm{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"HV" = (
-/obj/random/mob/bird,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/unexplored/outdoors)
-"Ih" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"Ii" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"Io" = (
-/obj/structure/table/rack,
-/obj/item/weapon/rig/medical/equipped,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Iu" = (
-/turf/simulated/wall,
-/area/groundbase/medical/uhallway)
-"IC" = (
-/obj/structure/table/rack/shelf,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/item/stack/marker_beacon/thirty{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/stack/marker_beacon/thirty{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/item/device/gps{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"ID" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient4)
-"IF" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"IG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"IH" = (
-/obj/effect/shuttle_landmark/premade/groundbase,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
-"IS" = (
-/turf/simulated/open,
-/area/groundbase/level3/ne/open)
-"Jf" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Jh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Jk" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"Jl" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"Jy" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"Jz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"JL" = (
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/groundbase/level3/se)
-"JW" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 8;
- pixel_y = 7
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"Ka" = (
-/obj/structure/closet/secure_closet/sar,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Kh" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "patient_room_1"
- },
-/turf/simulated/floor,
-/area/groundbase/medical/patient1)
-"Kj" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-=======
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level3/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Kl" = (
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"Kr" = (
-/turf/simulated/open,
-/area/groundbase/level3/nw/open)
-"KG" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"KZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Lf" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/cargo/office)
-"Lt" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level3/sw)
-"Lw" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"LG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/groundbase/medical/uhallway)
-"LY" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"Mc" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"Mz" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/open,
-/area/groundbase/level3/nw/open)
-"MF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level3/nw)
-"ML" = (
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"MM" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-<<<<<<< HEAD
-=======
-"MP" = (
-/obj/structure/hull_corner{
- dir = 4
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/shuttle/groundbase/exploration)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"MU" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"MV" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"Nb" = (
-<<<<<<< HEAD
-/obj/structure/bed/chair/shuttle{
- dir = 8
-=======
-/obj/effect/shuttle_landmark{
- base_area = /area/groundbase/exploration/shuttlepad;
- base_turf = /turf/simulated/floor/reinforced;
- docking_controller = "expshuttle_dock";
- landmark_tag = "gb_excursion_pad";
- name = "Excursion Shuttlepad"
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/obj/structure/closet/emergsuit_wall{
- dir = 4;
- pixel_x = 27
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Nf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"No" = (
-/obj/structure/closet/secure_closet/paramedic,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"NX" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/expedition_medical,
-/obj/item/clothing/head/helmet/space/void/expedition_medical,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Oc" = (
-/obj/machinery/light,
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"Og" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Oh" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"Ok" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/obj/item/device/gps/medical,
-/obj/item/device/radio,
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"OD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/medical/patio)
-"OI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/level3/nw)
-<<<<<<< HEAD
-=======
-"OJ" = (
-/obj/effect/landmark/start/pilot,
-/obj/structure/closet/walllocker_double{
- dir = 8;
- name = "NIFsoft uploader cabinet";
- pixel_x = -32
- },
-/obj/item/weapon/storage/box/nifsofts_pilot,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-=======
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-"OT" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/groundbase/dorms/bathroom)
->>>>>>> 8de672043e... Merge pull request #13370 from FirstSgtDan/nifsoft
-"Pd" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Pf" = (
-/obj/machinery/mineral/equipment_vendor/survey,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Ph" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"Pr" = (
-/obj/machinery/button/remote/airlock{
- dir = 8;
- id = "patient1";
- name = "Door Lock";
- pixel_x = 26;
- pixel_y = 30;
- specialfunctions = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"Px" = (
-/turf/simulated/open,
-/area/groundbase/cargo/office)
-"PH" = (
-/turf/simulated/wall/rshull,
-/area/shuttle/groundbase/exploration)
-"PL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"PQ" = (
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"PV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Qa" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/level3/nw)
-"Qe" = (
-/obj/structure/table/bench/marble,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Qf" = (
-/turf/simulated/floor/bmarble,
-/area/groundbase/cargo/office)
-"Qk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Qn" = (
-/obj/machinery/status_display,
-/turf/simulated/wall,
-/area/groundbase/level3/escapepad)
-<<<<<<< HEAD
-=======
-"Qo" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Qq" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/open,
-/area/groundbase/level3/nw/open)
-"Qr" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"QC" = (
-/obj/machinery/door/airlock/multi_tile/glass/polarized{
- id_tag = null;
- id_tint = null;
- name = "Medbay Airlock";
- req_one_access = list(5)
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/uhallway)
-"QD" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
-"QO" = (
-/obj/structure/railing,
-/turf/simulated/open,
-/area/groundbase/level3/nw/open)
-"Rg" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"Rh" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Ri" = (
-/obj/item/modular_computer/console/preset/command,
-/obj/structure/sign/painting/library_secure{
- pixel_x = -30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"Rk" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"RM" = (
-/obj/machinery/photocopier/faxmachine{
- department = "Exploration"
- },
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"RY" = (
-/obj/structure/railing/grey,
-/turf/simulated/open,
-/area/groundbase/cargo/office)
-"Sa" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"Sf" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- id_tag = "patient1";
- name = "patient recovery";
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/patient1)
-"Sg" = (
-/turf/simulated/wall,
-/area/groundbase/cargo/office)
-"Sp" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"Ss" = (
-/turf/simulated/mineral/cave,
-/area/groundbase/level3/ne)
-"SB" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"SD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"SF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"SG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/level3/nw)
-"SJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"ST" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"SW" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/obj/machinery/button/windowtint{
- id = "cmo_office";
- pixel_y = -28
- },
-/obj/effect/landmark/start/cmo,
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"Tk" = (
-/obj/effect/landmark/start/pilot,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"Ts" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-<<<<<<< HEAD
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/exploration/equipment)
-=======
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/civilian/pilot)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Tv" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom/department/medbay{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient3)
-"TH" = (
-/obj/machinery/power/apc,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-<<<<<<< HEAD
-/obj/structure/cable/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"TT" = (
-/obj/machinery/atmospheric_field_generator/perma/underdoors,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/airlock/science{
- frequency = null;
- name = "Shuttle";
- req_one_access = null
- },
-/obj/effect/map_helper/airlock/door/simple,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/shuttle/groundbase/exploration)
-"TV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab{
- outdoors = 0
- },
-/area/groundbase/level3/escapepad)
-"Ue" = (
-/obj/effect/landmark{
- name = "droppod_landing"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/unexplored/outdoors)
-"Uf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/groundbase/level3/nw)
-"Uk" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/skills{
- dir = 8
- },
-/obj/machinery/keycard_auth{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"Un" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_y = -4
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"Vh" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/alarm,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"Vj" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Vl" = (
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/uhallway)
-"Vm" = (
-/turf/simulated/wall,
-/area/groundbase/medical/paramedic)
-"Vz" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/structure/closet/emergsuit_wall{
- dir = 8;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"VB" = (
-/obj/structure/table/bench/marble,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"VF" = (
-/obj/effect/landmark/start/paramedic,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"VG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/uhallway)
-"VH" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"VJ" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/open,
-/area/groundbase/medical/uhallway)
-"VR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"VU" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"Wg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient1)
-"Wm" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"Wr" = (
-<<<<<<< HEAD
-/obj/structure/cable/yellow{
- icon_state = "4-8"
-=======
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"WF" = (
-/obj/structure/flora/pottedplant/minitree,
-/turf/simulated/floor/wood,
-/area/groundbase/medical/cmo)
-"WO" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/escapepad)
-"Xl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/groundbase/medical/cmo)
-"Xv" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/groundbase/unexplored/outdoors)
-"XB" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/patient2)
-"XC" = (
-<<<<<<< HEAD
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-=======
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"XL" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/level3/nw/open)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"XT" = (
-/obj/machinery/computer/ship/helm,
-/turf/simulated/floor/tiled,
-/area/shuttle/groundbase/exploration)
-"Yy" = (
-/obj/structure/table/rack,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-<<<<<<< HEAD
-=======
-"Yz" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/dorms/bathroom)
-"YG" = (
-/turf/simulated/floor{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/civilian/kitchen)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"YJ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled,
-/area/groundbase/exploration/equipment)
-"YK" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/reinforced{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"YQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- id_tag = "patient3";
- name = "patient recovery";
- req_one_access = null
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/medical/patient3)
-"Zc" = (
-/obj/structure/table/bench/marble,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/paramedic,
-/turf/simulated/floor/tiled{
- outdoors = 1
- },
-/area/groundbase/medical/patio)
-"Zn" = (
-/obj/machinery/firealarm{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Zo" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/unexplored/outdoors)
-"Zp" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/turf/simulated/floor/tiled,
-/area/groundbase/civilian/pilot)
-"Zv" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/medical/paramedic)
-"Zx" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/reinforced/virgo3c{
- edge_blending_priority = -1
- },
-/area/groundbase/exploration/shuttlepad)
-"ZH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/groundbase/level3/nw)
-"ZO" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized/full{
- id = "patient_room_3"
- },
-/turf/simulated/floor,
-/area/groundbase/medical/patient3)
-
-(1,1,1) = {"
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-mr
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-Bg
-oF
-zh
-hO
-"}
-(2,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(3,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(4,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(5,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(6,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(7,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(8,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(9,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(10,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(11,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(12,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-pf
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(13,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(14,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Qa
-Qa
-Qa
-qO
-qO
-qO
-qO
-qO
-Qa
-Qa
-Qa
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(15,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Qa
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-Qa
-Xv
-ok
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Ue
-Xv
-Xv
-Xv
-Xv
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(16,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Qa
-qO
-fz
-fz
-fz
-fz
-fz
-fz
-fz
-qO
-Qa
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(17,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Qa
-qO
-fz
-bm
-OJ
-pd
-Tk
-bm
-fz
-qO
-qO
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Ue
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-ok
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(18,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-qO
-fz
-Wm
-Tk
-uP
-Tk
-MV
-fz
-qO
-qO
-Qa
-Qa
-qO
-qO
-qO
-qO
-qO
-Qa
-Qa
-Qa
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(19,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-nR
-fz
-dI
-dR
-xO
-Nf
-TH
-fz
-rh
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(20,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-qO
-fz
-Zp
-Jk
-zK
-Zp
-Zp
-fz
-qO
-hl
-Qn
-it
-it
-it
-it
-it
-Qn
-hl
-qO
-qO
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-vs
-vs
-Mz
-Mz
-Mz
-Mz
-Mz
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Xv
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(21,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-HV
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-jv
-jv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-qO
-fz
-fz
-fz
-FO
-fz
-fz
-fz
-qO
-pY
-Ii
-Ii
-Ii
-ow
-Ii
-Ii
-Ii
-pY
-qO
-qO
-Zo
-Zo
-Zo
-Zo
-Zo
-vs
-vs
-vs
-By
-By
-By
-By
-By
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(22,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-qO
-qO
-qO
-qO
-iN
-GU
-iN
-qO
-qO
-qO
-hl
-fy
-Ii
-Ii
-ow
-Ii
-Ii
-eC
-hl
-qO
-qO
-vs
-vs
-vs
-Zo
-Zo
-vs
-vs
-vs
-By
-By
-By
-By
-By
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(23,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Qa
-Qa
-Qa
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-qO
-MF
-qO
-Qa
-Qa
-nR
-hl
-Rk
-ow
-ow
-ow
-ow
-ow
-CS
-hl
-Kr
-Kr
-vs
-vs
-vs
-vs
-vs
-vs
-vs
-vs
-Qq
-Qq
-Qq
-Qq
-Qq
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-Zo
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(24,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Qa
-qO
-qO
-qO
-qO
-hb
-qO
-qO
-qO
-qO
-qO
-MF
-qO
-qO
-qO
-qO
-hl
-TV
-Ii
-Ii
-ow
-Ii
-Ii
-vu
-hl
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(25,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-qO
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-qO
-qO
-tu
-SG
-SG
-SG
-SG
-SF
-re
-ow
-ow
-ow
-Ii
-Ii
-Ii
-hl
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-HV
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(26,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-qO
-aa
-tU
-jp
-Kj
-wm
-xH
-aa
-qO
-qO
-MF
-Gf
-tM
-tM
-tM
-Qn
-Ii
-Ii
-Ii
-Qr
-ow
-ow
-ow
-Qn
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(27,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-qO
-qO
-aa
-bS
-IG
-vp
-Wr
-nN
-aa
-qO
-qO
-MF
-tM
-rJ
-vw
-vw
-ws
-vw
-vw
-vw
-vw
-vw
-vw
-vw
-ws
-vw
-vw
-vw
-vw
-nU
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(28,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-qO
-qO
-aa
-tU
-IG
-zG
-ma
-Ka
-aa
-bi
-qO
-MF
-tM
-pC
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-pe
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Lt
-Bg
-"}
-(29,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-qO
-qO
-aa
-zF
-Ef
-Og
-YJ
-HE
-dE
-Ts
-uF
-mU
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Bg
-"}
-(30,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-qO
-qO
-aa
-NX
-KG
-IC
-Pf
-FV
-aa
-bi
-qO
-Fx
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Zo
-Lt
-Lt
-Lt
-Bg
-"}
-(31,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-qO
-qO
-aa
-hQ
-uU
-CU
-KG
-rV
-aa
-qO
-qO
-Fx
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Zo
-Zo
-Lt
-Lt
-Lt
-Bg
-"}
-(32,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-qO
-qO
-aa
-Es
-gx
-Un
-dQ
-RM
-aa
-qO
-qO
-Fx
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Lt
-Bg
-"}
-(33,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-qO
-qO
-qO
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-qO
-qO
-Fx
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(34,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-qO
-qO
-qO
-aa
-Zx
-Hm
-tY
-Hm
-Oc
-gt
-qO
-qO
-Fx
-mw
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(35,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-qO
-pv
-jY
-Dy
-jY
-pL
-jo
-Oh
-Oh
-Oh
-XC
-SG
-ZH
-GW
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(36,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-qO
-uG
-DE
-PH
-PH
-bh
-PH
-PH
-PH
-PH
-Bd
-qO
-cf
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(37,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-qO
-uG
-PH
-PH
-Ak
-Jh
-Vz
-jc
-PH
-rb
-Bd
-ER
-Uf
-Gf
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(38,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-qO
-uG
-jX
-pm
-Dm
-Jh
-wn
-gu
-wu
-PH
-Bd
-OI
-xM
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(39,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-qO
-uG
-jX
-XT
-Dm
-hC
-oQ
-uH
-um
-PH
-Bd
-cY
-Kr
-tM
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(40,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-qO
-uG
-jX
-Bo
-Dm
-dW
-cE
-cE
-PH
-PH
-Bd
-Kr
-Kr
-Kr
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(41,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-vs
-vs
-qO
-uG
-PH
-dX
-ei
-Ea
-Nb
-vV
-PH
-rb
-Bd
-Kr
-Kr
-Kr
-Sp
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-BE
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(42,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-vs
-vs
-qO
-uG
-PH
-PH
-PH
-TT
-PH
-PH
-PH
-PH
-Bd
-Kr
-Kr
-Kr
-pC
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-cB
-DB
-DB
-DB
-DB
-DB
-DB
-DB
-pe
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(43,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-vs
-vs
-vs
-vs
-ed
-YK
-VH
-VH
-VH
-VH
-VH
-VH
-VH
-VH
-vA
-Kr
-Kr
-Kr
-WO
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-Jl
-VR
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(44,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-vs
-vs
-vs
-vs
-ed
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(45,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-vs
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(46,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-vs
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(47,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(48,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QO
-By
-By
-ly
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(49,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(50,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Bg
-"}
-(51,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Ue
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Bg
-"}
-(52,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Bg
-"}
-(53,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-kU
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Bg
-"}
-(54,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-IH
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(55,1,1) = {"
-mr
-jv
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-ok
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(56,1,1) = {"
-mr
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(57,1,1) = {"
-mr
-jv
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(58,1,1) = {"
-mr
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(59,1,1) = {"
-mr
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(60,1,1) = {"
-mr
-jv
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-vs
-Kr
-vs
-vs
-Zo
-vs
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(61,1,1) = {"
-mr
-jv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Bg
-"}
-(62,1,1) = {"
-mr
-jv
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-QD
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Bg
-"}
-(63,1,1) = {"
-mr
-jv
-Zo
-Zo
-Zo
-Zo
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Lt
-Bg
-"}
-(64,1,1) = {"
-mr
-jv
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-Lt
-Bg
-"}
-(65,1,1) = {"
-mr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(66,1,1) = {"
-mr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(67,1,1) = {"
-mr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-Kr
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-tZ
-JL
-"}
-(68,1,1) = {"
-mr
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-JL
-"}
-(69,1,1) = {"
-mr
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-JL
-"}
-(70,1,1) = {"
-mr
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-wP
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-pf
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(71,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(72,1,1) = {"
-lk
-Ss
-IS
-IS
-IS
-IS
-IS
-IS
-Zo
-Zo
-Zo
-IS
-IS
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(73,1,1) = {"
-lk
-Ss
-IS
-Zo
-IS
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(74,1,1) = {"
-lk
-Ss
-IS
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-sP
-sP
-sP
-sP
-sP
-sP
-sP
-sP
-sP
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(75,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Sg
-oK
-oK
-Sg
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(76,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-oK
-iT
-iT
-qg
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(77,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-oK
-iT
-iT
-Qf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Xv
-ok
-Xv
-Xv
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(78,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-HV
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-oK
-Px
-xs
-Sg
-gc
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-BB
-Kh
-Kh
-Kh
-BH
-ZO
-ZO
-ZO
-HP
-HP
-HP
-nb
-nb
-nb
-HP
-HP
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(79,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-vs
-vs
-vs
-kB
-sP
-oK
-Px
-RY
-oK
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-BB
-ST
-VU
-IF
-BH
-Tv
-Mc
-Jy
-HP
-Ri
-qk
-qk
-nX
-km
-Gx
-HP
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(80,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-vs
-vs
-vs
-kB
-kB
-Sg
-oK
-oK
-Sg
-Ev
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-BB
-Fb
-Wg
-ro
-BH
-Lw
-PL
-Aa
-HP
-iY
-SW
-xI
-Xl
-Kl
-qL
-nb
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(81,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-vs
-Zo
-Zo
-kB
-kB
-Lf
-yU
-yU
-yU
-Lf
-Lf
-Lf
-qA
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-BB
-wU
-Pr
-MM
-BH
-EL
-nr
-Sa
-HP
-Uk
-JW
-aQ
-Xl
-Kl
-oW
-nb
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(82,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kB
-kB
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-BB
-BB
-Sf
-BB
-BH
-BH
-YQ
-BH
-HP
-WF
-aG
-Kl
-Xl
-Kl
-wc
-nb
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(83,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kB
-kB
-Lf
-yU
-yU
-bk
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-Hx
-yZ
-OD
-Hn
-ky
-ML
-OD
-Hn
-HP
-Vh
-Kl
-Kl
-Xl
-Kl
-cb
-nb
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(84,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-kB
-kB
-Lf
-Lf
-Lf
-Lf
-gc
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-Hx
-Gn
-OD
-xX
-fS
-xX
-OD
-xX
-HP
-rD
-SB
-mv
-gZ
-Rg
-nC
-HP
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(85,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-kB
-kB
-Lf
-bk
-bk
-yU
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-OD
-xX
-fS
-xX
-OD
-xX
-HP
-HP
-HP
-HP
-jF
-HP
-HP
-HP
-Iu
-Iu
-Iu
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(86,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-kB
-kB
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-OD
-xX
-fS
-xX
-OD
-xX
-Iu
-MU
-sb
-gR
-sQ
-qN
-qN
-Jz
-sS
-Ih
-Iu
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(87,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-kB
-kB
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-Lf
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-BC
-zJ
-dU
-gl
-PV
-gl
-QC
-Ph
-xD
-SD
-nq
-Gb
-Gb
-eE
-yQ
-yQ
-LG
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(88,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-kB
-kB
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-me
-Rh
-hN
-Jf
-OD
-xX
-Vl
-yQ
-yQ
-ot
-DR
-VJ
-VJ
-eE
-LY
-yQ
-LG
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(89,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-kB
-kB
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-Zc
-Rh
-fu
-xX
-OD
-xX
-Iu
-SJ
-VG
-EJ
-wB
-bM
-HU
-DI
-qC
-ht
-Iu
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(90,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-xp
-xX
-xX
-xX
-OD
-Pd
-Vm
-Vm
-Vm
-Vm
-fM
-Vm
-Vm
-zb
-Iu
-Iu
-Iu
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(91,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Hx
-qT
-xp
-xX
-xX
-xX
-OD
-xX
-Vm
-kQ
-sJ
-eo
-ym
-Zn
-No
-Vm
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(92,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Hx
-yZ
-xp
-xX
-xX
-xX
-OD
-xX
-Vm
-Ok
-to
-to
-KZ
-to
-bf
-Vm
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(93,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-Hx
-yZ
-OD
-HI
-xX
-PQ
-OD
-HI
-Vm
-DQ
-to
-VB
-KZ
-to
-ey
-ik
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(94,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-fI
-fI
-Fe
-fI
-fH
-fH
-dq
-fH
-Vm
-Vj
-fO
-Qe
-Bw
-VF
-to
-ik
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(95,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-fI
-dN
-EA
-qf
-fH
-oN
-pq
-oR
-Vm
-Yy
-to
-VB
-Qk
-to
-Yy
-ik
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(96,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-fI
-kE
-om
-XB
-fH
-ID
-lz
-Cv
-Vm
-ab
-to
-to
-Qk
-to
-og
-Vm
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(97,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-fI
-ak
-vZ
-ku
-fH
-oX
-iQ
-eB
-Vm
-yy
-ui
-Io
-zL
-lF
-Zv
-Vm
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(98,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-fI
-As
-As
-As
-fH
-in
-in
-in
-Vm
-Vm
-Vm
-ik
-ik
-ik
-Vm
-Vm
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(99,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(100,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(101,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-HV
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(102,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(103,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(104,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(105,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(106,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(107,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(108,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-JL
-"}
-(109,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-JL
-"}
-(110,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-JL
-"}
-(111,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-yA
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-JL
-"}
-(112,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-tZ
-tZ
-JL
-"}
-(113,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-tZ
-tZ
-JL
-"}
-(114,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-JL
-"}
-(115,1,1) = {"
-lk
-Ss
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-HV
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-JL
-"}
-(116,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-JL
-"}
-(117,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Ue
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-JL
-"}
-(118,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(119,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(120,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(121,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-HV
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(122,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(123,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-yA
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(124,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-JL
-"}
-(125,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-yA
-Zo
-Zo
-HV
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Xv
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(126,1,1) = {"
-lk
-Ss
-Ss
-Zo
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-yA
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(127,1,1) = {"
-lk
-Ss
-Ss
-Zo
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Xv
-Zo
-Zo
-Zo
-Xv
-Xv
-Xv
-Xv
-Xv
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(128,1,1) = {"
-lk
-Ss
-Ss
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-yA
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(129,1,1) = {"
-lk
-Ss
-Ss
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(130,1,1) = {"
-lk
-Ss
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-yA
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(131,1,1) = {"
-lk
-Ss
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(132,1,1) = {"
-lk
-Ss
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-JL
-"}
-(133,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-cj
-cj
-JL
-"}
-(134,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-cj
-cj
-JL
-"}
-(135,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-cj
-JL
-"}
-(136,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-Zo
-Zo
-Zo
-Zo
-Zo
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(137,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(138,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(139,1,1) = {"
-lk
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-IS
-cj
-cj
-cj
-cj
-cj
-cj
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-tZ
-JL
-"}
-(140,1,1) = {"
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-lk
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-"}
->>>>>>> 8a68e2bd53... Merge pull request #12856 from Very-Soft/somequicktweaks
+eeeeeeee
\ No newline at end of file
diff --git a/maps/groundbase/groundbase_defines.dm b/maps/groundbase/groundbase_defines.dm
index 0525941653..9b669ed723 100644
--- a/maps/groundbase/groundbase_defines.dm
+++ b/maps/groundbase/groundbase_defines.dm
@@ -40,8 +40,8 @@
use_overmap = TRUE
overmap_z = Z_LEVEL_MISC
- overmap_size = 25
- overmap_event_areas = 15
+ overmap_size = 62
+ overmap_event_areas = 100
usable_email_tlds = list("virgo.nt")
zlevel_datum_type = /datum/map_z_level/groundbase
@@ -340,7 +340,7 @@
skybox_pixel_x = 0
skybox_pixel_y = 0
- initial_generic_waypoints = list("groundbase", "gb_excursion_pad")
+ initial_generic_waypoints = list("groundbase", "gb_excursion_pad","omship_axolotl")
initial_restricted_waypoints = list()
extra_z_levels = list(
diff --git a/maps/groundbase/groundbase_telecomms.dm b/maps/groundbase/groundbase_telecomms.dm
index a515deed68..192c976ba3 100644
--- a/maps/groundbase/groundbase_telecomms.dm
+++ b/maps/groundbase/groundbase_telecomms.dm
@@ -1,93 +1 @@
-// ### Preset machines ###
-
-
-// #### Relays ####
-// Telecomms doesn't know about connected z-levels, so we need relays even for the other surface levels.
-/obj/machinery/telecomms/relay/preset/station
- id = "groundbase Relay"
- autolinkers = list("groundbase_relay")
-
-// #### Hub ####
-/obj/machinery/telecomms/hub/preset/groundbase
- id = "Hub"
- network = "tcommsat"
- autolinkers = list("hub",
- "groundbase_relay", "c_relay", "m_relay", "r_relay",
- "science", "medical", "supply", "service", "common", "command", "engineering", "security", "explorer", "unused",
- "hb_relay", "receiverA", "broadcasterA"
- )
-
-/obj/machinery/telecomms/receiver/preset_right/groundbase
- id = "groundbase_rx"
- freq_listening = list(AI_FREQ, SCI_FREQ, MED_FREQ, SUP_FREQ, SRV_FREQ, COMM_FREQ, ENG_FREQ, SEC_FREQ, ENT_FREQ, EXP_FREQ)
-
-/obj/machinery/telecomms/broadcaster/preset_right/groundbase
- id = "groundbase_tx"
-
-/obj/machinery/telecomms/bus/preset_two/groundbase
- freq_listening = list(SUP_FREQ, SRV_FREQ, EXP_FREQ)
-
-/obj/machinery/telecomms/server/presets/service/groundbase
- freq_listening = list(SRV_FREQ, EXP_FREQ)
- autolinkers = list("service", "explorer")
-
-// Telecommunications Satellite
-/area/groundbase/command/tcomms
- name = "\improper Telecomms"
- ambience = list('sound/ambience/ambisin2.ogg', 'sound/ambience/signal.ogg', 'sound/ambience/signal.ogg')
-
-/area/groundbase/command/tcomms/entrance
- name = "\improper Telecomms Teleporter"
-
-/area/groundbase/command/tcomms/foyer
- name = "\improper Telecomms Foyer"
-
-/area/groundbase/command/tcomms/storage
- name = "\improper Telecomms Storage"
-
-/area/groundbase/command/tcomms/computer
- name = "\improper Telecomms Control Room"
-
-/area/groundbase/command/tcomms/chamber
- name = "\improper Telecomms Central Compartment"
- flags = BLUE_SHIELDED
-
-/area/maintenance/substation/tcomms
- name = "\improper Telecomms Substation"
-
-/area/maintenance/station/tcomms
- name = "\improper Telecoms Maintenance"
-
-/datum/map/groundbase/default_internal_channels()
- return list(
- num2text(PUB_FREQ) = list(),
- num2text(AI_FREQ) = list(access_synth),
- num2text(ENT_FREQ) = list(),
- num2text(ERT_FREQ) = list(access_cent_specops),
- num2text(COMM_FREQ)= list(access_heads),
- num2text(ENG_FREQ) = list(access_engine_equip, access_atmospherics),
- num2text(MED_FREQ) = list(access_medical_equip),
- num2text(MED_I_FREQ)=list(access_medical_equip),
- num2text(SEC_FREQ) = list(access_security),
- num2text(SEC_I_FREQ)=list(access_security),
- num2text(SCI_FREQ) = list(access_tox,access_robotics,access_xenobiology),
- num2text(SUP_FREQ) = list(access_cargo),
- num2text(SRV_FREQ) = list(access_janitor, access_hydroponics),
- num2text(EXP_FREQ) = list(access_explorer)
- )
-
-/obj/item/device/multitool/groundbase_buffered
- name = "pre-linked multitool (groundbase hub)"
- desc = "This multitool has already been linked to the groundbase telecomms hub and can be used to configure one (1) relay."
-
-/obj/item/device/multitool/groundbase_buffered/Initialize()
- . = ..()
- buffer = locate(/obj/machinery/telecomms/hub/preset/groundbase)
-
-/obj/item/device/bluespaceradio/groundbase_prelinked
- name = "bluespace radio (Stellar Delight)"
- handset = /obj/item/device/radio/bluespacehandset/linked/groundbase_prelinked
-
-/obj/item/device/radio/bluespacehandset/linked/groundbase_prelinked
- bs_tx_preload_id = "groundbase_rx" //Transmit to a receiver
- bs_rx_preload_id = "groundbase_tx" //Recveive from a transmitter
+idgaf
\ No newline at end of file
diff --git a/maps/groundbase/westwilds/westwilds template.dmm b/maps/groundbase/westwilds/westwilds template.dmm
index 99b1ff3d2d..7454329c23 100644
--- a/maps/groundbase/westwilds/westwilds template.dmm
+++ b/maps/groundbase/westwilds/westwilds template.dmm
@@ -1,24407 +1 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/item/weapon/tool/wrench,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"am" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 9
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"aq" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"at" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"au" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"aw" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- external_pressure_bound = 0;
- frequency = 1445;
- icon_state = "map_vent_in";
- id_tag = "burn_out";
- initialize_directions = 4;
- pump_direction = 0
- },
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"ay" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"aB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"aC" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"aE" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/substation)
-"aI" = (
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"aQ" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
-"aW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/voidcraft{
- req_one_access = null
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl_q1)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"bc" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"bf" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"bk" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"bp" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"bE" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"bK" = (
-/obj/machinery/conveyor_switch/oneway{
- icon_state = "switch-fwd";
- id = "outpost_canisters";
- position = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"bL" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"bQ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"bS" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"bT" = (
-/obj/machinery/light,
-/obj/machinery/artifact_scanpad,
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"bV" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"bW" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"bY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ci" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/pipedispenser,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cE" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"cG" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"cI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cJ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cL" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"cS" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"cX" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"cZ" = (
-/obj/machinery/atmospherics/unary/heater{
- icon_state = "heater_1";
- use_power = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"do" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Anomaly Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_storage)
-"dx" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"dz" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-<<<<<<< HEAD
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/obj/machinery/power/solar{
- SOLAR_MAX_DIST = 140
- },
-/turf/simulated/floor{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"dB" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"dD" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "Anomaly Testing"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_lab)
-"dI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"dO" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"dX" = (
-/turf/unsimulated/wall/planetary{
- icon_state = "riveted"
- },
-/area/groundbase/wilderness/west)
-"ec" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ed" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"eq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"es" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/obj/machinery/meter,
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"ez" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-<<<<<<< HEAD
-/obj/structure/cable,
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"eC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"eF" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"eS" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"fd" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"fh" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"fo" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"fw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"fQ" = (
-/obj/machinery/chem_master,
-/obj/machinery/camera/network/research_outpost{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"gg" = (
-/obj/machinery/artifact_scanpad,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"gi" = (
-/obj/structure/table/standard,
-/obj/machinery/computer/atmoscontrol/laptop{
- monitored_alarm_ids = list("anomaly_testing");
- req_one_access = list(47,24,11)
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"gz" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"gC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"gF" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"gN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"gS" = (
-/obj/machinery/computer/area_atmos/tag{
- dir = 4;
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"gU" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"gW" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"gX" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"gZ" = (
-/obj/structure/table/standard,
-/obj/item/stack/nanopaste,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"hb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"hf" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"hg" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_lab)
-"hi" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"hm" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"hp" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"hA" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"hB" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"hH" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"hJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"hU" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"hV" = (
-/obj/structure/cable/ender{
- icon_state = "4-8";
- id = "westwilds"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"if" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"iq" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"iy" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"iJ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/obj/machinery/meter,
-/obj/machinery/button/ignition{
- id = "burn_chamber";
- pixel_y = 28
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"iO" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"iU" = (
-/obj/machinery/atmospherics/unary/heat_exchanger,
-/obj/structure/window/basic,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"iV" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 4
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"jb" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"je" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"jj" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"js" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/corner/purple/full{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"jB" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"jH" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"jJ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Science Outpost Atmospherics";
- req_one_access = list(10,47)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/atmos)
-"jL" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"jM" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"jN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"jS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"jU" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Science Outpost"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost)
-"kn" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kv" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"kA" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kE" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Science Outpost";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"kH" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning/cee,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"kM" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"kN" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/anomaly_testing)
-"kT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"kY" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 4;
- frequency = 1445;
- id = "burn_in";
- volume_rate = 700
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"la" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"le" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"lk" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"lq" = (
-/obj/machinery/artifact_analyser,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"lw" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"lB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"lJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"lM" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"lO" = (
-<<<<<<< HEAD
-/turf/unsimulated/wall/planetary/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/unsimulated/wall/planetary,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"lS" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"lW" = (
-/obj/machinery/atmospherics/unary/heater{
- dir = 1;
- icon_state = "heater"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mc" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"mg" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mh" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_storage)
-"mq" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ms" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"mt" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"mC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"mL" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mO" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mP" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"mQ" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"mT" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"mV" = (
-/obj/structure/anomaly_container,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"mY" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"na" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"nb" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/engineering/solarfield)
-"nf" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"nm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"nr" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"nv" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"nM" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/acid{
- pixel_y = -32
- },
-/obj/machinery/reagentgrinder,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"nR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"nU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"op" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"oq" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"or" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ov" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"oz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Science Outpost Substation";
- req_one_access = list(10,47)
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/substation)
-"oE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"oF" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"pe" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"pg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ph" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"pj" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"pv" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"pB" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"pF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"pG" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"pI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"pM" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 9
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"pO" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"pR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"pV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"pW" = (
-/obj/machinery/computer/general_air_control/supermatter_core{
- frequency = 1445;
- input_tag = "burn_in";
- name = "Burn Chamber Air Control";
- output_tag = "burn_out";
- pressure_setting = 0;
- sensors = list("burn_sensor" = "Burn Chamber Sensor")
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"qe" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"qg" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"qj" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"qn" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"qq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"qy" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"qD" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_testing)
-<<<<<<< HEAD
-=======
-"qM" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"qN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"qR" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"qU" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/empty/nitrogen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"qV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qZ" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"ra" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"rc" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing/grey,
-/obj/machinery/atmospherics/portables_connector/fuel{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/phoron{
- start_pressure = 8000.25
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
-"rh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"rr" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"rs" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"rw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ry" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"rK" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 5
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"rS" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"sb" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"sc" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/outpost)
-"sd" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"sr" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Anomaly Storage"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_storage)
-"su" = (
-/obj/machinery/button/remote/blast_door{
- id = "burn_chamber_v";
- name = "Burn Chamber Vent";
- pixel_x = -26;
- pixel_y = 6
- },
-/obj/machinery/button/remote/blast_door{
- id = "burn_chamber_p";
- name = "Burn Chamber Purge";
- pixel_x = -26;
- pixel_y = -8
- },
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"sA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"sI" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"tc" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"te" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"ti" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tu" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tD" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"tH" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 0;
- filtered_out = list("phoron")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"tM" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_testing)
-"tO" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 3;
- filtered_out = list("carbon_dioxide")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"tQ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 30
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"tR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tZ" = (
-/obj/structure/closet/excavation,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ua" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ue" = (
-/obj/effect/map_effect/portal/master/side_b/gb_wilds/west{
- dir = 8
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"uj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ur" = (
-/obj/structure/railing,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"ut" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"uy" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"uz" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"uA" = (
-/obj/machinery/radiocarbon_spectrometer,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"uG" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_lab)
-"uI" = (
-/obj/structure/table/standard,
-/obj/item/device/multitool,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"vd" = (
-/obj/structure/sign/warning/hot_exhaust,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"ve" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"vg" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"vl" = (
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- report_danger_level = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"vp" = (
-/obj/machinery/power/solar_control,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"vr" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"vw" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 8
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"vy" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"vA" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"vC" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"vM" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"vN" = (
-/obj/machinery/air_sensor{
- frequency = 1445;
- id_tag = "burn_sensor";
- output = 63
- },
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"vO" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"vS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"wg" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "General Gasworks"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"wn" = (
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wp" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"ws" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"wy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Input";
- name_tag = "Solar Farm Input"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"wz" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"wQ" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"wT" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"wX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"xh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Science Outpost";
- req_one_access = null
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/outpost)
-"xi" = (
-/obj/machinery/atmospherics/valve{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"xj" = (
-/obj/structure/table/standard,
-/obj/machinery/light,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"xn" = (
-/obj/machinery/vending/phoronresearch{
- dir = 8;
- name = "Toximate 2556";
- products = list(/obj/item/device/transfer_valve = 3, /obj/item/device/assembly/timer = 6, /obj/item/device/assembly/signaler = 6, /obj/item/device/assembly/prox_sensor = 6, /obj/item/device/assembly/igniter = 12)
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"xr" = (
-/obj/effect/map_effect/portal/master/side_b/gb_wilds/east_west{
- dir = 4
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xv" = (
-/obj/machinery/suspension_gen,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"xH" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"xP" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"xT" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/black{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"yc" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/phoron,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"yf" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"yk" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"yn" = (
-/turf/simulated/mineral/ignore_cavegen,
-/area/groundbase/wilderness/west/cave)
-"yq" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"yD" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"yL" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"yV" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 8
- },
-/obj/machinery/meter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"yX" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"yZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"zk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"zx" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"zK" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"zN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"zO" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Science Outpost Subgrid";
- name_tag = "Science Outpost Subgrid"
- },
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"zP" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_storage)
-"zT" = (
-/obj/machinery/bomb_tester,
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/science/outpost/toxins_lab)
-"zV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ac" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ad" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Ai" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Aj" = (
-/obj/machinery/atmospherics/binary/pump/high_power/on,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"An" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ao" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"At" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Mixing"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"Av" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 4;
- filtered_out = list("nitrous_oxide")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Aw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"AD" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"AQ" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"AV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"AY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/science/outpost)
-"Bc" = (
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Bg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Bj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Br" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Bw" = (
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"By" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/obj/structure/cable/heavyduty,
-/obj/structure/cable/heavyduty{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Output";
- name_tag = "Solar Farm Output"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"BH" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Toxins Workroom"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_lab)
-"BJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"BP" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"BS" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 1;
- target_pressure = 200
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Cc" = (
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "anomaly_testing_v";
- name = "Anomaly Testing Vent"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/outpost/anomaly_testing)
-"Cd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Cj" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ck" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/weapon/tool/screwdriver,
-/obj/item/device/assembly_holder/timer_igniter,
-/obj/machinery/camera/network/research_outpost{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Co" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"Cq" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Cu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Cw" = (
-/obj/structure/anomaly_container,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"CE" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
-"CQ" = (
-/obj/machinery/embedded_controller/radio/docking_port_multi{
- child_names_txt = "Port Airlock Control;Starboard Airlock Control";
- child_tags_txt = "axolotl_docking_port;axolotl_docking_star";
- dir = 1;
- id_tag = "axolotl_docking";
- name = "Axolotl Master Docking Controller";
- pixel_y = -22
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24;
- req_access = null;
- req_one_access = list(11,67)
- },
-/obj/structure/cable,
-/obj/machinery/light,
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Dn" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Dz" = (
-/obj/structure/cable/heavyduty{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Power - Solar Array";
- cur_coils = 3;
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"DF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"DI" = (
-/obj/machinery/portable_atmospherics/canister/empty/oxygen,
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"DK" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Solar Access"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"DN" = (
-/obj/structure/table/standard,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/vending/wallmed1{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"DP" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/supply,
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"DW" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Anomalous Materials"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost)
-"DX" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"DY" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Eh" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ei" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Eo" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ew" = (
-/obj/machinery/firealarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Ex" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Ey" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/powered/pump/huge/stationary/purge,
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"EB" = (
-/obj/machinery/alarm,
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"EC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"EG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"EW" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"EZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fb" = (
-/obj/machinery/button/remote/blast_door{
- id = "anomaly_testing_v";
- name = "Panic Chamber Vent";
- pixel_x = 6;
- pixel_y = 26
- },
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Fh" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Fi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fp" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/black,
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ft" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fz" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"FI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"FL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"FO" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"FP" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible/blue,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"FW" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"FX" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Gc" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_lab)
-"Gd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Gg" = (
-/obj/structure/table/steel,
-/obj/item/device/measuring_tape,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/excavation,
-/obj/item/stack/flag/yellow,
-/obj/item/weapon/pickaxe,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Gl" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Gm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Gq" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen/fountain,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Gs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"GH" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"GP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"GQ" = (
-/obj/machinery/atmospherics/omni/atmos_filter{
- tag_east = 1;
- tag_north = 4;
- tag_south = 2;
- tag_west = 3
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"GU" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Hp" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Hq" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Hr" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"Hv" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Hz" = (
-/obj/machinery/power/apc,
-/obj/structure/cable/green,
-/obj/structure/table/standard,
-/obj/fiftyspawner/steel,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HB" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HC" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"HH" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"HI" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"HX" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"HY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Ia" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Id" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"If" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ig" = (
-/obj/machinery/atmospherics/trinary/atmos_filter{
- dir = 4;
- name = "High Power Gas filter";
- power_rating = 15000;
- use_power = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ii" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"In" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"Io" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ip" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Iv" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Iw" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"IA" = (
-/obj/machinery/suspension_gen,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"IB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"II" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"IM" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"IO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"IQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"IR" = (
-/obj/machinery/atmospherics/unary/heat_exchanger,
-/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"IX" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Jb" = (
-/obj/machinery/atmospherics/valve,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Jn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Jq" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Jz" = (
-/obj/effect/floor_decal/corner/purple/full{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"JC" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 9
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"JD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"JE" = (
-/obj/structure/dispenser,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"JL" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"JW" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ke" = (
-/obj/structure/dispenser/oxygen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Km" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Kw" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 1
- },
-/obj/machinery/sparker{
- id = "burn_chamber";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"KA" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"KE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"KI" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"KV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/camera/network/research_outpost{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Lb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Lg" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/screwdriver,
-/obj/item/weapon/anobattery{
- pixel_x = 5;
- pixel_y = 2
- },
-/obj/item/weapon/anobattery,
-/obj/item/weapon/anobattery{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/weapon/anobattery{
- pixel_x = -5;
- pixel_y = -3
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ls" = (
-/obj/machinery/radiocarbon_spectrometer,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ly" = (
-/obj/machinery/atmospherics/trinary/mixer/m_mixer{
- dir = 4;
- name = "High Power Gas mixer";
- power_rating = 15000
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"LA" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"LB" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"LD" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"LF" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/anomaly,
-/obj/item/clothing/head/helmet/space/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/storage/belt/archaeology,
-/obj/item/weapon/melee/umbrella/random,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"LL" = (
-/obj/item/stack/cable_coil/random,
-/obj/structure/table/steel,
-/obj/item/clothing/gloves/yellow,
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"LO" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 10
- },
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-<<<<<<< HEAD
-=======
-"LP" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"LV" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
- },
-/obj/machinery/sparker{
- id = "burn_chamber";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"LY" = (
-/obj/machinery/artifact_harvester,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Mc" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Mx" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"MC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"MN" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"MU" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"MY" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Nh" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Np" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-<<<<<<< HEAD
-=======
-"Nv" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Nw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Nz" = (
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"NC" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"NG" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tank/phoron,
-/obj/machinery/requests_console/preset/research{
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"NI" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"NL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"NV" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"NW" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/toxins_lab)
-"NX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Oq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"OI" = (
-/obj/structure/anomaly_container,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"OL" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"OQ" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"OR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Pb" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Pg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Po" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Pq" = (
-/obj/structure/cable/heavyduty{
- icon_state = "2-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Pz" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"PB" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"PG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"PI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 5
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"PJ" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"PK" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"PM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"PO" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/science/outpost/toxins_lab)
-"PW" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Qc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qf" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Qm" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/anodevice{
- pixel_x = -2
- },
-/obj/item/weapon/anodevice{
- pixel_x = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Qn" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qp" = (
-/obj/machinery/atmospherics/binary/pump,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qw" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Qy" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"QM" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"QN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Rc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"Rf" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"Rq" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Rv" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_testing)
-"Ry" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"RH" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"RM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"RQ" = (
-/obj/structure/reagent_dispensers/coolanttank,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"RU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"RW" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/tool/wirecutters,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Sb" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 1;
- state = 2
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Sf" = (
-/obj/effect/floor_decal/corner/purple/full{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/standard,
-/obj/item/weapon/tool/wrench,
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/obj/item/device/analyzer,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Sh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"Sk" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Sl" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Sn" = (
-/obj/machinery/atmospherics/trinary/mixer/m_mixer{
- dir = 8;
- node1_concentration = 0.79;
- node2_concentration = 0.21
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Sq" = (
-/turf/simulated/wall,
-/area/groundbase/engineering/solarshed)
-"Sw" = (
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"SC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"SF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ti" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"To" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Tp" = (
-/obj/structure/reagent_dispensers/coolanttank,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Tu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/weapon/weldingtool,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"TE" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"TJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"TM" = (
-/obj/machinery/atmospherics/valve,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Up" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Uq" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost)
-"Ur" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Ut" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_hallway)
-"Uy" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"UB" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_storage)
-"UI" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/anomaly,
-/obj/item/clothing/head/helmet/space/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/storage/belt/archaeology,
-/obj/item/weapon/melee/umbrella/random,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"UL" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
-"UM" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"UN" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Vf" = (
-/obj/structure/table/steel,
-/obj/item/device/measuring_tape,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/excavation,
-/obj/item/stack/flag/yellow,
-/obj/item/weapon/pickaxe,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Vk" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Vr" = (
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"VD" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"VG" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"VS" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"VZ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Wc" = (
-/obj/structure/cable,
-<<<<<<< HEAD
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/obj/machinery/power/solar{
- SOLAR_MAX_DIST = 140
- },
-/turf/simulated/floor{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Wg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Wl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"Wm" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ws" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_lab)
-"WB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"WE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"WF" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-<<<<<<< HEAD
-=======
-"WH" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"WR" = (
-/obj/machinery/atmospherics/pipe/vent/high_volume,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"WS" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"WU" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"WV" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxing_gasworks)
-"WZ" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Xb" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Xe" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Xi" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 8;
- target_pressure = 200
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Xk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Xl" = (
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"XO" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 9
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"XS" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"XX" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"XY" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer_1";
- use_power = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Yb" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Yk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Yr" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Yu" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Yw" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple/full{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"YB" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"YI" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Science Outpost Substation Bypass"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"YJ" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"YK" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west/unexplored)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west/unexplored)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"YL" = (
-/obj/structure/closet/excavation,
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"YT" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "General Gasworks"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"YW" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/anodevice{
- pixel_x = -2
- },
-/obj/item/weapon/anodevice{
- pixel_x = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Zi" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/turf/simulated/floor/greengrid,
-/area/groundbase/science/outpost/toxins_lab)
-"Zw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Zx" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ZA" = (
-/obj/structure/anomaly_container,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"ZL" = (
-/obj/machinery/atmospherics/pipe/vent{
- dir = 4
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/science/outpost/atmos)
-"ZN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"ZO" = (
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ZX" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ZZ" = (
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-
-(1,1,1) = {"
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-xr
-iV
-iV
-iV
-iV
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-"}
-(2,1,1) = {"
-lO
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-lO
-"}
-(3,1,1) = {"
-lO
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-lO
-"}
-(4,1,1) = {"
-lO
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-lO
-"}
-(5,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(6,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(7,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(8,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(9,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(10,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(11,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(12,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(13,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(14,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(15,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(16,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(17,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(18,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(19,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(20,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(21,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(22,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(23,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(24,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(25,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(26,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(27,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(28,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(29,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(30,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(31,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(32,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(33,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(34,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(35,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(36,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mt
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-WU
-mt
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(37,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(38,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-Cq
-ez
-Cq
-ez
-Cq
-ez
-Cq
-Wc
-mt
-mt
-mt
-dz
-Cq
-ez
-Cq
-ez
-Cq
-ez
-Cq
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(39,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-mt
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(40,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-mt
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(41,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-mt
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(42,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-mt
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(43,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-mt
-mt
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(44,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-xH
-jN
-Ad
-jN
-Ad
-jN
-Ad
-Ii
-Ii
-LB
-Ii
-Ii
-OR
-jN
-OR
-jN
-OR
-jN
-Ry
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(45,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-Nz
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-nb
-lB
-nb
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(46,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(47,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(48,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(49,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(50,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-tc
-ez
-tc
-ez
-tc
-ez
-tc
-Wc
-mt
-lB
-mt
-dz
-tc
-ez
-tc
-ez
-tc
-ez
-tc
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(51,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-lB
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(52,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mt
-mt
-nb
-mt
-nb
-nb
-nb
-nb
-nb
-nb
-nb
-nb
-lB
-nb
-nb
-nb
-mt
-mt
-nb
-nb
-mt
-mt
-nb
-mt
-mt
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(53,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-lB
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(54,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-Cq
-ez
-Cq
-ez
-Cq
-ez
-Cq
-Wc
-mt
-lB
-mt
-dz
-Cq
-ez
-Cq
-ez
-Cq
-ez
-Cq
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(55,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(56,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(57,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(58,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mt
-WU
-Rf
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(59,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-nb
-lB
-nb
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(60,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-OQ
-Ii
-Ii
-Ad
-jN
-Ad
-jN
-Ad
-jN
-Ad
-Ii
-Ii
-vC
-Ii
-Ii
-OR
-jN
-OR
-jN
-OR
-jN
-Ry
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(61,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-nb
-lB
-nb
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(62,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mt
-Co
-YB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(63,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(64,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(65,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(66,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-tc
-ez
-tc
-ez
-tc
-ez
-tc
-Wc
-mt
-lB
-mt
-dz
-tc
-ez
-tc
-ez
-tc
-ez
-tc
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(67,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-lB
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(68,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mt
-nb
-mt
-nb
-nb
-nb
-mt
-nb
-nb
-mt
-nb
-nb
-lB
-nb
-nb
-nb
-nb
-mt
-mt
-nb
-mt
-mt
-nb
-mt
-mt
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(69,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-lB
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-Nz
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(70,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-Cq
-ez
-Cq
-ez
-Cq
-ez
-Cq
-Wc
-mt
-lB
-mt
-dz
-Cq
-ez
-Cq
-ez
-Cq
-ez
-Cq
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(71,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(72,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(73,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(74,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-lB
-mt
-dz
-ov
-ez
-ov
-ez
-ov
-ez
-ov
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(75,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-nb
-lB
-nb
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(76,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-xH
-jN
-Ad
-jN
-Ad
-jN
-Ad
-Ii
-Ii
-vC
-Ii
-Ii
-OR
-jN
-OR
-jN
-OR
-jN
-Ry
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(77,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-nb
-lB
-nb
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-lB
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(78,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(79,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Sq
-FI
-FI
-Sq
-FI
-FI
-Sq
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(80,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Sq
-YJ
-SC
-rS
-Dz
-nf
-Sq
-nr
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(81,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-ay
-QN
-vp
-SC
-SC
-Ur
-Pq
-Qy
-By
-nr
-ur
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-lB
-mt
-dz
-BP
-ez
-BP
-ez
-BP
-ez
-BP
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(82,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-wy
-Sq
-LL
-ZZ
-FW
-ZZ
-ZZ
-Sq
-nr
-nr
-ur
-mt
-dz
-tc
-ez
-tc
-ez
-tc
-ez
-tc
-Wc
-mt
-lB
-mt
-dz
-tc
-ez
-tc
-ez
-tc
-ez
-tc
-Wc
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(83,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Wl
-Sq
-Sq
-DK
-Sq
-DK
-Sq
-Sq
-nr
-nr
-ur
-Nz
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-lB
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-mt
-aC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(84,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mt
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-mt
-lB
-mt
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-Co
-mt
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(85,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(86,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(87,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-IM
-hA
-IM
-hA
-nr
-nr
-nr
-nr
-dB
-dB
-dB
-dB
-dB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(88,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-tM
-tM
-Cc
-Cc
-Cc
-tM
-tM
-tM
-tM
-tM
-tM
-tM
-nr
-nr
-nr
-VD
-VD
-VD
-VD
-nr
-nr
-nr
-nr
-dB
-Ey
-Ey
-Ey
-dB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(89,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-tM
-Uy
-nv
-nv
-nv
-Uy
-kN
-Fb
-NI
-mV
-ZA
-tM
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-nr
-vd
-dB
-LO
-xT
-Fp
-dB
-vd
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(90,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-tM
-nv
-qZ
-iq
-lM
-yZ
-Rv
-pO
-Nh
-Ip
-uy
-tM
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-nr
-EW
-LV
-hH
-hH
-PW
-Kw
-WF
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(91,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-tM
-nv
-Ti
-AQ
-RU
-dx
-qD
-TM
-gz
-Sb
-Hv
-tM
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-nr
-EW
-aw
-hH
-vN
-PW
-kY
-vM
-sI
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(92,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-tM
-nv
-mT
-zk
-Hp
-WB
-HU
-IX
-pv
-wz
-DY
-tM
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-nr
-vd
-xP
-PB
-dB
-yf
-NV
-vd
-ra
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(93,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-tM
-nv
-bW
-vl
-na
-nv
-kN
-YW
-Yu
-Yb
-Dn
-tM
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-nr
-uz
-XO
-WR
-BS
-lJ
-Qf
-Sw
-JC
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(94,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-mh
-mh
-mh
-mh
-sr
-mh
-uG
-uG
-uG
-uG
-uG
-dD
-uG
-uG
-uG
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-KA
-Zw
-ve
-Gm
-To
-To
-NX
-Zw
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(95,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-eS
-JL
-BJ
-Hr
-nR
-mh
-Ls
-WE
-Vk
-gi
-Qm
-jH
-Up
-bT
-uG
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-KA
-iJ
-AD
-kH
-pW
-su
-jM
-es
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(96,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-MY
-MU
-MY
-PM
-hJ
-mh
-RQ
-If
-tD
-KI
-uI
-HH
-If
-LY
-uG
-nr
-nr
-XS
-VD
-VD
-VD
-VD
-XS
-nr
-KA
-mC
-Yr
-MC
-aq
-cX
-Wm
-xi
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(97,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-mc
-Xb
-kv
-qn
-jS
-mh
-uA
-If
-tD
-oq
-Lg
-HH
-If
-HC
-uG
-nr
-nr
-XS
-VD
-Hq
-pM
-VD
-XS
-nr
-KA
-EB
-Oq
-op
-bf
-HX
-wj
-EG
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(98,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-MY
-MU
-MY
-PM
-EC
-mh
-gZ
-If
-tD
-If
-KE
-mY
-If
-fQ
-uG
-nr
-nr
-nr
-Hq
-hA
-IM
-pM
-nr
-nr
-KA
-aa
-fw
-kM
-zx
-IR
-vA
-cL
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(99,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-kv
-Ex
-kv
-qn
-Rc
-do
-kT
-kT
-sb
-NL
-at
-LA
-Vr
-xj
-uG
-nr
-nr
-nr
-XS
-UL
-UL
-XS
-nr
-nr
-KA
-Sf
-DF
-fh
-oF
-iU
-tQ
-Jz
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(100,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-MY
-bE
-MY
-qy
-Sh
-mh
-gg
-lq
-DN
-bp
-hm
-qg
-bQ
-nM
-WV
-WV
-WV
-WV
-eC
-Bj
-am
-eC
-WV
-WV
-KA
-KA
-Yw
-js
-KA
-KA
-KA
-KA
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(101,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-mh
-mh
-mh
-mh
-mh
-mh
-mh
-Uq
-Uq
-Uq
-Uq
-DW
-Uq
-Uq
-Uq
-WV
-Iv
-jL
-dI
-Qn
-FP
-Jb
-Jn
-Jn
-yV
-rK
-WV
-At
-KA
-KA
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(102,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Uq
-Pb
-Km
-Km
-qj
-ec
-Xe
-Uq
-hB
-hB
-UN
-UN
-UN
-Zx
-UN
-UN
-UN
-XX
-gW
-WV
-jB
-Mx
-Ut
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(103,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Cw
-Cw
-nr
-Uq
-mq
-Fh
-Fh
-hf
-Fh
-mQ
-Uq
-pF
-qq
-Qp
-Fi
-Fi
-EZ
-UN
-UN
-jb
-HI
-fd
-WV
-VG
-WS
-Ut
-nr
-nr
-ZL
-ZL
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(104,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Uq
-Uq
-Uq
-Uq
-Uq
-GU
-Fh
-Fh
-hf
-Fh
-Mc
-Uq
-kA
-kA
-UN
-UN
-UN
-cI
-Ao
-UN
-or
-mL
-mg
-WV
-VG
-WS
-PJ
-PJ
-PJ
-Yk
-Lb
-Aw
-Gs
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(105,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-sc
-Uq
-TE
-cE
-gN
-Uq
-bk
-mP
-mP
-ZX
-Fh
-jj
-Uq
-ti
-nm
-nm
-rs
-cJ
-sA
-ut
-bV
-UN
-UN
-Zx
-YT
-VG
-hU
-PJ
-Xl
-Pg
-Aj
-rr
-Sk
-Ai
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(106,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-AY
-xh
-AV
-zK
-HZ
-jU
-qw
-qw
-qw
-VZ
-Fh
-LF
-Uq
-wn
-LD
-cJ
-tR
-Ly
-tt
-Ig
-cJ
-pB
-Cu
-rw
-WV
-VG
-WS
-PJ
-DI
-hi
-pI
-ph
-Sk
-Ai
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(107,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-sc
-Uq
-iO
-vS
-II
-Uq
-OI
-Fh
-Fh
-hf
-Fh
-UI
-Uq
-gU
-Cu
-zN
-if
-mO
-Nw
-yk
-Po
-qV
-nm
-KV
-WV
-fo
-WS
-PJ
-ZO
-Sn
-Jq
-DX
-Xl
-Cj
-PJ
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(108,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-aE
-aE
-oz
-aE
-Uq
-YL
-Fh
-Fh
-hf
-Fh
-Gg
-Uq
-JW
-UN
-cI
-eq
-QM
-EZ
-Zx
-HY
-bY
-UN
-cm
-WV
-VG
-WS
-PJ
-qU
-PK
-GQ
-Bg
-PI
-Xi
-Xl
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(109,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-aE
-YI
-yq
-pV
-Uq
-tZ
-Fh
-Fh
-hf
-Fh
-Vf
-Uq
-HB
-UN
-eF
-hb
-TJ
-Fz
-ua
-Wg
-Cd
-Fi
-Qd
-WV
-ZN
-WS
-PJ
-XY
-Sl
-SF
-DX
-yL
-Av
-wQ
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(110,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-aE
-kE
-GH
-le
-Uq
-xv
-IA
-FX
-je
-Km
-Ke
-Uq
-Gl
-LD
-uj
-bV
-wn
-Ft
-Qc
-IB
-Gd
-lS
-Hz
-WV
-VG
-WS
-PJ
-cZ
-pg
-gC
-vr
-yL
-tO
-WZ
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(111,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-aE
-zO
-pj
-Ws
-Ws
-Ws
-Ws
-Ws
-BH
-hg
-hg
-hg
-hg
-Iv
-ci
-Bc
-tu
-au
-lW
-vy
-Xk
-kn
-Iv
-WV
-VG
-WS
-PJ
-aI
-Xl
-ws
-gC
-yL
-tH
-yc
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(112,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-aE
-aE
-aE
-hg
-RW
-Gq
-NG
-Ck
-Pz
-OL
-lk
-gS
-hg
-WV
-WV
-WV
-WV
-WV
-WV
-WV
-wg
-WV
-WV
-WV
-ed
-lw
-jJ
-Ac
-gF
-Br
-DP
-oE
-Eh
-Xl
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(113,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-hg
-qN
-VS
-wT
-Tu
-Pz
-VS
-VS
-Ew
-hg
-FO
-bL
-An
-cS
-pe
-vg
-Np
-vO
-Tp
-UB
-In
-gX
-hU
-PJ
-Eo
-dO
-IQ
-RM
-sd
-PJ
-PJ
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(114,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-hg
-ry
-nU
-nU
-wX
-NW
-pG
-Iw
-te
-Gc
-ms
-hp
-la
-hp
-hp
-FL
-hp
-Ia
-Rq
-zP
-pR
-iy
-PG
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(115,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-hg
-zT
-PO
-VS
-VS
-VS
-NC
-VS
-VS
-hg
-Bw
-bS
-bS
-bS
-bS
-bS
-bK
-Ei
-aB
-UB
-Ut
-Ut
-Ut
-Ut
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(116,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-hg
-Zi
-PO
-VS
-MN
-VS
-Id
-xn
-JE
-hg
-zV
-Qw
-cG
-IO
-Io
-yX
-UB
-UB
-UB
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(117,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-qe
-GP
-yD
-qR
-wp
-RH
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(118,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-UB
-qe
-GP
-yD
-qR
-wp
-RH
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(119,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-UB
-qe
-GP
-yD
-qR
-UB
-UB
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(120,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-UB
-qe
-GP
-yD
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(121,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-UB
-qe
-GP
-yD
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(122,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-UB
-UB
-UB
-UB
-UB
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(123,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(124,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(125,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(126,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(127,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(128,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(129,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(130,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(131,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(132,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(133,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(134,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(135,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(136,1,1) = {"
-lO
-yn
-yn
-yn
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-yn
-yn
-yn
-lO
-"}
-(137,1,1) = {"
-lO
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-bc
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-lO
-"}
-(138,1,1) = {"
-lO
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-hV
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-lO
-"}
-(139,1,1) = {"
-lO
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-dX
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-yn
-lO
-"}
-(140,1,1) = {"
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-vw
-vw
-vw
-vw
-ue
-lO
-dX
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-"}
+byeeeee
\ No newline at end of file
diff --git a/maps/groundbase/westwilds/westwilds1.dmm b/maps/groundbase/westwilds/westwilds1.dmm
index 8798fc0e77..79a863e271 100644
--- a/maps/groundbase/westwilds/westwilds1.dmm
+++ b/maps/groundbase/westwilds/westwilds1.dmm
@@ -1,24797 +1 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/effect/landmark/wildlife/forest,
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
-/area/submap/groundbase/wilderness/west/unexplored)
-"ab" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_testing)
-"ai" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"aj" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"an" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"aw" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/toxins_lab)
-"aS" = (
-/turf/simulated/wall,
-/area/groundbase/engineering/solarshed)
-"aW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"aY" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"aZ" = (
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"bg" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"bj" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"br" = (
-/obj/effect/floor_decal/corner/purple/full{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/standard,
-/obj/item/weapon/tool/wrench,
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/obj/item/device/analyzer,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"bt" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"bC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"bH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"bQ" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"bU" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"bW" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 4;
- frequency = 1445;
- id = "burn_in";
- volume_rate = 700
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"cm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ct" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Anomaly Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_storage)
-"cw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cx" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"cy" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"cG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"cH" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"cK" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"cL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"cP" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"cV" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"cW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"da" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"dc" = (
-/obj/structure/table/standard,
-/obj/item/stack/nanopaste,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"de" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"dg" = (
-/obj/machinery/radiocarbon_spectrometer,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"dh" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"dk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"do" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"dr" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"dt" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 9
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"dw" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"dx" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-<<<<<<< HEAD
-/obj/structure/cable,
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"dz" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"dB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 9
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"dS" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"eg" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"eq" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"es" = (
-/obj/machinery/atmospherics/valve,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"et" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"ev" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ew" = (
-/obj/structure/railing,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"ex" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"eB" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"eC" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"eE" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"eL" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"eN" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"eW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"eZ" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"fa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"fd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"fk" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"fn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"fo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"fv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"fB" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"fD" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"fE" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/phoron,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"fR" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ga" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"gj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"gl" = (
-/obj/effect/map_effect/portal/master/side_b/gb_wilds/east_west{
- dir = 4
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-"gm" = (
-/turf/simulated/mineral/cave/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
-"gm" = (
-/turf/simulated/mineral/cave,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"gq" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"gy" = (
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "anomaly_testing_v";
- name = "Anomaly Testing Vent"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/outpost/anomaly_testing)
-"gF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"gI" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"gM" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_lab)
-"gO" = (
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"gP" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"hd" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"hm" = (
-/obj/structure/anomaly_container,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"hn" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"hp" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Science Outpost Atmospherics";
- req_one_access = list(10,47)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/atmos)
-"hx" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/outpost)
-"hI" = (
-/obj/machinery/computer/general_air_control/supermatter_core{
- frequency = 1445;
- input_tag = "burn_in";
- name = "Burn Chamber Air Control";
- output_tag = "burn_out";
- pressure_setting = 0;
- sensors = list("burn_sensor" = "Burn Chamber Sensor")
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"hK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Science Outpost Substation";
- req_one_access = list(10,47)
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/substation)
-"hP" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"ia" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west/unexplored)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west/unexplored)
-"ie" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl)
-"if" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl_cockpit)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ij" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"ik" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"is" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"it" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"iw" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"iB" = (
-/obj/machinery/atmospherics/pipe/vent{
- dir = 4
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/science/outpost/atmos)
-"iH" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- external_pressure_bound = 0;
- frequency = 1445;
- icon_state = "map_vent_in";
- id_tag = "burn_out";
- initialize_directions = 4;
- pump_direction = 0
- },
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"iK" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"iL" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"iM" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"iS" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"iZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"jd" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"jf" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ji" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-<<<<<<< HEAD
-=======
-"jk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"jm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"jn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"jI" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"jP" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"jT" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"ka" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"kc" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west/unexplored)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west/unexplored)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"kh" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"ki" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kq" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"ks" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kt" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"kw" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/submap/groundbase/wilderness/west)
-"kx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ky" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kF" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Anomaly Storage"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_storage)
-"kN" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kO" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_testing)
-"kZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"lj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"lo" = (
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"lC" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"lK" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"lM" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"lS" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"mb" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"mi" = (
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"mx" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/anodevice{
- pixel_x = -2
- },
-/obj/item/weapon/anodevice{
- pixel_x = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"mI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mK" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"mX" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"nc" = (
-/obj/machinery/conveyor_switch/oneway{
- icon_state = "switch-fwd";
- id = "outpost_canisters";
- position = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"nl" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"np" = (
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"nq" = (
-/obj/structure/closet/excavation,
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"nr" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"nt" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"nA" = (
-/obj/machinery/power/apc,
-/obj/structure/cable/green,
-/obj/structure/table/standard,
-/obj/fiftyspawner/steel,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"nC" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/weapon/tool/screwdriver,
-/obj/item/device/assembly_holder/timer_igniter,
-/obj/machinery/camera/network/research_outpost{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"nP" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"nY" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"os" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"ov" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ow" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"oy" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"oD" = (
-/obj/structure/dispenser/oxygen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"oI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"oM" = (
-/obj/machinery/atmospherics/unary/heat_exchanger,
-/obj/structure/window/basic,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"oO" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"oP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/weapon/weldingtool,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"oY" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"pb" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"pj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"pk" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"pl" = (
-/obj/machinery/atmospherics/valve{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"pr" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"pt" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 10
- },
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"pu" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"px" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"py" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"pU" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qo" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 8
- },
-/obj/machinery/meter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"qt" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qE" = (
-/obj/machinery/suspension_gen,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"qN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"qQ" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-<<<<<<< HEAD
-=======
-"qV" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
-"qY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"rc" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"rh" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"rj" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"rs" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ru" = (
-/obj/machinery/chem_master,
-/obj/machinery/camera/network/research_outpost{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"rx" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"rQ" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"rS" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"rW" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"sd" = (
-/obj/machinery/computer/area_atmos/tag{
- dir = 4;
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"sj" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"sl" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"sm" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"sq" = (
-/obj/structure/cable/heavyduty{
- icon_state = "2-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"st" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"su" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"sA" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"sE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Input";
- name_tag = "Solar Farm Input"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"sG" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"sK" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"sS" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/screwdriver,
-/obj/item/weapon/anobattery{
- pixel_x = 5;
- pixel_y = 2
- },
-/obj/item/weapon/anobattery,
-/obj/item/weapon/anobattery{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/weapon/anobattery{
- pixel_x = -5;
- pixel_y = -3
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"sY" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"te" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"tg" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"th" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/supply,
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"tp" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"tz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"tC" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_lab)
-"tF" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"tI" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"tL" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tT" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"uh" = (
-/obj/machinery/atmospherics/trinary/mixer/m_mixer{
- dir = 8;
- node1_concentration = 0.79;
- node2_concentration = 0.21
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"uv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ux" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"uB" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Science Outpost Subgrid";
- name_tag = "Science Outpost Subgrid"
- },
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"uC" = (
-/obj/machinery/artifact_harvester,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"uI" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"uP" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Anomalous Materials"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost)
-"uU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"uW" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_hallway)
-"vb" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 5
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"vd" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"vi" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"vl" = (
-/obj/machinery/vending/phoronresearch{
- dir = 8;
- name = "Toximate 2556";
- products = list(/obj/item/device/transfer_valve = 3, /obj/item/device/assembly/timer = 6, /obj/item/device/assembly/signaler = 6, /obj/item/device/assembly/prox_sensor = 6, /obj/item/device/assembly/igniter = 12)
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"vm" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"vs" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"vt" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"vB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"vK" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"vP" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"vS" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 9
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
-"we" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"wg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/camera/network/research_outpost{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wj" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"wm" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ws" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"wz" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 5
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"wB" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"wL" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"wM" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"wP" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"wW" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"wX" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"xe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"xA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"xB" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"xJ" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"xR" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xX" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"yb" = (
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- report_danger_level = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"yk" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"yq" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"yu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/science/outpost)
-"yv" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"yy" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"yI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"yP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"yQ" = (
-/obj/structure/catwalk,
-/obj/structure/cable/heavyduty{
- icon_state = "0-4"
- },
-/obj/structure/cable/heavyduty{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"yZ" = (
-/obj/structure/table/standard,
-/obj/item/device/multitool,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"zl" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 30
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"zn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"zq" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"zs" = (
-/obj/structure/table/standard,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/vending/wallmed1{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"zz" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"zB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"zH" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"zI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"zM" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/mineral/ignore_cavegen,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/mineral/ignore_cavegen/virgo3c,
-=======
-/turf/simulated/mineral/ignore_cavegen,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/submap/groundbase/wilderness/west)
->>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs
-"zP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"zT" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"zX" = (
-/obj/structure/table/standard,
-/obj/machinery/light,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"An" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Ap" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"As" = (
-/obj/machinery/light,
-/obj/machinery/artifact_scanpad,
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ax" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer_1";
- use_power = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"AD" = (
-/obj/machinery/artifact_scanpad,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"AH" = (
-/obj/item/stack/cable_coil/random,
-/obj/structure/table/steel,
-/obj/item/clothing/gloves/yellow,
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"AJ" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"AK" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"AO" = (
-/obj/machinery/atmospherics/trinary/mixer/m_mixer{
- dir = 4;
- name = "High Power Gas mixer";
- power_rating = 15000
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"AU" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"AZ" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Bb" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Bc" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Bh" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tank/phoron,
-/obj/machinery/requests_console/preset/research{
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Br" = (
-/obj/machinery/button/remote/blast_door{
- id = "anomaly_testing_v";
- name = "Panic Chamber Vent";
- pixel_x = 6;
- pixel_y = 26
- },
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Bx" = (
-/obj/machinery/atmospherics/unary/heat_exchanger,
-/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"By" = (
-/obj/structure/anomaly_container,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"BA" = (
-<<<<<<< HEAD
-/turf/unsimulated/wall/planetary/virgo3c{
- icon_state = "riveted"
- },
-/area/groundbase/wilderness/west)
-=======
-/turf/unsimulated/wall/planetary/normal,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"BC" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Mixing"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"BG" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"BI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"BJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"BM" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Science Outpost"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost)
-"BQ" = (
-/obj/structure/table/steel,
-/obj/item/device/measuring_tape,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/excavation,
-/obj/item/stack/flag/yellow,
-/obj/item/weapon/pickaxe,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"BR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"BS" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/science/outpost/toxins_lab)
-"Ce" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Cq" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_testing)
-"Ct" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Cu" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Cw" = (
-/obj/machinery/bomb_tester,
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/science/outpost/toxins_lab)
-"CD" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"CT" = (
-/obj/machinery/atmospherics/unary/heater{
- dir = 1;
- icon_state = "heater"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"CW" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"CX" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/engineering/solarfield)
-"Db" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"Dc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Dj" = (
-/obj/structure/table/steel,
-/obj/item/device/measuring_tape,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/excavation,
-/obj/item/stack/flag/yellow,
-/obj/item/weapon/pickaxe,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Dk" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Dn" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Dr" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-<<<<<<< HEAD
-=======
-"Ds" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing/grey,
-/obj/machinery/atmospherics/portables_connector/fuel{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/phoron{
- start_pressure = 8000.25
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
-"Dt" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Du" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Dw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"DE" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"DS" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ea" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ee" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Eh" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"Ek" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ep" = (
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ev" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ew" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Science Outpost";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"EA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"EB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"EC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"EK" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/obj/machinery/meter,
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"EP" = (
-/obj/machinery/portable_atmospherics/canister/empty/oxygen,
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ET" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"EW" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning/cee,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"EX" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"Fa" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Fe" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fi" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"Fk" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Solar Access"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Fs" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
- },
-/obj/machinery/sparker{
- id = "burn_chamber";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Fx" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"FE" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"FH" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"FS" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"FT" = (
-/obj/machinery/power/solar_control,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Gf" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/obj/machinery/meter,
-/obj/machinery/button/ignition{
- id = "burn_chamber";
- pixel_y = 28
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Gn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Gy" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"GC" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"GE" = (
-/obj/structure/sign/warning/hot_exhaust,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"GF" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 1
- },
-/obj/machinery/sparker{
- id = "burn_chamber";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-<<<<<<< HEAD
-=======
-"GM" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"GT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"GX" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"GY" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ha" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Toxins Workroom"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_lab)
-"Hj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-<<<<<<< HEAD
-=======
-"Hq" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ht" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Hu" = (
-/obj/structure/cable,
-<<<<<<< HEAD
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/obj/machinery/power/solar{
- SOLAR_MAX_DIST = 140
- },
-/turf/simulated/floor{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Hy" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-<<<<<<< HEAD
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/obj/machinery/power/solar{
- SOLAR_MAX_DIST = 140
- },
-/turf/simulated/floor{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"HK" = (
-/obj/machinery/atmospherics/binary/pump,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HN" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen/fountain,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"HP" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "Anomaly Testing"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_lab)
-"HQ" = (
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"HR" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 1;
- target_pressure = 200
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"HT" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/powered/pump/huge/stationary/purge,
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ic" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"If" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-<<<<<<< HEAD
-=======
-"Ih" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ii" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 4;
- filtered_out = list("nitrous_oxide")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ij" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Ip" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Iq" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Iu" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Science Outpost Substation Bypass"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"IB" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"IF" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/pointdefense_control{
- id_tag = "axolotl_pd";
- name = "axolotl defense control";
- req_one_access = null
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
-"IG" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/structure/catwalk,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl)
-"II" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
-"IK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"IO" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 3;
- filtered_out = list("carbon_dioxide")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"IS" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"IX" = (
-/obj/machinery/button/remote/blast_door{
- id = "burn_chamber_v";
- name = "Burn Chamber Vent";
- pixel_x = -26;
- pixel_y = 6
- },
-/obj/machinery/button/remote/blast_door{
- id = "burn_chamber_p";
- name = "Burn Chamber Purge";
- pixel_x = -26;
- pixel_y = -8
- },
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"IZ" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Jj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Js" = (
-/obj/machinery/atmospherics/omni/atmos_filter{
- tag_east = 1;
- tag_north = 4;
- tag_south = 2;
- tag_west = 3
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Jx" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Jz" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"JG" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 4
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"JI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"JM" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible/blue,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"JR" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"JW" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"JY" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"JZ" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ka" = (
-/obj/machinery/radiocarbon_spectrometer,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"Kb" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Kf" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Kj" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ko" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Kq" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"Kv" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Kx" = (
-/obj/effect/floor_decal/corner/purple/full{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"KA" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"KC" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/corner/purple/full{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"KD" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"KF" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"KJ" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"KL" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"KM" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"KU" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 8
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Lf" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Lh" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Li" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Ll" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/substation)
-"Lm" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Lp" = (
-/obj/structure/anomaly_container,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Lx" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"LA" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"LB" = (
-/obj/machinery/alarm,
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"LE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-<<<<<<< HEAD
-=======
-"LJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"LK" = (
-/obj/effect/map_effect/portal/master/side_b/gb_wilds/west{
- dir = 8
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"LM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"LQ" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"Mc" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"MF" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"MP" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"MU" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"MX" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/anomaly,
-/obj/item/clothing/head/helmet/space/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/storage/belt/archaeology,
-/obj/item/weapon/melee/umbrella/random,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"MY" = (
-/obj/structure/dispenser,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"MZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"Na" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Nc" = (
-/obj/structure/hull_corner{
- dir = 4
- },
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Nd" = (
-/obj/machinery/atmospherics/trinary/atmos_filter{
- dir = 4;
- name = "High Power Gas filter";
- power_rating = 15000;
- use_power = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"No" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-<<<<<<< HEAD
-=======
-"Nx" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
-"NG" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/portable_atmospherics/canister/empty,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"NJ" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"NK" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"NM" = (
-/obj/machinery/firealarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"NN" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 9
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"NS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"NT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Ob" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "General Gasworks"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Od" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Oh" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/empty/nitrogen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Or" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ot" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Ow" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_storage)
-"OK" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_lab)
-<<<<<<< HEAD
-=======
-"OT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Pi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Pl" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/black{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Pp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Pq" = (
-/obj/structure/reagent_dispensers/coolanttank,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"Pv" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 0;
- filtered_out = list("phoron")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Pw" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"PF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"PG" = (
-<<<<<<< HEAD
-/turf/unsimulated/wall/planetary/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"PK" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"PO" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"PS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"PT" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_storage)
-"Qq" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qu" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Qy" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/obj/structure/cable/heavyduty,
-/obj/structure/cable/heavyduty{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Output";
- name_tag = "Solar Farm Output"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"QG" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"QM" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"QY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"QZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Rb" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "General Gasworks"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Rh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ri" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Rk" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Rp" = (
-/obj/machinery/atmospherics/unary/heater{
- icon_state = "heater_1";
- use_power = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Rq" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Rt" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"Rw" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"RE" = (
-/obj/machinery/air_sensor{
- frequency = 1445;
- id_tag = "burn_sensor";
- output = 63
- },
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"RF" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple/full{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"RL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"RO" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/turf/simulated/floor/greengrid,
-/area/groundbase/science/outpost/toxins_lab)
-"RP" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/anomaly,
-/obj/item/clothing/head/helmet/space/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/storage/belt/archaeology,
-/obj/item/weapon/melee/umbrella/random,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"RX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"RY" = (
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Si" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/black,
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Sp" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/anomaly_testing)
-"Ss" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Sw" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Sz" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"SJ" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"SL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"SM" = (
-/obj/machinery/atmospherics/pipe/vent/high_volume,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"SO" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/tool/wirecutters,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"SW" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Td" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Tf" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 1;
- state = 2
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Tg" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"Ti" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Tj" = (
-/obj/structure/cable/ender{
- icon_state = "4-8";
- id = "westwilds"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Tp" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Ty" = (
-/turf/simulated/wall,
-/area/groundbase/wilderness/west)
-"TC" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"TI" = (
-/obj/machinery/atmospherics/valve,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"TL" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_storage)
-"TO" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"TS" = (
-/obj/structure/cable/heavyduty{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Power - Solar Array";
- cur_coils = 3;
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"TV" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"TY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"TZ" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ua" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Us" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Uw" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"UH" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 8;
- target_pressure = 200
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"UK" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"UQ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"US" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"UU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/pipedispenser,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"UW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"Vd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"Vm" = (
-/obj/structure/table/standard,
-/obj/machinery/computer/atmoscontrol/laptop{
- monitored_alarm_ids = list("anomaly_testing");
- req_one_access = list(47,24,11)
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Vn" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/item/weapon/tool/wrench,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"VA" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"VB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"VF" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"VO" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"VP" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Wb" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"We" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Wm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Wo" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Ww" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Science Outpost";
- req_one_access = null
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/outpost)
-"Wy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"WC" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"WL" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"WM" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"WQ" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"WW" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"WX" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Xa" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Xh" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Xk" = (
-<<<<<<< HEAD
-/turf/simulated/mineral/cave/virgo3c,
-/area/groundbase/wilderness/west/cave)
-=======
-/turf/simulated/mineral/cave,
-/area/submap/groundbase/wilderness/west/cave)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Xt" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Xu" = (
-/obj/machinery/suspension_gen,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Xv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Xy" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"XD" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/anodevice{
- pixel_x = -2
- },
-/obj/item/weapon/anodevice{
- pixel_x = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"XE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"XN" = (
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"XR" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-<<<<<<< HEAD
-=======
-"XZ" = (
-/obj/structure/bed/chair/bay/chair,
-/obj/structure/handrail,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24;
- req_access = null;
- req_one_access = list(11,67)
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl_galley)
-"Yc" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Ye" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Yj" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Yk" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Yl" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ym" = (
-/obj/structure/reagent_dispensers/coolanttank,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Yo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Yv" = (
-/obj/structure/anomaly_container,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"Yw" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing/grey{
- dir = 1
- },
-/obj/machinery/atmospherics/portables_connector/fuel{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/phoron{
- start_pressure = 8000.25
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"YD" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"YS" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxing_gasworks)
-"YU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"YW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"YX" = (
-/obj/machinery/artifact_analyser,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Zk" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_lab)
-"Zl" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Zp" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"Zs" = (
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Zu" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/acid{
- pixel_y = -32
- },
-/obj/machinery/reagentgrinder,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Zy" = (
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ZD" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost)
-"ZG" = (
-/obj/structure/closet/excavation,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ZI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ZN" = (
-/obj/machinery/atmospherics/binary/pump/high_power/on,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ZS" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ZT" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-
-(1,1,1) = {"
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-gl
-JG
-JG
-JG
-JG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-"}
-(2,1,1) = {"
-PG
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-yy
-iL
-iL
-iL
-iL
-iL
-yy
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PG
-"}
-(3,1,1) = {"
-PG
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-yy
-iL
-iL
-iL
-iL
-iL
-yy
-yy
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PG
-"}
-(4,1,1) = {"
-PG
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-yy
-yy
-iL
-iL
-iL
-iL
-iL
-yy
-yy
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PG
-"}
-(5,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(6,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(7,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(8,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(9,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(10,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-aa
-kc
-ia
-ia
-ia
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(11,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(12,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(13,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(14,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(15,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(16,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(17,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(18,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(19,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(20,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(21,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(22,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(23,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(24,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(25,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(26,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(27,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(28,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-ia
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(29,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(30,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(31,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(32,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(33,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(34,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(35,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(36,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-aa
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(37,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(38,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(39,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(40,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(41,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(42,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(43,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(44,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(45,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(46,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(47,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-Xk
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(48,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(49,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(50,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(51,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(52,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(53,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(54,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(55,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-st
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-vK
-st
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(56,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(57,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ew
-st
-Hy
-WX
-dx
-WX
-dx
-WX
-dx
-WX
-Hu
-st
-st
-st
-Hy
-WX
-dx
-WX
-dx
-WX
-dx
-WX
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-aa
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(58,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-st
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(59,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-kc
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-st
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(60,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-st
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(61,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-st
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(62,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ew
-st
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-st
-st
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(63,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-aa
-kc
-ia
-ia
-ia
-ia
-kc
-ia
-ia
-ia
-ia
-ia
-ew
-st
-st
-JW
-Ye
-Od
-Ye
-Od
-Ye
-Od
-bC
-bC
-zz
-bC
-bC
-fB
-Ye
-fB
-Ye
-fB
-Ye
-gq
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(64,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ew
-st
-np
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-CX
-kZ
-CX
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(65,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(66,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(67,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(68,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(69,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ew
-st
-Hy
-qQ
-dx
-qQ
-dx
-qQ
-dx
-qQ
-Hu
-st
-kZ
-st
-Hy
-qQ
-dx
-qQ
-dx
-qQ
-dx
-qQ
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(70,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-kZ
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(71,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-st
-st
-CX
-st
-CX
-CX
-CX
-CX
-CX
-CX
-CX
-CX
-kZ
-CX
-CX
-CX
-st
-st
-CX
-CX
-st
-st
-CX
-st
-st
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(72,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ew
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-kZ
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(73,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-WX
-dx
-WX
-dx
-WX
-dx
-WX
-Hu
-st
-kZ
-st
-Hy
-WX
-dx
-WX
-dx
-WX
-dx
-WX
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(74,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(75,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(76,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(77,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-st
-vK
-NK
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(78,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ew
-st
-st
-st
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-CX
-kZ
-CX
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(79,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-dw
-bC
-bC
-Od
-Ye
-Od
-Ye
-Od
-Ye
-Od
-bC
-bC
-JY
-bC
-bC
-fB
-Ye
-fB
-Ye
-fB
-Ye
-gq
-st
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(80,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-st
-st
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-CX
-kZ
-CX
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(81,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-st
-Lx
-Dr
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(82,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(83,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(84,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(85,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-qQ
-dx
-qQ
-dx
-qQ
-dx
-qQ
-Hu
-st
-kZ
-st
-Hy
-qQ
-dx
-qQ
-dx
-qQ
-dx
-qQ
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(86,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ew
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-kZ
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(87,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-st
-CX
-st
-CX
-CX
-CX
-st
-CX
-CX
-st
-CX
-CX
-kZ
-CX
-CX
-CX
-CX
-st
-st
-CX
-st
-st
-CX
-st
-st
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(88,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ew
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-kZ
-st
-st
-st
-st
-st
-st
-st
-st
-st
-np
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-aa
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(89,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-WX
-dx
-WX
-dx
-WX
-dx
-WX
-Hu
-st
-kZ
-st
-Hy
-WX
-dx
-WX
-dx
-WX
-dx
-WX
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(90,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(91,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(92,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(93,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-kZ
-st
-Hy
-QG
-dx
-QG
-dx
-QG
-dx
-QG
-Hu
-st
-hd
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(94,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-CX
-kZ
-CX
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-hd
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(95,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-st
-JW
-Ye
-Od
-Ye
-Od
-Ye
-Od
-bC
-bC
-JY
-bC
-bC
-fB
-Ye
-fB
-Ye
-fB
-Ye
-gq
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(96,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-CX
-kZ
-CX
-st
-kZ
-st
-kZ
-st
-kZ
-st
-kZ
-st
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(97,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(98,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(99,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(100,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-aa
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-kZ
-st
-Hy
-zH
-dx
-zH
-dx
-zH
-dx
-zH
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(101,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ew
-st
-Hy
-qQ
-dx
-qQ
-dx
-qQ
-dx
-qQ
-Hu
-st
-kZ
-st
-Hy
-qQ
-dx
-qQ
-dx
-qQ
-dx
-qQ
-Hu
-st
-hd
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(102,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ew
-np
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-kZ
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-st
-hd
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(103,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-st
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-st
-kZ
-st
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-Lx
-st
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-yy
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-yy
-yy
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(104,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-ia
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-iL
-Ip
-iL
-ia
-ia
-ia
-ia
-ia
-kc
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-yy
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-sY
-mX
-sY
-mX
-iL
-iL
-iL
-iL
-kh
-kh
-kh
-kh
-kh
-iL
-iL
-iL
-iL
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(105,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-yy
-iL
-ab
-ab
-gy
-gy
-gy
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-iL
-iL
-iL
-os
-os
-os
-os
-iL
-iL
-iL
-iL
-kh
-HT
-HT
-HT
-kh
-iL
-iL
-iL
-iL
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(106,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-iL
-iL
-ab
-eC
-jP
-jP
-jP
-eC
-Sp
-Br
-gI
-By
-hm
-ab
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-iL
-GE
-kh
-pt
-Pl
-Si
-kh
-GE
-iL
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(107,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-ia
-iL
-iL
-ab
-jP
-SW
-BR
-YD
-ex
-kO
-eB
-An
-uI
-FS
-ab
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-iL
-py
-Fs
-FE
-FE
-dh
-GF
-su
-iL
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(108,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-iL
-Ip
-iL
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-iL
-iL
-ab
-jP
-PO
-Ap
-Jz
-Wo
-Cq
-TI
-gj
-Tf
-bQ
-ab
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-iL
-py
-iH
-FE
-RE
-dh
-bW
-ij
-xR
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(109,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-yy
-iL
-iL
-iL
-iL
-iL
-ab
-jP
-Bb
-Cu
-Iq
-QY
-jn
-jT
-iw
-Ua
-CW
-ab
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-iL
-GE
-pu
-gP
-kh
-lC
-sG
-GE
-fk
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(110,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-iL
-iL
-iL
-iL
-iL
-ab
-jP
-yv
-yb
-nr
-jP
-Sp
-XD
-vm
-SJ
-cK
-ab
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-iL
-Ea
-dt
-SM
-HR
-qN
-Kj
-HQ
-NN
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(111,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-iL
-TL
-TL
-TL
-TL
-TL
-kF
-TL
-OK
-OK
-OK
-OK
-OK
-HP
-OK
-OK
-OK
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-xJ
-gF
-fo
-jm
-Ss
-Ss
-PF
-gF
-xJ
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(112,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-yy
-yy
-iL
-iL
-TL
-uU
-wL
-dk
-cy
-NS
-TL
-Ka
-qr
-dz
-Vm
-mx
-KA
-PS
-As
-OK
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-xJ
-Gf
-vd
-EW
-hI
-IX
-WC
-EK
-xJ
-iL
-iL
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(113,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-yy
-yy
-iL
-iL
-iL
-iL
-TL
-lS
-Lm
-lS
-wj
-it
-TL
-Pq
-XR
-Kv
-dS
-yZ
-Jx
-XR
-uC
-OK
-iL
-iL
-rQ
-os
-os
-os
-os
-rQ
-iL
-xJ
-ws
-et
-hn
-GY
-AU
-We
-pl
-xJ
-iL
-iL
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(114,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-aa
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-TL
-Ot
-IS
-YW
-KL
-fv
-TL
-dg
-XR
-Kv
-Yk
-sS
-Jx
-XR
-GC
-OK
-iL
-iL
-rQ
-os
-jf
-vS
-os
-rQ
-iL
-xJ
-LB
-YU
-eN
-Wb
-TV
-UQ
-ET
-xJ
-iL
-iL
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(115,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-iL
-aS
-oI
-oI
-aS
-oI
-oI
-aS
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-TL
-lS
-Lm
-lS
-wj
-cG
-TL
-dc
-XR
-Kv
-XR
-Rh
-iM
-XR
-ru
-OK
-iL
-iL
-iL
-jf
-mX
-sY
-vS
-iL
-iL
-xJ
-Vn
-QZ
-tp
-Kq
-Bx
-eg
-TZ
-xJ
-iL
-iL
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(116,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-iL
-iL
-aS
-Rq
-de
-hP
-TS
-wX
-aS
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-TL
-YW
-AK
-YW
-KL
-fn
-ct
-fa
-fa
-Xh
-lM
-oy
-Zl
-Zs
-zX
-OK
-iL
-iL
-iL
-rQ
-eL
-eL
-rQ
-iL
-iL
-xJ
-br
-xe
-CD
-wM
-oM
-zl
-Kx
-xJ
-iL
-iL
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(117,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-iL
-Ip
-iL
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-iL
-iL
-KM
-EC
-FT
-de
-de
-dr
-sq
-nY
-Qy
-iL
-iL
-iL
-iL
-iL
-iL
-TL
-lS
-bj
-lS
-UW
-bH
-TL
-AD
-YX
-zs
-DS
-cP
-rj
-rW
-Zu
-YS
-YS
-YS
-YS
-XE
-Sz
-dB
-XE
-YS
-YS
-xJ
-xJ
-RF
-KC
-xJ
-xJ
-xJ
-xJ
-xJ
-iL
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(118,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-iL
-Ip
-iL
-ia
-ia
-kc
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-ia
-ia
-iL
-iL
-sE
-aS
-AH
-mi
-Mc
-mi
-mi
-aS
-FH
-iL
-iL
-iL
-yy
-iL
-iL
-TL
-TL
-TL
-TL
-TL
-TL
-TL
-ZD
-ZD
-ZD
-ZD
-uP
-ZD
-ZD
-ZD
-YS
-tT
-Ri
-vt
-KF
-JM
-es
-Fe
-Fe
-qo
-vb
-YS
-BC
-xJ
-xJ
-Xk
-Xk
-Xk
-iL
-iL
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(119,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-iL
-Ip
-rQ
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-VO
-aS
-aS
-Fk
-aS
-Fk
-aS
-aS
-FH
-iL
-iL
-iL
-yy
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-ZD
-ZT
-Dc
-Dc
-eE
-cL
-mK
-ZD
-MF
-MF
-nl
-nl
-nl
-tL
-nl
-nl
-nl
-Ev
-fR
-YS
-MU
-ux
-uW
-Xk
-Xk
-iL
-iL
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(120,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-iL
-rx
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-SL
-WQ
-RY
-RY
-RY
-Tg
-RY
-RY
-iL
-Dk
-iL
-iL
-yy
-yy
-yy
-yy
-iL
-iL
-iL
-iL
-Yv
-Yv
-iL
-ZD
-sl
-bg
-bg
-sA
-bg
-Du
-ZD
-is
-kN
-HK
-zP
-zP
-aW
-nl
-nl
-ks
-Lf
-Qq
-YS
-Rw
-yq
-uW
-Xk
-Xk
-iB
-iB
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(121,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-iL
-iL
-iL
-iL
-iL
-iL
-yy
-yy
-yy
-iL
-iL
-iL
-iL
-yy
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-iL
-rQ
-rQ
-rQ
-rQ
-iL
-iL
-iL
-an
-iL
-iL
-yy
-yy
-yy
-yy
-yy
-iL
-iL
-ZD
-ZD
-ZD
-ZD
-ZD
-cH
-bg
-bg
-sA
-bg
-Gy
-ZD
-Ce
-Ce
-nl
-nl
-nl
-Wm
-cw
-nl
-yk
-pj
-Ct
-YS
-Rw
-yq
-BG
-BG
-BG
-Xv
-BJ
-LE
-Ti
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(122,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-kc
-kc
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-ia
-kc
-kc
-ia
-ia
-ia
-iL
-iL
-rQ
-rQ
-iL
-iL
-iL
-iL
-an
-iL
-iL
-yy
-yy
-yy
-yy
-yy
-yy
-hx
-ZD
-cV
-do
-Ij
-ZD
-rh
-oO
-oO
-sK
-bg
-AJ
-ZD
-mI
-JI
-JI
-rs
-qt
-MZ
-Eh
-IB
-nl
-nl
-tL
-Ob
-Rw
-Db
-BG
-Ep
-sm
-ZN
-Hj
-ka
-tz
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(123,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-ia
-ia
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-kc
-iL
-iL
-rQ
-rQ
-iL
-iL
-iL
-iL
-an
-iL
-iL
-iL
-nP
-yP
-yP
-yP
-yP
-yu
-Ww
-bU
-WL
-fd
-BM
-uv
-uv
-uv
-xX
-bg
-RP
-ZD
-aZ
-wm
-qt
-qz
-AO
-xA
-Nd
-qt
-iS
-lj
-Gn
-YS
-Rw
-yq
-BG
-EP
-EB
-mb
-xB
-ka
-tz
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(124,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-kc
-ia
-ia
-ia
-kc
-ia
-ia
-kc
-kc
-ia
-kc
-kc
-kc
-kc
-kc
-kc
-yy
-iL
-iL
-rQ
-iL
-iL
-iL
-iL
-an
-iL
-iL
-yy
-kw
-rQ
-yy
-iL
-iL
-hx
-ZD
-Li
-yI
-rS
-ZD
-Lp
-bg
-bg
-sA
-bg
-MX
-ZD
-TC
-lj
-BI
-Kb
-pU
-Pi
-JZ
-Ko
-wQ
-JI
-wg
-YS
-vs
-yq
-BG
-lo
-uh
-VA
-bt
-Ep
-Us
-BG
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(125,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-ia
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-kc
-kc
-kc
-yy
-iL
-iL
-rQ
-rQ
-iL
-iL
-iL
-an
-iL
-iL
-iL
-kw
-yy
-yy
-iL
-iL
-iL
-Ll
-Ll
-hK
-Ll
-ZD
-nq
-bg
-bg
-sA
-bg
-Dj
-ZD
-QM
-nl
-Wm
-ow
-LA
-aW
-tL
-ZI
-RX
-nl
-UU
-YS
-Rw
-yq
-BG
-Oh
-JR
-Js
-pb
-wz
-UH
-Ep
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(126,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-kc
-yy
-yy
-iL
-rQ
-rQ
-iL
-iL
-iL
-an
-iL
-iL
-yy
-kw
-yy
-iL
-iL
-iL
-iL
-Ll
-Iu
-If
-kt
-ZD
-ZG
-bg
-bg
-sA
-bg
-BQ
-ZD
-Xa
-nl
-rc
-zB
-TY
-Pw
-Pp
-EA
-cm
-zP
-Dw
-YS
-Fi
-yq
-BG
-Ax
-Td
-jI
-bt
-tF
-Ii
-ev
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(127,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-kc
-yy
-yy
-iL
-iL
-rQ
-iL
-iL
-iL
-an
-iL
-iL
-yy
-kw
-yy
-iL
-iL
-iL
-gm
-Ll
-Ew
-tI
-US
-ZD
-qE
-Xu
-Rk
-DE
-Dc
-oD
-ZD
-wP
-wm
-Kf
-IB
-aZ
-Sw
-LM
-eW
-ki
-ky
-nA
-YS
-Rw
-yq
-BG
-Rp
-zn
-zI
-NJ
-tF
-IO
-Bc
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(128,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-yy
-yy
-iL
-iL
-rQ
-iL
-iL
-iL
-KJ
-iL
-iL
-yy
-kw
-yy
-iL
-iL
-gm
-gm
-Ll
-uB
-LQ
-tC
-tC
-tC
-tC
-tC
-Ha
-Zk
-Zk
-Zk
-Zk
-tT
-ik
-gO
-ZS
-iZ
-CT
-Or
-Ei
-VP
-tT
-YS
-Rw
-yq
-BG
-Zy
-Ep
-ov
-zI
-tF
-Pv
-fE
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(129,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-kc
-yy
-yy
-iL
-iL
-rQ
-rQ
-iL
-iL
-aj
-iL
-iL
-yy
-kw
-iL
-iL
-iL
-gm
-gm
-Ll
-Ll
-Ll
-Zk
-SO
-HN
-Bh
-nC
-Ee
-pk
-Dn
-sd
-Zk
-YS
-YS
-YS
-YS
-YS
-YS
-YS
-Rb
-YS
-YS
-YS
-MP
-Fx
-hp
-No
-Ht
-eq
-th
-WW
-VB
-Ep
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(130,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-yy
-yy
-yy
-iL
-rQ
-rQ
-iL
-rQ
-aj
-iL
-iL
-rQ
-kw
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-Zk
-RL
-Qu
-fD
-oP
-Ee
-Qu
-Qu
-NM
-Zk
-VF
-pr
-Ic
-Lh
-px
-Uw
-wB
-oY
-Ym
-PT
-eZ
-cx
-Db
-BG
-da
-vi
-Wy
-ai
-PK
-BG
-BG
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(131,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-kc
-kc
-yy
-yy
-yy
-iL
-iL
-rQ
-rQ
-rQ
-yQ
-yP
-yP
-yP
-zq
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-Zk
-IZ
-Yo
-Yo
-NT
-aw
-Tp
-WM
-ji
-gM
-Fa
-Xt
-nt
-Xt
-Xt
-UK
-Xt
-vP
-Jj
-Ow
-Xy
-EX
-Vd
-BG
-BG
-BG
-BG
-BG
-BG
-BG
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(132,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-yy
-yy
-yy
-iL
-iL
-rQ
-rQ
-rQ
-aj
-iL
-iL
-iL
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-gm
-Zk
-Cw
-BS
-Qu
-Qu
-Qu
-KD
-Qu
-Qu
-Zk
-XN
-TO
-TO
-TO
-TO
-TO
-nc
-tg
-vB
-PT
-uW
-uW
-uW
-uW
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(133,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-yy
-yy
-yy
-iL
-rQ
-rQ
-iL
-iL
-aj
-iL
-iL
-iL
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-gm
-Zk
-RO
-BS
-Qu
-AZ
-Qu
-te
-vl
-MY
-Zk
-jd
-Yl
-cW
-aY
-iK
-lK
-PT
-PT
-PT
-PT
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(134,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-kc
-yy
-yy
-yy
-iL
-rQ
-iL
-iL
-iL
-sj
-iL
-iL
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-Zk
-Zk
-Zk
-Zk
-Zk
-Zk
-Zk
-Zk
-Zk
-Zk
-wU
-Rt
-ga
-Zp
-GX
-kq
-PT
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(135,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-kc
-yy
-yy
-yy
-iL
-rQ
-iL
-iL
-iL
-Yj
-iL
-iL
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-Xk
-PT
-wU
-Rt
-ga
-Zp
-GX
-kq
-PT
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(136,1,1) = {"
-PG
-zM
-zM
-zM
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-ia
-ia
-yy
-yy
-iL
-iL
-rQ
-iL
-iL
-iL
-Yj
-iL
-iL
-iL
-iL
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-Xk
-PT
-wU
-Rt
-ga
-Zp
-PT
-PT
-PT
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-Xk
-zM
-zM
-zM
-PG
-"}
-(137,1,1) = {"
-PG
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-iL
-yy
-yy
-iL
-rQ
-iL
-iL
-iL
-Yj
-iL
-iL
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PT
-wU
-Rt
-ga
-PT
-Ty
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PG
-"}
-(138,1,1) = {"
-PG
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-iL
-iL
-iL
-iL
-rQ
-iL
-iL
-iL
-Tj
-iL
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PT
-wU
-Rt
-ga
-PT
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PG
-"}
-(139,1,1) = {"
-PG
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-iL
-iL
-iL
-rQ
-iL
-iL
-iL
-BA
-iL
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PT
-PT
-PT
-PT
-PT
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-gm
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-zM
-PG
-"}
-(140,1,1) = {"
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-KU
-KU
-wW
-KU
-LK
-PG
-BA
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-PG
-"}
+nah fam
\ No newline at end of file
diff --git a/maps/groundbase/westwilds/westwilds2.dmm b/maps/groundbase/westwilds/westwilds2.dmm
index b25789bc6c..296a0640a3 100644
--- a/maps/groundbase/westwilds/westwilds2.dmm
+++ b/maps/groundbase/westwilds/westwilds2.dmm
@@ -1,24888 +1 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/item/weapon/tool/wrench,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"ab" = (
-/obj/machinery/artifact_scanpad,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"ac" = (
-/obj/machinery/artifact_analyser,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"ad" = (
-/obj/structure/table/standard,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/vending/wallmed1{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"ae" = (
-/obj/effect/landmark/wildlife/forest,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
-/area/submap/groundbase/wilderness/west/unexplored)
-"af" = (
-/obj/effect/landmark/wildlife/water,
-/turf/simulated/floor/water/seasonal,
-/area/submap/groundbase/wilderness/west/unexplored)
-"ag" = (
-/obj/effect/landmark/wildlife/forest,
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
-/area/submap/groundbase/wilderness/west/unexplored)
-"am" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 9
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"an" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
-"ao" = (
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"aq" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"as" = (
-/turf/simulated/floor/beach/sand{
- edge_blending_priority = -1;
- outdoors = 1
- },
-/area/groundbase/wilderness/west/unexplored)
-"at" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"au" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"aw" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- external_pressure_bound = 0;
- frequency = 1445;
- icon_state = "map_vent_in";
- id_tag = "burn_out";
- initialize_directions = 4;
- pump_direction = 0
- },
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"aB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"aE" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/substation)
-"aI" = (
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"bc" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"bf" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"bk" = (
-/obj/machinery/power/apc{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"bp" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"bE" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"bK" = (
-/obj/machinery/conveyor_switch/oneway{
- icon_state = "switch-fwd";
- id = "outpost_canisters";
- position = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"bL" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"bQ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"bS" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"bT" = (
-/obj/machinery/light,
-/obj/machinery/artifact_scanpad,
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"bV" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"bW" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"bY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ci" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/pipedispenser,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cE" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"cG" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"cI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cJ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"cL" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"cS" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"cX" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"cZ" = (
-/obj/machinery/atmospherics/unary/heater{
- icon_state = "heater_1";
- use_power = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"do" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Anomaly Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_storage)
-"dx" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"dB" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"dD" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "Anomaly Testing"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_lab)
-"dI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"dN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"dO" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"dT" = (
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"ec" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ed" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"eq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"er" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"es" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/obj/machinery/meter,
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"ev" = (
-/obj/item/stack/cable_coil/random,
-/obj/structure/table/steel,
-/obj/item/clothing/gloves/yellow,
-/obj/structure/closet/walllocker_double{
- pixel_y = 28
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"eC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"eF" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"eS" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"fd" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"fh" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"fo" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"fw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"fB" = (
-/obj/structure/cable/ender{
- icon_state = "4-8";
- id = "westwilds"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"fM" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/mineral/ignore_cavegen,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/mineral/ignore_cavegen/virgo3c,
-=======
-/turf/simulated/mineral/ignore_cavegen,
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-/area/submap/groundbase/wilderness/west)
->>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs
-"fQ" = (
-/obj/machinery/chem_master,
-/obj/machinery/camera/network/research_outpost{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"gi" = (
-/obj/structure/table/standard,
-/obj/machinery/computer/atmoscontrol/laptop{
- monitored_alarm_ids = list("anomaly_testing");
- req_one_access = list(47,24,11)
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"gz" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"gC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"gF" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"gN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"gS" = (
-/obj/machinery/computer/area_atmos/tag{
- dir = 4;
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"gU" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"gW" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"gX" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"gZ" = (
-/obj/structure/table/standard,
-/obj/item/stack/nanopaste,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"hb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"hf" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"hg" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_lab)
-"hi" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"hm" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"hp" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"hA" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"hB" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"hD" = (
-/obj/machinery/light/small{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/tiled/asteroid_steel/outdoors/virgo3c{
-=======
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"hH" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"hJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"hU" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-<<<<<<< HEAD
-=======
-"hV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"hY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"if" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"iq" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"iy" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"iI" = (
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"iJ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/obj/machinery/meter,
-/obj/machinery/button/ignition{
- id = "burn_chamber";
- pixel_y = 28
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"iO" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"iU" = (
-/obj/machinery/atmospherics/unary/heat_exchanger,
-/obj/structure/window/basic,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-<<<<<<< HEAD
-"iV" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-=======
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-"jb" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"jc" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"je" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"jj" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"jo" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"js" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/corner/purple/full{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"jy" = (
-/obj/structure/catwalk,
-/obj/structure/cable/heavyduty{
- icon_state = "0-4"
- },
-/obj/structure/cable/heavyduty{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"jA" = (
-/obj/structure/railing,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"jB" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"jH" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"jJ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Science Outpost Atmospherics";
- req_one_access = list(10,47)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/atmos)
-"jL" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"jM" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"jQ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"jS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"jU" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Science Outpost"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost)
-"jY" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-<<<<<<< HEAD
-/area/groundbase/wilderness/west)
-"ki" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-=======
-/area/submap/groundbase/wilderness/west)
->>>>>>> b7b3ae73e0... Merge pull request #12838 from Very-Soft/gbwilds
-"kn" = (
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"ko" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
-"kr" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/pointdefense_control{
- id_tag = "axolotl_pd";
- name = "axolotl defense control";
- req_one_access = null
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"kv" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"kA" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"kE" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Science Outpost";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"kH" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning/cee,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"kM" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"kN" = (
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/anomaly_testing)
-"kQ" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
-"kR" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl_cockpit)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"kT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"kY" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 4;
- frequency = 1445;
- id = "burn_in";
- volume_rate = 700
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"la" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"le" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"lf" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"lk" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"lw" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"lE" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"lJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"lM" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"lO" = (
-<<<<<<< HEAD
-/turf/unsimulated/wall/planetary/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/unsimulated/wall/planetary/normal{
- desc = "It's quite impassable";
- icon_state = "rock-dark";
- name = "impassable rock"
- },
-/area/submap/groundbase/wilderness/west)
-"lR" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"lS" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"lW" = (
-/obj/machinery/atmospherics/unary/heater{
- dir = 1;
- icon_state = "heater"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mc" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"me" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"mg" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mh" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_storage)
-"mq" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ms" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"mv" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"mC" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"mI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"mL" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mO" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"mP" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"mQ" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"mT" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"mV" = (
-/obj/structure/anomaly_container,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"mY" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"na" = (
-/obj/machinery/firealarm{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"nc" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"ng" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"nm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"nr" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west/unexplored)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west/unexplored)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"nv" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"nC" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"nM" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/reagent_dispensers/acid{
- pixel_y = -32
- },
-/obj/machinery/reagentgrinder,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"nR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"nU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"op" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"oq" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"or" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"oz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/engi{
- name = "Science Outpost Substation";
- req_one_access = list(10,47)
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/substation)
-"oE" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"oF" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"pd" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"pe" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"pg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ph" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"pj" = (
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"pv" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"pB" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"pF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"pG" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"pI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"pM" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 9
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
-"pN" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/alarms_hidden{
- pixel_y = 26;
- req_one_access = list(24,11,67)
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl_head)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"pO" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"pR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"pV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"pW" = (
-/obj/machinery/computer/general_air_control/supermatter_core{
- frequency = 1445;
- input_tag = "burn_in";
- name = "Burn Chamber Air Control";
- output_tag = "burn_out";
- pressure_setting = 0;
- sensors = list("burn_sensor" = "Burn Chamber Sensor")
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"qc" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"qe" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"qg" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"qi" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"qj" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"qn" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"qq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"qy" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"qz" = (
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/engineering/solarfield)
-"qD" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_testing)
-"qN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"qR" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"qU" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/empty/nitrogen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"qV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"qZ" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"ra" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"rb" = (
-/turf/simulated/wall/shull,
-/area/shuttle/axolotl_head)
-"rj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl_q2)
-"rn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_cockpit)
-"ro" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_cockpit)
-"rp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"rr" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"rs" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"rw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ry" = (
-/obj/machinery/alarm,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"rK" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue{
- dir = 5
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"rY" = (
-/obj/item/stack/cable_coil/random,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/engineering/solarfield)
-"sb" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"sc" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/groundbase/science/outpost)
-"sd" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"sr" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/rnd{
- name = "Anomaly Storage"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/anomaly_storage)
-"su" = (
-/obj/machinery/button/remote/blast_door{
- id = "burn_chamber_v";
- name = "Burn Chamber Vent";
- pixel_x = -26;
- pixel_y = 6
- },
-/obj/machinery/button/remote/blast_door{
- id = "burn_chamber_p";
- name = "Burn Chamber Purge";
- pixel_x = -26;
- pixel_y = -8
- },
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"sw" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-<<<<<<< HEAD
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/obj/machinery/power/solar{
- SOLAR_MAX_DIST = 140
- },
-/turf/simulated/floor{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"sz" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"sA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"sI" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"sJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_cockpit)
-"sP" = (
-/obj/structure/handrail,
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"sR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"sW" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-<<<<<<< HEAD
-=======
-"sZ" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"te" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"ti" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tu" = (
-/obj/machinery/alarm{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tD" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"tH" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 0;
- filtered_out = list("phoron")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"tL" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"tM" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_testing)
-"tO" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 3;
- filtered_out = list("carbon_dioxide")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"tQ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 30
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"tR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"tZ" = (
-/obj/structure/closet/excavation,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"ua" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ue" = (
-/obj/effect/map_effect/portal/master/side_b/gb_wilds/west{
- dir = 8
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
-"ui" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_galley)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"uj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"us" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Input";
- name_tag = "Solar Farm Input"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"ut" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"uw" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"uy" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"uz" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"uA" = (
-/obj/machinery/radiocarbon_spectrometer,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"uG" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/anomaly_lab)
-"uI" = (
-/obj/structure/table/standard,
-/obj/item/device/multitool,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"vd" = (
-/obj/structure/sign/warning/hot_exhaust,
-/turf/simulated/wall/r_wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"ve" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"vg" = (
-/obj/machinery/portable_atmospherics/powered/pump,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"vh" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"vl" = (
-/obj/machinery/alarm{
- alarm_id = "anomaly_testing";
- breach_detection = 0;
- dir = 8;
- report_danger_level = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"vr" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-<<<<<<< HEAD
-"vw" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-/area/submap/groundbase/wilderness/west)
-=======
-"vs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/wall/shull,
-/area/shuttle/axolotl)
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-"vx" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_q2)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"vy" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"vA" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"vM" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"vN" = (
-/obj/machinery/air_sensor{
- frequency = 1445;
- id_tag = "burn_sensor";
- output = 63
- },
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"vO" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"vS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"vY" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Solar Access"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"wg" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "General Gasworks"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wh" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"wj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"wn" = (
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"wp" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"ws" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"wz" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"wA" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"wQ" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"wT" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"wX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"xh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Science Outpost";
- req_one_access = null
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/outpost)
-"xi" = (
-/obj/machinery/atmospherics/valve{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"xj" = (
-/obj/structure/table/standard,
-/obj/machinery/light,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"xn" = (
-/obj/machinery/vending/phoronresearch{
- dir = 8;
- name = "Toximate 2556";
- products = list(/obj/item/device/transfer_valve = 3, /obj/item/device/assembly/timer = 6, /obj/item/device/assembly/signaler = 6, /obj/item/device/assembly/prox_sensor = 6, /obj/item/device/assembly/igniter = 12)
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"xr" = (
-/obj/effect/map_effect/portal/master/side_b/gb_wilds/east_west{
- dir = 4
- },
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xv" = (
-/obj/machinery/suspension_gen,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-<<<<<<< HEAD
-=======
-"xC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
-"xE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/axolotl)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xI" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-<<<<<<< HEAD
-=======
-"xK" = (
-/obj/structure/hull_corner,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/axolotl_engineering)
-"xM" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"xP" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"xT" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/black{
- dir = 4
- },
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"yc" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/phoron,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"yf" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"yh" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"yk" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"yq" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"yD" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"yE" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"yL" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"yV" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 8
- },
-/obj/machinery/meter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"yX" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"yZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"zk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-<<<<<<< HEAD
-=======
-"zm" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"zx" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"zz" = (
-/turf/simulated/wall,
-/area/groundbase/engineering/solarshed)
-"zA" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"zK" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"zN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"zO" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Science Outpost Subgrid";
- name_tag = "Science Outpost Subgrid"
- },
-/obj/machinery/firealarm{
- dir = 4
- },
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"zP" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_storage)
-"zS" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"zT" = (
-/obj/machinery/bomb_tester,
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/science/outpost/toxins_lab)
-"zV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ac" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ai" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Aj" = (
-/obj/machinery/atmospherics/binary/pump/high_power/on,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ak" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"An" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ao" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"At" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Mixing"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-"Av" = (
-/obj/machinery/atmospherics/trinary/atmos_filter/m_filter{
- dir = 8;
- filter_type = 4;
- filtered_out = list("nitrous_oxide")
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Aw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"AD" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"AJ" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"AQ" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-<<<<<<< HEAD
-=======
-"AR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"AV" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"AY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/outdoors/sidewalk,
-/area/groundbase/science/outpost)
-"Bc" = (
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Be" = (
-/obj/structure/cable/heavyduty{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Power - Solar Array";
- cur_coils = 3;
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Bg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/black,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Bj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/blue{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Bp" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/obj/structure/cable/heavyduty,
-/obj/structure/cable/heavyduty{
- icon_state = "0-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Solar Farm Output";
- name_tag = "Solar Farm Output"
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarshed)
-"Br" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/supply,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Bw" = (
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"BH" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Toxins Workroom"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_lab)
-"BJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"BS" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 1;
- target_pressure = 200
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Cc" = (
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "anomaly_testing_v";
- name = "Anomaly Testing Vent"
- },
-/turf/simulated/floor/bmarble,
-/area/groundbase/science/outpost/anomaly_testing)
-"Cd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Cj" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ck" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/weapon/tool/screwdriver,
-/obj/item/device/assembly_holder/timer_igniter,
-/obj/machinery/camera/network/research_outpost{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Cm" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-<<<<<<< HEAD
-/obj/structure/cable,
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
-=======
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"Cu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Cw" = (
-/obj/structure/anomaly_container,
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-"CL" = (
-/turf/unsimulated/wall/planetary/virgo3c{
- icon_state = "riveted"
- },
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
-"CL" = (
-/turf/unsimulated/wall/planetary/normal,
-/area/submap/groundbase/wilderness/west)
-"CN" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
-"CO" = (
-/obj/structure/window/reinforced/tinted,
-/obj/structure/toilet{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl_head)
-"CX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/sleep_console,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/axolotl_q1)
-"De" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Dk" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Dn" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"DA" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/water/virgo3c{
- outdoors = 0
- },
-/area/groundbase/wilderness/west/unexplored)
-=======
-/turf/simulated/floor/water,
-=======
-/turf/simulated/floor/water/seasonal,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west/unexplored)
-"DB" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"DF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"DI" = (
-/obj/machinery/portable_atmospherics/canister/empty/oxygen,
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"DP" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/supply,
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"DW" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Anomalous Materials"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost)
-"DX" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"DY" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Eh" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 9
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ei" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Eo" = (
-/obj/machinery/firealarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Ew" = (
-/obj/machinery/firealarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Ex" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Ey" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/powered/pump/huge/stationary/purge,
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"EB" = (
-/obj/machinery/alarm,
-/obj/effect/floor_decal/corner/purple{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"EC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"EG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 9
- },
-/obj/machinery/firealarm{
- dir = 1
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-<<<<<<< HEAD
-=======
-"EM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"EW" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"EZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fb" = (
-/obj/machinery/button/remote/blast_door{
- id = "anomaly_testing_v";
- name = "Panic Chamber Vent";
- pixel_x = 6;
- pixel_y = 26
- },
-/obj/machinery/alarm{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Fe" = (
-/obj/machinery/power/solar_control,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Fh" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Fi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fp" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/black,
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ft" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Fv" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/side/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk/side,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Fz" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"FL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"FO" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"FP" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible/blue,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"FX" = (
-/obj/structure/anomaly_container,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Gc" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_science{
- name = "Toxins Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_lab)
-"Gd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Gg" = (
-/obj/structure/table/steel,
-/obj/item/device/measuring_tape,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/excavation,
-/obj/item/stack/flag/yellow,
-/obj/item/weapon/pickaxe,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Gl" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Gm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Gq" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen/fountain,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Gs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 5
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"GC" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/sidewalk/slab/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"GH" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"GK" = (
-/obj/structure/cable,
-<<<<<<< HEAD
-/obj/machinery/power/solar,
-/turf/simulated/floor/virgo3c{
- edge_blending_priority = -1
-=======
-/obj/machinery/power/solar{
- SOLAR_MAX_DIST = 140
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"GN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
- },
-/area/groundbase/engineering/solarfield)
-"GP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"GQ" = (
-/obj/machinery/atmospherics/omni/atmos_filter{
- tag_east = 1;
- tag_north = 4;
- tag_south = 2;
- tag_west = 3
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"GU" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Hp" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"Hq" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 10
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Hr" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"Hv" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Hy" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Hz" = (
-/obj/machinery/power/apc,
-/obj/structure/cable/green,
-/obj/structure/table/standard,
-/obj/fiftyspawner/steel,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HB" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HC" = (
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"HH" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"HI" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 4
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/structure/window/basic{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"HU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"HX" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"HY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"HZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Ia" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Id" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"If" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ig" = (
-/obj/machinery/atmospherics/trinary/atmos_filter{
- dir = 4;
- name = "High Power Gas filter";
- power_rating = 15000;
- use_power = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"In" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"Io" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Ip" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Iv" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Iw" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"IA" = (
-/obj/machinery/suspension_gen,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"IB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-<<<<<<< HEAD
-=======
-"IE" = (
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"II" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"IM" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"IO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"IQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"IR" = (
-/obj/machinery/atmospherics/unary/heat_exchanger,
-/obj/structure/window/basic,
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxins_mixing)
-<<<<<<< HEAD
-=======
-"IU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
-/turf/simulated/floor/plating,
-/area/shuttle/axolotl_engineering)
-"IV" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"IX" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Jb" = (
-/obj/machinery/atmospherics/valve,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Jn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/blue,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Jq" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Jz" = (
-/obj/effect/floor_decal/corner/purple/full{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"JC" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 9
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"JE" = (
-/obj/structure/dispenser,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"JG" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"JL" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"JU" = (
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"JW" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Ke" = (
-/obj/structure/dispenser/oxygen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Km" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Kt" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Kw" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 1
- },
-/obj/machinery/sparker{
- id = "burn_chamber";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"KA" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_mixing)
-"KE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"KF" = (
-/obj/effect/map_effect/portal/line/side_b{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"KI" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"KV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/camera/network/research_outpost{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Lb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Lg" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/screwdriver,
-/obj/item/weapon/anobattery{
- pixel_x = 5;
- pixel_y = 2
- },
-/obj/item/weapon/anobattery,
-/obj/item/weapon/anobattery{
- pixel_x = -4;
- pixel_y = 3
- },
-/obj/item/weapon/anobattery{
- pixel_x = -5;
- pixel_y = -3
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ls" = (
-/obj/machinery/radiocarbon_spectrometer,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"Ly" = (
-/obj/machinery/atmospherics/trinary/mixer/m_mixer{
- dir = 4;
- name = "High Power Gas mixer";
- power_rating = 15000
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"LA" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"LD" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"LF" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/anomaly,
-/obj/item/clothing/head/helmet/space/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/storage/belt/archaeology,
-/obj/item/weapon/melee/umbrella/random,
-/obj/machinery/alarm{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"LO" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 10
- },
-/obj/machinery/door/blast/regular{
- dir = 2;
- id = "burn_chamber_p";
- name = "Burn Chamber Purge"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"LV" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6
- },
-/obj/machinery/sparker{
- id = "burn_chamber";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"LY" = (
-/obj/machinery/artifact_harvester,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Mc" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Mr" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Mx" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"MC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"MN" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"MU" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"MY" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Nh" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Np" = (
-/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
- scrub_id = "science_outpost"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Nw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"NC" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"NF" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"NG" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tank/phoron,
-/obj/machinery/requests_console/preset/research{
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"NI" = (
-/obj/machinery/camera/network/research_outpost{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/extinguisher_cabinet{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"NL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"NV" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"NW" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/toxins_lab)
-"NX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Oq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"OI" = (
-/obj/structure/anomaly_container,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"OL" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Pb" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/bio_suit/anomaly,
-/obj/item/clothing/head/bio_hood/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/clothing/glasses/science,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Pg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Po" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Pz" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"PB" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- dir = 8
- },
-/obj/structure/window/phoronreinforced/full{
- icon_state = "phoronwindow0"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"PG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"PI" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 5
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"PJ" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"PK" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"PM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_storage)
-"PO" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/groundbase/science/outpost/toxins_lab)
-"PW" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"Qc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qf" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Qm" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/anodevice{
- pixel_x = -2
- },
-/obj/item/weapon/anodevice{
- pixel_x = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Qn" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/machinery/camera/network/research_outpost,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qp" = (
-/obj/machinery/atmospherics/binary/pump,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Qw" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- req_access = list()
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"QM" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Rb" = (
-/obj/structure/cable/heavyduty{
- icon_state = "2-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"Rc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"Rq" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Rv" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_testing)
-"RH" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/conveyor{
- dir = 8;
- id = "outpost_canisters";
- operating = 1
- },
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_storage)
-"RM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"RQ" = (
-/obj/structure/reagent_dispensers/coolanttank,
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/groundbase/science/outpost/anomaly_lab)
-"RU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"RW" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/tool/wirecutters,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"Sb" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 1;
- state = 2
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Sf" = (
-/obj/effect/floor_decal/corner/purple/full{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/standard,
-/obj/item/weapon/tool/wrench,
-/obj/machinery/camera/network/research_outpost{
- dir = 8
- },
-/obj/item/device/analyzer,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Sh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/power/apc{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_storage)
-"Sk" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Sl" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red{
- dir = 8
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Sn" = (
-/obj/machinery/atmospherics/trinary/mixer/m_mixer{
- dir = 8;
- node1_concentration = 0.79;
- node2_concentration = 0.21
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Sw" = (
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 6
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"Sx" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"SF" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/red,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"SS" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/asteroid_steel/outdoors{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Ti" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"To" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Tp" = (
-/obj/structure/reagent_dispensers/coolanttank,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_storage)
-"Tu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/weapon/weldingtool,
-/obj/item/clothing/glasses/welding,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"TE" = (
-/obj/machinery/alarm{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"TJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"TM" = (
-/obj/machinery/atmospherics/valve,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Up" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_lab)
-"Uq" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost)
-"Ut" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_hallway)
-"Uy" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"UB" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_storage)
-"UI" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/anomaly,
-/obj/item/clothing/head/helmet/space/anomaly,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/storage/belt/archaeology,
-/obj/item/weapon/melee/umbrella/random,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"UL" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- dir = 8
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"UN" = (
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Vf" = (
-/obj/structure/table/steel,
-/obj/item/device/measuring_tape,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/storage/excavation,
-/obj/item/stack/flag/yellow,
-/obj/item/weapon/pickaxe,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Vg" = (
-/obj/structure/cable/heavyduty{
- icon_state = "4-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/wilderness/west)
-"Vk" = (
-/obj/machinery/power/apc{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"Vr" = (
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"VD" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 4
- },
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"VG" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"VS" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_lab)
-"VT" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/groundbase/engineering/solarshed)
-"VZ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Wg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Wl" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Wm" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Ws" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxins_lab)
-<<<<<<< HEAD
-=======
-"Wz" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"WB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-<<<<<<< HEAD
-=======
-"WD" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/outdoors/sidewalk/slab,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"WE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_lab)
-"WF" = (
-/obj/machinery/door/blast/regular{
- dir = 8;
- id = "burn_chamber_v";
- name = "Burn Chamber Vent"
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 5
- },
-/turf/simulated/floor/reinforced/airless,
-/area/groundbase/science/outpost/toxins_mixing)
-"WR" = (
-/obj/machinery/atmospherics/pipe/vent/high_volume,
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"WS" = (
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"WV" = (
-/turf/simulated/wall,
-/area/groundbase/science/outpost/toxing_gasworks)
-"WZ" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Xb" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/anomaly_storage)
-"Xe" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"Xi" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 8;
- target_pressure = 200
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Xk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"Xl" = (
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"XO" = (
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 9
- },
-/turf/simulated/floor/outdoors/newdirt,
-/area/groundbase/science/outpost/toxins_mixing)
-"XS" = (
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/newdirt/virgo3c,
-/area/groundbase/wilderness/west)
-=======
-/turf/simulated/floor/outdoors/newdirt,
-/area/submap/groundbase/wilderness/west)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"XW" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/wire_deleter,
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/engineering/solarfield)
-"XX" = (
-/obj/machinery/atmospherics/unary/heat_exchanger{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 8
- },
-/obj/structure/window/basic{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"XY" = (
-/obj/machinery/atmospherics/unary/freezer{
- icon_state = "freezer_1";
- use_power = 1
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"Yb" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Yk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 10
- },
-/turf/simulated/wall,
-/area/groundbase/science/outpost/atmos)
-"Yr" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"Yu" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Yw" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/purple/full{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxins_mixing)
-"YI" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Science Outpost Substation Bypass"
- },
-/turf/simulated/floor,
-/area/groundbase/science/outpost/substation)
-"YK" = (
-<<<<<<< HEAD
-<<<<<<< HEAD
-/turf/simulated/floor/outdoors/grass/forest/virgo3c,
-/area/groundbase/wilderness/west/unexplored)
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark,
-=======
-/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow,
->>>>>>> 47369cec9e... Merge pull request #14312 from Very-Soft/moreRPedits
-/area/submap/groundbase/wilderness/west/unexplored)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"YL" = (
-/obj/structure/closet/excavation,
-/obj/machinery/firealarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-"YT" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_science{
- name = "General Gasworks"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/groundbase/science/outpost/toxing_gasworks)
-"YW" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/anodevice{
- pixel_x = -2
- },
-/obj/item/weapon/anodevice{
- pixel_x = 1
- },
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/anomaly_testing)
-"Zi" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/turf/simulated/floor/greengrid,
-/area/groundbase/science/outpost/toxins_lab)
-"Zm" = (
-<<<<<<< HEAD
-/turf/simulated/mineral/cave/virgo3c,
-/area/groundbase/wilderness/west/cave)
-=======
-/turf/simulated/mineral/cave,
-/area/submap/groundbase/wilderness/west/cave)
->>>>>>> f9bfe4cb44... Merge pull request #14276 from Very-Soft/seasontime
-"Zw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/insulated{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/toxins_mixing)
-"Zx" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/groundbase/science/outpost/toxing_gasworks)
-"ZA" = (
-/obj/structure/anomaly_container,
-/turf/simulated/floor/tiled/dark,
-/area/groundbase/science/outpost/anomaly_testing)
-"ZL" = (
-/obj/machinery/atmospherics/pipe/vent{
- dir = 4
- },
-/turf/simulated/floor{
- edge_blending_priority = -1
- },
-/area/groundbase/science/outpost/atmos)
-"ZN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/alarm,
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost/toxins_hallway)
-"ZO" = (
-/obj/machinery/alarm,
-/turf/simulated/floor,
-/area/groundbase/science/outpost/atmos)
-"ZX" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/groundbase/science/outpost)
-
-(1,1,1) = {"
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-xr
-KF
-KF
-KF
-KF
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-"}
-(2,1,1) = {"
-lO
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-YK
-nr
-nr
-nr
-nr
-nr
-YK
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-lO
-"}
-(3,1,1) = {"
-lO
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-lO
-"}
-(4,1,1) = {"
-lO
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-lO
-"}
-(5,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(6,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-YK
-YK
-YK
-nr
-nr
-ae
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(7,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(8,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(9,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(10,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(11,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(12,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(13,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(14,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(15,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(16,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-dT
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-me
-dT
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(17,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-er
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(18,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-sW
-Cm
-sW
-Cm
-sW
-Cm
-sW
-GK
-dT
-dT
-dT
-sw
-sW
-Cm
-sW
-Cm
-sW
-Cm
-sW
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(19,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-ag
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-dT
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(20,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-dT
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(21,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-dT
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(22,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-dT
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-ag
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(23,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-dT
-dT
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(24,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-dT
-wA
-HM
-AJ
-HM
-AJ
-HM
-AJ
-qi
-qi
-ng
-qi
-qi
-sR
-HM
-sR
-HM
-sR
-HM
-XW
-dT
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(25,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-rY
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-qz
-vh
-qz
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(26,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(27,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(28,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(29,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(30,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-yE
-Cm
-yE
-Cm
-yE
-Cm
-yE
-GK
-dT
-vh
-dT
-sw
-yE
-Cm
-yE
-Cm
-yE
-Cm
-yE
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(31,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-vh
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-er
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(32,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-dT
-dT
-qz
-dT
-qz
-qz
-qz
-qz
-qz
-qz
-qz
-qz
-vh
-qz
-qz
-qz
-dT
-dT
-qz
-qz
-dT
-dT
-qz
-dT
-dT
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(33,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-vh
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(34,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-sW
-Cm
-sW
-Cm
-sW
-Cm
-sW
-GK
-dT
-vh
-dT
-sw
-sW
-Cm
-sW
-Cm
-sW
-Cm
-sW
-GK
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(35,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(36,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(37,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(38,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-dT
-me
-nC
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(39,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-qz
-vh
-qz
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-nr
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(40,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-pd
-qi
-qi
-AJ
-HM
-AJ
-HM
-AJ
-HM
-AJ
-qi
-qi
-yh
-qi
-qi
-sR
-HM
-sR
-HM
-sR
-HM
-XW
-dT
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(41,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-ae
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-qz
-vh
-qz
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(42,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-dT
-nc
-qc
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(43,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(44,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-ag
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(45,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(46,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-yE
-Cm
-yE
-Cm
-yE
-Cm
-yE
-GK
-dT
-vh
-dT
-sw
-yE
-Cm
-yE
-Cm
-yE
-Cm
-yE
-GK
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(47,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-vh
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-er
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(48,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-dT
-qz
-dT
-qz
-qz
-qz
-dT
-qz
-qz
-dT
-qz
-qz
-vh
-qz
-qz
-qz
-qz
-dT
-dT
-qz
-dT
-dT
-qz
-dT
-dT
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(49,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-vh
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-rY
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(50,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-sw
-sW
-Cm
-sW
-Cm
-sW
-Cm
-sW
-GK
-dT
-vh
-dT
-sw
-sW
-Cm
-sW
-Cm
-sW
-Cm
-sW
-GK
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(51,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-nr
-nr
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(52,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-ag
-nr
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-nr
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(53,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(54,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-vh
-dT
-sw
-tL
-Cm
-tL
-Cm
-tL
-Cm
-tL
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-ag
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(55,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-qz
-vh
-qz
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-er
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(56,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-wA
-HM
-AJ
-HM
-AJ
-HM
-AJ
-qi
-qi
-yh
-qi
-qi
-sR
-HM
-sR
-HM
-sR
-HM
-XW
-dT
-dT
-er
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(57,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-qz
-vh
-qz
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-vh
-dT
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(58,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(59,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-nr
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(60,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(61,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-as
-as
-as
-as
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-vh
-dT
-sw
-xI
-Cm
-xI
-Cm
-xI
-Cm
-xI
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(62,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-as
-as
-DA
-DA
-as
-as
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-jA
-dT
-sw
-yE
-Cm
-yE
-Cm
-yE
-Cm
-yE
-GK
-dT
-vh
-dT
-sw
-yE
-Cm
-yE
-Cm
-yE
-Cm
-yE
-GK
-dT
-er
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(63,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-as
-as
-DA
-DA
-DA
-DA
-as
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jA
-rY
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-vh
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-dT
-er
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(64,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-as
-as
-as
-as
-as
-as
-DA
-as
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-dT
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-dT
-vh
-dT
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-nc
-dT
-nr
-nr
-nr
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(65,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-as
-as
-as
-DA
-DA
-DA
-DA
-as
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(66,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-as
-as
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-ae
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(67,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(68,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(69,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-ag
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(70,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-DA
-DA
-DA
-DA
-DA
-af
-DA
-DA
-DA
-DA
-as
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(71,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(72,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-as
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(73,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-as
-DA
-DA
-DA
-DA
-DA
-DA
-DA
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(74,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-as
-as
-as
-DA
-DA
-as
-as
-as
-as
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(75,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-as
-as
-as
-as
-as
-as
-as
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(76,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-as
-DA
-as
-as
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(77,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-as
-DA
-DA
-as
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(78,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-as
-DA
-DA
-as
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(79,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-as
-as
-DA
-as
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(80,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-as
-as
-as
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(81,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(82,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(83,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(84,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-NF
-mI
-mI
-mI
-mI
-zS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-nr
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(85,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-SS
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(86,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-kQ
-kQ
-kQ
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-kQ
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(87,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-kQ
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-IM
-hA
-IM
-hA
-Wl
-Wl
-Wl
-Wl
-dB
-dB
-dB
-dB
-dB
-Wl
-Wl
-kQ
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(88,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-Wl
-Wl
-tM
-tM
-Cc
-Cc
-Cc
-tM
-tM
-tM
-tM
-tM
-tM
-tM
-Wl
-Wl
-Wl
-VD
-VD
-VD
-VD
-Wl
-Wl
-Wl
-Wl
-dB
-Ey
-Ey
-Ey
-dB
-Wl
-Wl
-Wl
-nr
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(89,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Wl
-Wl
-tM
-Uy
-nv
-nv
-nv
-Uy
-kN
-Fb
-NI
-mV
-ZA
-tM
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-Wl
-vd
-dB
-LO
-xT
-Fp
-dB
-vd
-Wl
-Wl
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(90,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Wl
-Wl
-tM
-nv
-qZ
-iq
-lM
-yZ
-Rv
-pO
-Nh
-Ip
-uy
-tM
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-Wl
-EW
-LV
-hH
-hH
-PW
-Kw
-WF
-Wl
-Wl
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(91,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Wl
-Wl
-tM
-nv
-Ti
-AQ
-RU
-dx
-qD
-TM
-gz
-Sb
-Hv
-tM
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-Wl
-EW
-aw
-hH
-vN
-PW
-kY
-vM
-sI
-Wl
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(92,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-Wl
-Wl
-Wl
-Wl
-Wl
-tM
-nv
-mT
-zk
-Hp
-WB
-HU
-IX
-pv
-wz
-DY
-tM
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-Wl
-vd
-xP
-PB
-dB
-yf
-NV
-vd
-ra
-Wl
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(93,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-ag
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-Wl
-Wl
-Wl
-Wl
-Wl
-tM
-nv
-bW
-vl
-na
-nv
-kN
-YW
-Yu
-Yb
-Dn
-tM
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-Wl
-uz
-XO
-WR
-BS
-lJ
-Qf
-Sw
-JC
-Wl
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(94,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-Wl
-mh
-mh
-mh
-mh
-mh
-sr
-mh
-uG
-uG
-uG
-uG
-uG
-dD
-uG
-uG
-uG
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-KA
-Zw
-ve
-Gm
-To
-To
-NX
-Zw
-KA
-Wl
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(95,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-SS
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-Wl
-mh
-eS
-JL
-BJ
-Hr
-nR
-mh
-Ls
-WE
-Vk
-gi
-Qm
-jH
-Up
-bT
-uG
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-KA
-iJ
-AD
-kH
-pW
-su
-jM
-es
-KA
-Wl
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(96,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-jY
-uw
-zz
-jo
-jo
-zz
-jo
-jo
-zz
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-Wl
-mh
-MY
-MU
-MY
-PM
-hJ
-mh
-RQ
-If
-tD
-KI
-uI
-HH
-If
-LY
-uG
-Wl
-Wl
-XS
-VD
-VD
-VD
-VD
-XS
-Wl
-KA
-mC
-Yr
-MC
-aq
-cX
-Wm
-xi
-KA
-Wl
-nr
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(97,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-iI
-us
-zz
-Ak
-lf
-Hy
-Be
-zA
-zz
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-Wl
-mh
-mc
-Xb
-kv
-qn
-jS
-mh
-uA
-If
-tD
-oq
-Lg
-HH
-If
-HC
-uG
-Wl
-Wl
-XS
-VD
-Hq
-pM
-VD
-XS
-Wl
-KA
-EB
-Oq
-op
-bf
-HX
-wj
-EG
-KA
-Wl
-nr
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(98,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-YK
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-iI
-sz
-jQ
-Fe
-lf
-lf
-VT
-Rb
-Sx
-Bp
-nr
-nr
-YK
-YK
-YK
-YK
-Wl
-mh
-MY
-MU
-MY
-PM
-EC
-mh
-gZ
-If
-tD
-If
-KE
-mY
-If
-fQ
-uG
-Wl
-Wl
-Wl
-Hq
-hA
-IM
-pM
-Wl
-Wl
-KA
-aa
-fw
-kM
-zx
-IR
-vA
-cL
-KA
-Wl
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(99,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-iI
-nr
-zz
-ev
-JU
-Mr
-JU
-JU
-zz
-wh
-nr
-nr
-YK
-YK
-YK
-YK
-Wl
-mh
-kv
-Ex
-kv
-qn
-Rc
-do
-kT
-kT
-sb
-NL
-at
-LA
-Vr
-xj
-uG
-Wl
-Wl
-Wl
-XS
-UL
-UL
-XS
-Wl
-Wl
-KA
-Sf
-DF
-fh
-oF
-iU
-tQ
-Jz
-KA
-Wl
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(100,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-iI
-nr
-zz
-zz
-vY
-zz
-vY
-zz
-zz
-wh
-nr
-nr
-YK
-YK
-YK
-YK
-Wl
-mh
-MY
-bE
-MY
-qy
-Sh
-mh
-ab
-ac
-ad
-bp
-hm
-qg
-bQ
-nM
-WV
-WV
-WV
-WV
-eC
-Bj
-am
-eC
-WV
-WV
-KA
-KA
-Yw
-js
-KA
-KA
-KA
-KA
-KA
-Wl
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(101,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-iI
-iI
-iI
-iI
-iI
-hD
-iI
-nr
-nr
-wh
-nr
-nr
-YK
-YK
-YK
-YK
-Wl
-mh
-mh
-mh
-mh
-mh
-mh
-mh
-Uq
-Uq
-Uq
-Uq
-DW
-Uq
-Uq
-Uq
-WV
-Iv
-jL
-dI
-Qn
-FP
-Jb
-Jn
-Jn
-yV
-rK
-WV
-At
-KA
-KA
-Wl
-Wl
-Wl
-Wl
-Wl
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(102,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-nr
-wh
-nr
-nr
-nr
-YK
-YK
-nr
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Uq
-Pb
-Km
-Km
-qj
-ec
-Xe
-Uq
-hB
-hB
-UN
-UN
-UN
-Zx
-UN
-UN
-UN
-XX
-gW
-WV
-jB
-Mx
-Ut
-Wl
-Wl
-Wl
-Wl
-Wl
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(103,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-nr
-wh
-nr
-nr
-YK
-YK
-YK
-nr
-Wl
-Wl
-Wl
-Wl
-Wl
-Cw
-Cw
-Wl
-Uq
-mq
-Fh
-Fh
-hf
-Fh
-mQ
-Uq
-pF
-qq
-Qp
-Fi
-Fi
-EZ
-UN
-UN
-jb
-HI
-fd
-WV
-VG
-WS
-Ut
-Wl
-Wl
-ZL
-ZL
-Wl
-Wl
-Wl
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(104,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-nr
-nr
-nr
-wh
-nr
-nr
-YK
-YK
-YK
-nr
-Wl
-Wl
-Wl
-Wl
-Uq
-Uq
-Uq
-Uq
-Uq
-GU
-Fh
-Fh
-hf
-Fh
-Mc
-Uq
-kA
-kA
-UN
-UN
-UN
-cI
-Ao
-UN
-or
-mL
-mg
-WV
-VG
-WS
-PJ
-PJ
-PJ
-Yk
-Lb
-Aw
-Gs
-Wl
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(105,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-YK
-nr
-Wl
-Wl
-Wl
-sc
-Uq
-TE
-cE
-gN
-Uq
-bk
-mP
-mP
-ZX
-Fh
-jj
-Uq
-ti
-nm
-nm
-rs
-cJ
-sA
-ut
-bV
-UN
-UN
-Zx
-YT
-VG
-hU
-PJ
-Xl
-Pg
-Aj
-rr
-Sk
-Ai
-Wl
-Wl
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(106,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-XS
-nr
-nr
-nr
-wh
-nr
-nr
-YK
-YK
-nr
-GC
-hY
-hY
-hY
-AY
-xh
-AV
-zK
-HZ
-jU
-qw
-qw
-qw
-VZ
-Fh
-LF
-Uq
-wn
-LD
-cJ
-tR
-Ly
-tt
-Ig
-cJ
-pB
-Cu
-rw
-WV
-VG
-WS
-PJ
-DI
-hi
-pI
-ph
-Sk
-Ai
-PJ
-Wl
-Wl
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(107,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-Wl
-Wl
-sc
-Uq
-iO
-vS
-II
-Uq
-OI
-Fh
-Fh
-hf
-Fh
-UI
-Uq
-gU
-Cu
-zN
-if
-mO
-Nw
-yk
-Po
-qV
-nm
-KV
-WV
-fo
-WS
-PJ
-ZO
-Sn
-Jq
-DX
-Xl
-Cj
-PJ
-PJ
-Wl
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(108,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-Wl
-kQ
-Wl
-aE
-aE
-oz
-aE
-Uq
-YL
-Fh
-Fh
-hf
-Fh
-Gg
-Uq
-JW
-UN
-cI
-eq
-QM
-EZ
-Zx
-HY
-bY
-UN
-cm
-WV
-VG
-WS
-PJ
-qU
-PK
-GQ
-Bg
-PI
-Xi
-Xl
-PJ
-Wl
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(109,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-kQ
-kQ
-Wl
-aE
-YI
-yq
-pV
-Uq
-tZ
-Fh
-Fh
-hf
-Fh
-Vf
-Uq
-HB
-UN
-eF
-hb
-TJ
-Fz
-ua
-Wg
-Cd
-Fi
-Qd
-WV
-ZN
-WS
-PJ
-XY
-Sl
-SF
-DX
-yL
-Av
-wQ
-PJ
-Wl
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(110,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-kQ
-Wl
-Wl
-aE
-kE
-GH
-le
-Uq
-xv
-IA
-FX
-je
-Km
-Ke
-Uq
-Gl
-LD
-uj
-bV
-wn
-Ft
-Qc
-IB
-Gd
-lS
-Hz
-WV
-VG
-WS
-PJ
-cZ
-pg
-gC
-vr
-yL
-tO
-WZ
-PJ
-Wl
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(111,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-kQ
-kQ
-Wl
-aE
-zO
-pj
-Ws
-Ws
-Ws
-Ws
-Ws
-BH
-hg
-hg
-hg
-hg
-Iv
-ci
-Bc
-tu
-au
-lW
-vy
-Xk
-kn
-Iv
-WV
-VG
-WS
-PJ
-aI
-Xl
-ws
-gC
-yL
-tH
-yc
-PJ
-Wl
-nr
-YK
-YK
-ag
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(112,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-Wl
-kQ
-Wl
-aE
-aE
-aE
-hg
-RW
-Gq
-NG
-Ck
-Pz
-OL
-lk
-gS
-hg
-WV
-WV
-WV
-WV
-WV
-WV
-WV
-wg
-WV
-WV
-WV
-ed
-lw
-jJ
-Ac
-gF
-Br
-DP
-oE
-Eh
-Xl
-PJ
-Wl
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(113,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Fv
-Wl
-kQ
-kQ
-Wl
-Wl
-Wl
-Wl
-hg
-qN
-VS
-wT
-Tu
-Pz
-VS
-VS
-Ew
-hg
-FO
-bL
-An
-cS
-pe
-vg
-Np
-vO
-Tp
-UB
-In
-gX
-hU
-PJ
-Eo
-dO
-IQ
-RM
-sd
-PJ
-PJ
-PJ
-Wl
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(114,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-nr
-nr
-XS
-XS
-nr
-nr
-Dk
-nr
-YK
-YK
-nr
-nr
-Fv
-Wl
-kQ
-kQ
-kQ
-kQ
-Wl
-Wl
-hg
-ry
-nU
-nU
-wX
-NW
-pG
-Iw
-te
-Gc
-ms
-hp
-la
-hp
-hp
-FL
-hp
-Ia
-Rq
-zP
-pR
-iy
-PG
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-PJ
-Wl
-Wl
-Wl
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(115,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-Vg
-nr
-YK
-nr
-nr
-nr
-Fv
-Wl
-kQ
-kQ
-kQ
-kQ
-Wl
-Wl
-hg
-zT
-PO
-VS
-VS
-VS
-NC
-VS
-VS
-hg
-Bw
-bS
-bS
-bS
-bS
-bS
-bK
-Ei
-aB
-UB
-Ut
-Ut
-Ut
-Ut
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(116,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-YK
-YK
-YK
-YK
-YK
-nr
-XS
-XS
-XS
-nr
-Vg
-nr
-nr
-nr
-nr
-nr
-Fv
-Wl
-Wl
-kQ
-kQ
-Wl
-Wl
-Wl
-hg
-Zi
-PO
-VS
-MN
-VS
-Id
-xn
-JE
-hg
-zV
-Qw
-cG
-IO
-Io
-yX
-UB
-UB
-UB
-UB
-Wl
-Wl
-Wl
-Wl
-Wl
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(117,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-nr
-Zm
-Zm
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-XS
-XS
-jy
-hY
-hY
-hY
-hY
-hY
-mv
-Wl
-kQ
-kQ
-kQ
-kQ
-Wl
-Wl
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-hg
-qe
-GP
-yD
-qR
-wp
-RH
-UB
-Wl
-Wl
-Wl
-Wl
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(118,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-XS
-nr
-Vg
-nr
-nr
-nr
-nr
-nr
-nr
-kQ
-kQ
-kQ
-kQ
-kQ
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-UB
-qe
-GP
-yD
-qR
-wp
-RH
-UB
-Wl
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(119,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-XS
-nr
-Vg
-nr
-nr
-YK
-YK
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-Wl
-UB
-qe
-GP
-yD
-qR
-UB
-UB
-UB
-Wl
-nr
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(120,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-JG
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-YK
-Wl
-UB
-qe
-GP
-yD
-UB
-Wl
-Wl
-Wl
-Wl
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(121,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-YK
-YK
-Wl
-UB
-qe
-GP
-yD
-UB
-Wl
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(122,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-Wl
-UB
-UB
-UB
-UB
-UB
-Wl
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(123,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-Wl
-YK
-YK
-YK
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(124,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(125,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-XS
-nr
-wh
-nr
-YK
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(126,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(127,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(128,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(129,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(130,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(131,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(132,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-nr
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(133,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-nr
-nr
-nr
-nr
-nr
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-XS
-XS
-nr
-nr
-wh
-nr
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(134,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-YK
-nr
-XS
-nr
-nr
-nr
-wh
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(135,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-YK
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-nr
-nr
-YK
-wh
-YK
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(136,1,1) = {"
-lO
-fM
-fM
-fM
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-YK
-YK
-YK
-YK
-nr
-nr
-XS
-nr
-YK
-YK
-wh
-YK
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-fM
-fM
-fM
-lO
-"}
-(137,1,1) = {"
-lO
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-YK
-YK
-YK
-YK
-nr
-XS
-nr
-YK
-YK
-bc
-YK
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-lO
-"}
-(138,1,1) = {"
-lO
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-YK
-YK
-nr
-nr
-XS
-nr
-nr
-YK
-fB
-YK
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-lO
-"}
-(139,1,1) = {"
-lO
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-YK
-nr
-nr
-XS
-nr
-nr
-YK
-CL
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-fM
-lO
-"}
-(140,1,1) = {"
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lE
-lE
-Kt
-lE
-ue
-lO
-CL
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-lO
-"}
+this ain't it
\ No newline at end of file
diff --git a/maps/offmap_vr/om_ships/vespa.dmm b/maps/offmap_vr/om_ships/vespa.dmm
index d6a8f83197..6fe6a9831a 100644
--- a/maps/offmap_vr/om_ships/vespa.dmm
+++ b/maps/offmap_vr/om_ships/vespa.dmm
@@ -5237,7 +5237,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/expe/hangar)
"jV" = (
-/obj/machinery/suit_cycler/exploration,
/turf/simulated/floor/tiled/techfloor,
/area/ship/expe/hangarcontrol)
"jW" = (
diff --git a/maps/offmap_vr/talon/talon_v2.dmm b/maps/offmap_vr/talon/talon_v2.dmm
index 02291ceeea..2de130208f 100644
--- a/maps/offmap_vr/talon/talon_v2.dmm
+++ b/maps/offmap_vr/talon/talon_v2.dmm
@@ -2,6 +2,14 @@
"aa" = (
/turf/space,
/area/space)
+"ab" = (
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/passive/dog/corgi/puppy{
+ desc = "That's Hendrickson, warden of the Talon's brig. No schemes can escape the watchful gleam of this corgi's deep, dark eyes.";
+ name = "Hendrickson"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/brig)
"ac" = (
/obj/machinery/computer/ship/helm{
req_one_access = list(301)
@@ -59,6 +67,11 @@
},
/turf/simulated/floor/tiled/white,
/area/talon_v2/medical)
+"ai" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/under/syndicate/combat,
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
"aj" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/cable/green{
@@ -356,6 +369,14 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor/plating,
/area/talon_v2/engineering/star_store)
+"aM" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/shoes/magboots,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
"aN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -460,6 +481,24 @@
/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/talonboat)
+"aX" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/clothing/accessory/holster/waist,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
+"aY" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/netgun,
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
"aZ" = (
/obj/machinery/shipsensors{
dir = 1
@@ -479,6 +518,18 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/talon_v2/maintenance/wing_port)
+"bb" = (
+/obj/machinery/alarm/talon{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/table/rack/steel,
+/obj/item/device/spaceflare,
+/obj/machinery/camera/network/talon{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
"bc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -506,6 +557,20 @@
},
/turf/simulated/wall/shull,
/area/talon_v2/ofd_ops)
+"be" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/clothing/accessory/holster/waist,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
"bf" = (
/obj/structure/railing/grey,
/obj/machinery/light{
@@ -555,6 +620,11 @@
/obj/structure/closet/walllocker_double/hydrant/south,
/turf/simulated/floor/plating,
/area/talon_v2/engineering/atmospherics)
+"bj" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/gun,
+/turf/simulated/floor/tiled/techfloor,
+/area/talon_v2/armory)
"bn" = (
/obj/structure/hull_corner{
dir = 4
@@ -5809,21 +5879,6 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/talon_v2/engineering/atmospherics)
-"sv" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/item/weapon/cell/device/weapon,
-/obj/item/clothing/accessory/holster/waist,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"sw" = (
/obj/machinery/light_switch{
dir = 8;
@@ -7617,16 +7672,6 @@
},
/turf/simulated/floor/plating,
/area/talon_v2/engineering)
-"yq" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/syndicate/black,
-/obj/item/clothing/head/helmet/space/syndicate/black,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"yr" = (
/obj/effect/overmap/visitable/ship/talon,
/turf/space,
@@ -8062,11 +8107,6 @@
/obj/machinery/light,
/turf/simulated/floor/tiled/techmaint,
/area/talon_v2/central_hallway/port)
-"zL" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"zM" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/portable_atmospherics/canister/empty,
@@ -9175,21 +9215,6 @@
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/turf/simulated/floor/plating,
/area/talon_v2/engineering/starboard)
-"Ef" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/gun/burst,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/item/weapon/cell/device/weapon,
-/obj/item/clothing/accessory/holster/waist,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"Ei" = (
/obj/machinery/door/airlock/mining{
id_tag = "talon_minerdoor";
@@ -9472,15 +9497,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/talon_v2/bridge)
-"EV" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/shoes/leg_guard/combat,
-/obj/item/clothing/gloves/arm_guard/combat,
-/obj/item/clothing/under/syndicate/combat,
-/obj/item/clothing/suit/armor/combat,
-/obj/item/clothing/head/helmet/combat,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"EX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10548,22 +10564,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/talon_v2/central_hallway/star)
-"HV" = (
-/obj/machinery/alarm/talon{
- dir = 1;
- pixel_y = -25
- },
-/obj/structure/table/rack/steel,
-/obj/item/weapon/grenade/spawnergrenade/manhacks/mercenary{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/item/device/spaceflare,
-/obj/machinery/camera/network/talon{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"HW" = (
/obj/machinery/door/firedoor/glass/talon,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -12693,20 +12693,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/talon_v2/refining)
-"Oi" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -5;
- pixel_y = 2
- },
-/obj/item/weapon/cell/device/weapon,
-/obj/item/clothing/accessory/holster/waist,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"Oj" = (
/turf/simulated/wall/shull,
/area/talon_v2/armory)
@@ -13914,11 +13900,6 @@
},
/turf/simulated/floor/wood,
/area/talon_v2/crew_quarters/meditation)
-"Sa" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/gun,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"Sb" = (
/obj/structure/bed/chair/wood,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -14987,12 +14968,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/space)
-"Vv" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/accessory/holster/machete,
-/obj/item/weapon/material/knife/machete,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/armory)
"Vw" = (
/obj/structure/cable/green{
d1 = 1;
@@ -15949,14 +15924,6 @@
"Yu" = (
/turf/simulated/wall/rshull,
/area/talon_v2/maintenance/wing_port)
-"Yv" = (
-/mob/living/simple_mob/animal/passive/dog/corgi/puppy{
- desc = "That's Hendrickson, warden of the Talon's brig. No schemes can escape the watchful gleam of this corgi's deep, dark eyes.";
- name = "Hendrickson"
- },
-/obj/structure/dogbed,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon_v2/brig)
"Yw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -24250,7 +24217,7 @@ Si
Oj
PC
OP
-Vv
+Qu
OP
Qu
Zc
@@ -24658,7 +24625,7 @@ XQ
Xm
db
qm
-Yv
+ab
rq
tA
uF
@@ -24674,11 +24641,11 @@ NW
Rp
Si
Nh
-EV
+ai
OP
-yq
+aM
OP
-HV
+bb
Zc
ZB
Jv
@@ -24958,11 +24925,11 @@ NW
Rp
Si
Nh
-sv
+Qu
OP
-Oi
+aX
OP
-Ef
+be
Zc
BI
Ds
@@ -25100,11 +25067,11 @@ Dd
Ew
eS
Oj
-zL
+Qu
SN
-zL
+aY
XW
-Sa
+bj
Zc
WY
Ds
diff --git a/maps/southern_cross/datums/supplypacks/munitions.dm b/maps/southern_cross/datums/supplypacks/munitions.dm
index 143810ff57..7a84d9b719 100644
--- a/maps/southern_cross/datums/supplypacks/munitions.dm
+++ b/maps/southern_cross/datums/supplypacks/munitions.dm
@@ -12,7 +12,7 @@
cost = 50
containertype = /obj/structure/closet/crate/secure/hedberg
containername = "Hunting Rifle crate"
- access = access_explorer
+ access = access_explorer //CHOMP keep explo
/datum/supply_pack/munitions/phase_carbines_explorer
name = "Weapons - Surplus Phase Carbines"
@@ -22,7 +22,7 @@
cost = 25
containertype = /obj/structure/closet/crate/secure/ward
containername = "Phase Carbine crate"
- access = access_explorer
+ access = access_explorer //CHOMP keep explo
/datum/supply_pack/munitions/phase_rifles_explorer
name = "Weapons - Phase Rifles"
@@ -32,4 +32,4 @@
cost = 50
containertype = /obj/structure/closet/crate/secure/ward
containername = "Phase Rifle crate"
- access = access_explorer
\ No newline at end of file
+ access = access_explorer //CHOMP keep explo
diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm
index 439dd12c42..8c49169831 100644
--- a/maps/southern_cross/southern_cross-1.dmm
+++ b/maps/southern_cross/southern_cross-1.dmm
@@ -10,9 +10,9 @@
"aaj" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aak" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/space,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"aal" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/space,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"aam" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"aam" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"aan" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/space,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"aao" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/space,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"aao" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aap" = (/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/auxdockfore)
"aaq" = (/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/space,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"aar" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/space,/turf/simulated/floor/tiled,/area/hangar/two)
@@ -21,13 +21,13 @@
"aau" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aav" = (/obj/machinery/light/spot{dir = 4},/turf/space,/turf/simulated/floor/plating,/area/hangar/two)
"aaw" = (/obj/effect/landmark/event_spawn/morphspawn,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
-"aax" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"aax" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"aaz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/wingrille_spawn/reinforced,/turf/space,/turf/simulated/floor,/area/hallway/primary/firstdeck/auxdockaft)
"aaA" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"aaC" = (/obj/structure/table/standard,/obj/item/bodybag/cryobag,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/white,/area/shuttle/large_escape_pod2/station)
"aaD" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
-"aaF" = (/obj/effect/floor_decal/steeldecal/monofloor{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"aaG" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/machinery/turretid/stun{check_access = 0; check_anomalies = 0; check_down = 0; check_records = 0; pixel_x = 27; pixel_y = 6; req_access = null; req_one_access = list(1,19)},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"aaF" = (/obj/effect/floor_decal/steeldecal/monofloor{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"aaG" = (/obj/machinery/turretid/stun{check_access = 0; check_anomalies = 0; check_down = 0; check_records = 0; pixel_y = 6; req_access = null; req_one_access = list(1,19)},/turf/simulated/wall/r_wall,/area/teleporter/firstdeck)
"aaM" = (/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod2/station)
"aaN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/first_deck{c_tag = "Hangar Two - Fore Port"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"aaQ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/teleporter/firstdeck)
@@ -75,9 +75,9 @@
"acx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_port)
"acy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_port)
"acz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/escape/firstdeck/ep_port)
-"acC" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"acD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/glass{name = "Weapon Storage"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
-"acE" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/monotile,/area/hangar/lockerroomone)
+"acC" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"acD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"acE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/monotile,/area/hangar/lockerroomone)
"acF" = (/obj/structure/table/bench/standard,/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Fore Hallway 5"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/auxdockfore)
"acG" = (/turf/simulated/floor/airless,/area/hallway/primary/firstdeck/auxdockfore)
"acH" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/auxdockfore)
@@ -107,7 +107,7 @@
"adO" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"adP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"adQ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"adR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
+"adR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"adS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"adT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"adV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
@@ -124,7 +124,7 @@
"aen" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"aeo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"aer" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
-"aes" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
+"aes" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Cargo Hallway"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/hallway)
"aet" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"aeu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"aew" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
@@ -140,7 +140,7 @@
"aeY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"aeZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/station_map{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"afb" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Port Hallway 3"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"afd" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"afd" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"afk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"afl" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"afm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
@@ -158,7 +158,7 @@
"afL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/hangar/two)
"afN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"afR" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockfore)
-"afV" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"afV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"afX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"afY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"afZ" = (/obj/structure/sign/greencross{desc = "White cross in a green field, you can get medical aid here."; name = "First-Aid"},/turf/simulated/wall,/area/medical/first_aid_station/firstdeck)
@@ -205,7 +205,7 @@
"ahy" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"ahA" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod2/station)
"ahC" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/structure/closet/secure_closet/security,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/security{c_tag = "CP - Office"; dir = 1},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"ahF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"ahF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"ahH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/mob/mouse,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"ahK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d1fore_port2_inner"; locked = 1; name = "Dock Internal Airlock"; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/auxdockfore)
"ahN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva/aux)
@@ -247,18 +247,18 @@
"ajd" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/firstdeck/foreport)
"ajn" = (/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"ajt" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/construction/firstdeck)
-"ajy" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/mining{name = "Mining Locker Room"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/mininglockerroom)
+"ajy" = (/obj/machinery/ai_status_display{pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled,/area/quartermaster/storage)
"ajz" = (/turf/simulated/wall,/area/tcomm/tcomfoyer)
"ajD" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"ajE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"ajM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"ajS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/apcenter)
-"ajZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/quartermaster/hallway)
-"aka" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
-"akc" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/belt/utility,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
+"ajZ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"aka" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/quartermaster/hallway)
+"akc" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/mininglockerroom)
"akd" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Locker Room"; dir = 1; name = "security camera"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
"ake" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
-"akf" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Shaft Miner"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
+"akf" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/structure/table/rack{dir = 1},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
"akg" = (/obj/structure/reagent_dispensers/foam,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aki" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"akk" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/ascenter)
@@ -269,10 +269,10 @@
"aky" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d1fore_port2_airlock"; pixel_y = -26; req_access = list(13); tag_airpump = "d1fore_port2_pump"; tag_chamber_sensor = "d1fore_port2_sensor"; tag_exterior_door = "d1fore_port2_outer"; tag_interior_door = "d1fore_port2_inner"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "d1fore_port2_pump"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/hallway/primary/firstdeck/auxdockfore)
"akH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"akN" = (/turf/simulated/wall,/area/construction/firstdeck/construction1)
-"akP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"akQ" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
-"akR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"akS" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 36},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"akP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"akQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"akR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"akS" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"akV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"akY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/mining{name = "Mining Locker Room"; req_access = list(50)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/mininglockerroom)
"akZ" = (/turf/simulated/wall/r_wall,/area/tcomm/entrance)
@@ -289,7 +289,7 @@
"alx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck)
"alz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access = list(32)},/turf/simulated/floor/plating,/area/construction/firstdeck/construction1)
"alC" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"alE" = (/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"alE" = (/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"alF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"alG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/green/bordercorner2,/obj/effect/floor_decal/corner/green/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"alI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
@@ -329,7 +329,7 @@
"anG" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"anH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"anI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/construction/firstdeck/construction2)
-"anL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"anL" = (/obj/structure/table/steel,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"anM" = (/turf/simulated/wall,/area/construction/firstdeck/construction2)
"anO" = (/obj/effect/floor_decal/rust,/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/firstdeck/aftport)
"anP" = (/obj/structure/closet/crate,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/assembly/prox_sensor,/obj/item/device/flashlight,/obj/item/weapon/storage/backpack,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
@@ -366,11 +366,11 @@
"apV" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/tcomm/entrance)
"apY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/tcomm/tcomfoyer)
"aqa" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/ascenter)
-"aqc" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"aqc" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aqd" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aqe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aqg" = (/obj/structure/closet,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled,/area/hangar/two)
-"aqh" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
+"aqh" = (/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftport)
"aqi" = (/obj/structure/table/steel,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"aqk" = (/obj/machinery/computer/arcade/clawmachine,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aql" = (/turf/simulated/wall,/area/hangar/lockerroomtwo)
@@ -387,9 +387,9 @@
"aqN" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fore_emergency)
"aqO" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fore_emergency)
"aqP" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fore_emergency)
-"aqR" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Hallway"; req_access = list(50)},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/hallway)
-"aqT" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Hallway"; req_access = list(50)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/hallway)
-"aqU" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/hallway)
+"aqR" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Maintenance"; req_access = list(50)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/hallway)
+"aqT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"aqU" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_mining{name = "Cargo Hallway"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/hallway)
"aqW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass{name = "Auxiliary Dock"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/firstdeck/auxdockfore)
"aqX" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/auxdockfore)
"arc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Auxiliary Dock"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/firstdeck/auxdockfore)
@@ -404,7 +404,7 @@
"arW" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"arX" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore)
"asb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled,/area/hangar/two)
-"asc" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/cargo,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/quartermaster/storage)
+"asc" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/cargo,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"asl" = (/obj/structure/stairs/spawner/east,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore)
"asm" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod1/station)
"asn" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_1_hatch"; locked = 1; name = "Escape Pod 1 Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod1/station)
@@ -425,11 +425,10 @@
"asT" = (/obj/machinery/airlock_sensor{id_tag = "d1fore_starboard_sensor"; pixel_x = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "d1fore_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
"asU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/forestarboard)
"asV" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/foreport)
-"ata" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"atd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"ati" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage)
"atm" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/port)
-"atp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"atp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"atu" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/tcomm/entrance)
"aty" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/ascenter)
"atC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
@@ -440,10 +439,10 @@
"atV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "d1fore_port_pump"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"atX" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/foreport)
"atZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/storage)
-"auh" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
-"aui" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hallway)
+"auh" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/door/blast/regular{id = "qpwld"; name = "Checkpoint Lockdown"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"aui" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"auj" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"auk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"auk" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aum" = (/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
"aun" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
"auo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
@@ -470,7 +469,7 @@
"avy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"avB" = (/obj/machinery/light{dir = 4},/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"avC" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/quartermaster/hallway)
-"avD" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"avD" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/hallway)
"avE" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/machinery/newscaster{pixel_y = -30},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/item/weapon/storage/box/nifsofts_mining,/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
"avF" = (/obj/structure/table/steel,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = -32},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
"avI" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fore_emergency)
@@ -515,7 +514,7 @@
"axQ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Fore Hallway 3"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"axR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fore)
"axS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
-"ayb" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
+"ayb" = (/obj/machinery/light/small{dir = 1},/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"ayc" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/ascenter)
"ayf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"ayg" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
@@ -550,15 +549,14 @@
"aAn" = (/obj/structure/table/glass,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/pill_bottle/spaceacillin,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
"aAq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/apcenter)
"aAs" = (/obj/structure/door_assembly/door_assembly_ext,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
-"aAu" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
-"aAy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"aAu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aAz" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor,/area/tcomm/tcomstorage)
"aAA" = (/turf/simulated/wall/r_wall,/area/tcomm/tcomstorage)
"aAB" = (/obj/structure/table/standard,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/ascenter)
"aAG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d1fore_starboard_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
"aAJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = -6},/turf/simulated/floor/tiled,/area/hangar/two)
"aAK" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/teleporter/firstdeck)
-"aAL" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Hallway"; dir = 1; name = "security camera"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"aAL" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Hallway"; dir = 1; name = "security camera"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"aAN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"aAW" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/forestarboard)
"aAX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
@@ -576,7 +574,7 @@
"aBk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fore)
"aBl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"aBt" = (/turf/simulated/wall/r_wall,/area/quartermaster/hallway)
-"aBx" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -36},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
+"aBx" = (/obj/machinery/door/airlock/mining{name = "Mining Locker Room"; req_access = list(50)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/mininglockerroom)
"aBy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"aBz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"aBA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
@@ -734,7 +732,7 @@
"aJY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"aJZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/green/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"aKa" = (/turf/simulated/floor/tiled,/area/quartermaster/storage)
-"aKb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
+"aKb" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
"aKj" = (/turf/simulated/wall,/area/hangar/two)
"aKm" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"aKn" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
@@ -840,7 +838,7 @@
"aOv" = (/obj/effect/floor_decal/borderfloorblack/corner,/obj/effect/floor_decal/industrial/danger/corner,/turf/simulated/floor/tiled/steel,/area/hangar/three)
"aOw" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/hangar/three)
"aOF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftport)
-"aPa" = (/obj/structure/sign/hangar/one,/turf/simulated/wall,/area/hangar/lockerroomone)
+"aPa" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"aPd" = (/turf/simulated/floor/reinforced,/area/quartermaster/storage)
"aPe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"aPg" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/industrial/danger,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hangar/three)
@@ -873,6 +871,7 @@
"aRa" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled,/area/hangar/two)
"aRd" = (/obj/machinery/newscaster{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"aRf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
+"aRh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "qpdoorin"; name = "Inner Checkpoint Airlock"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"aRl" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "exp_sling_hatch"; locked = 1; name = "Carrier Sling Hatch"; req_access = list(); req_one_access = list(5,43,67)},/turf/simulated/shuttle/floor/darkred,/area/shuttle/expoutpost/station)
"aRr" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint3)
"aRs" = (/obj/effect/shuttle_landmark/southern_cross/sling_station,/turf/simulated/shuttle/floor/darkred,/area/shuttle/expoutpost/station)
@@ -896,7 +895,6 @@
"aSH" = (/obj/machinery/newscaster,/turf/simulated/wall/r_wall,/area/storage/tech)
"aSP" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/hallway/primary/firstdeck/auxdockaft)
"aSU" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock External Airlock"; req_one_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/auxdockaft)
-"aSV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aTh" = (/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/auxdockaft)
"aTi" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock External Airlock"; req_one_access = list(13)},/obj/machinery/access_button{master_tag = null; name = "exterior access button"; pixel_x = -27; pixel_y = -7},/obj/effect/map_helper/airlock/button/ext_button,/obj/effect/map_helper/airlock/door/ext_door,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/auxdockaft)
"aTj" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
@@ -979,7 +977,7 @@
"aWn" = (/obj/structure/bed/chair/shuttle{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/shuttle/expoutpost/station)
"aWq" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/effect/shuttle_landmark/southern_cross/escape_pod3/station,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station)
"aWu" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/light,/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "exp_sling"; name = "shuttle bay controller"; pixel_y = -26; tag_door = "exp_sling_hatch"},/turf/simulated/shuttle/floor/darkred,/area/shuttle/expoutpost/station)
-"aWv" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
+"aWv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aWw" = (/turf/space,/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/auxdockaft)
"aXT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"aYb" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "large_escape_pod_1_hatch"; locked = 1; name = "Large Escape Pod Hatch 1"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station)
@@ -1031,16 +1029,16 @@
"brr" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod5/station)
"brx" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/teleporter/firstdeck)
"brP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atm{pixel_y = -30},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
-"brQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"brQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"bsm" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/reinforced,/area/hangar/two)
"btl" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"bwf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"bwf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"bwS" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_5_berth_hatch"; locked = 1; name = "Escape Pod 5"; req_access = list(13)},/turf/simulated/floor,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"byQ" = (/obj/machinery/light/spot,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled/steel,/area/quartermaster/storage)
"bzn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/status_display/supply_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Bay Aft"; dir = 1; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"bzX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/storage)
"bBA" = (/obj/structure/table/steel,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
-"bBI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"bBI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"bBQ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"bCF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"bCN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/storage)
@@ -1048,7 +1046,6 @@
"bDS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/tcomm/entrance)
"bEi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"bEm" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Cargo Maintenance"; req_access = list(31)},/turf/simulated/floor/plating,/area/quartermaster/storage)
-"bEo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"bEr" = (/turf/simulated/wall,/area/storage/emergency_storage/firstdeck/fp_emergency)
"bFg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"bFo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
@@ -1068,11 +1065,12 @@
"bLF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage)
"bLW" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "large_escape_pod_1"; pixel_x = -26; pixel_y = 26; tag_door = "large_escape_pod_1_hatch"},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station)
"bMc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Auxiliary Engineering Station"; req_one_access = list(11,24)},/turf/simulated/floor/tiled,/area/engineering/auxiliary_engineering)
-"bMq" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"bMq" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"bMw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/nuke_storage)
"bMN" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/engineering/auxiliary_engineering)
"bMX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"bNe" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
+"bNT" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/teleporter/firstdeck)
"bOw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "TCOMMS - SMES Room"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/tcomm/tcomfoyer)
"bON" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/animal/passive/mouse/brown/Tom,/turf/simulated/floor/tiled/dark,/area/security/nuke_storage)
"bOS" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
@@ -1109,11 +1107,10 @@
"cfo" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"cfp" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"cfU" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/holofloor/tiled/dark,/area/teleporter/firstdeck)
-"chy" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"chy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "qpdoorout"; name = "Outer Checkpoint Airlock"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"chC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"chO" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/aft_emergency)
"chQ" = (/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 1},/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/firstdeck/auxdockaft)
-"cif" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftport)
"cio" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"ciw" = (/obj/machinery/door/airlock/glass{name = "Escape Pod"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"ciy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
@@ -1136,7 +1133,7 @@
"cpG" = (/obj/item/stack/cable_coil/random,/turf/simulated/floor/tiled,/area/construction/firstdeck/construction5)
"cpH" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/construction/firstdeck/construction5)
"cpU" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet/firstdeck)
-"cqF" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
+"cqF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"cqN" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet/firstdeck)
"crG" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"csE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fore)
@@ -1153,7 +1150,7 @@
"cxr" = (/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fs_emergency)
"cxz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fs_emergency)
"cys" = (/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"cyK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southright{dir = 4; req_access = null; req_one_access = list(1,19)},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{id = "qpwld"; name = "Checkpoint Lockdown"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"cyK" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"cyL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"cyY" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fs_emergency)
"cze" = (/obj/structure/closet/emcloset,/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_starboard)
@@ -1171,7 +1168,7 @@
"cFh" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/obj/item/device/radio/intercom/department/security{dir = 8; icon_override = "secintercom"; pixel_x = -21},/obj/structure/table/reinforced,/obj/machinery/recharger/wallcharger{pixel_x = 5; pixel_y = 33},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"cGE" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/teleporter/firstdeck)
"cHp" = (/obj/structure/bed/chair/sofa{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/teleporter/firstdeck)
-"cIq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"cIq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/computer/security{pixel_x = 5; pixel_y = 9},/obj/machinery/button/remote/blast_door{id = "qpwld"; name = "Desk Lockdown"; pixel_x = -4; pixel_y = 24; req_one_access = list(1,19)},/obj/machinery/button/remote/blast_door{id = "qpdld"; name = "Door Lockdown"; pixel_x = 5; pixel_y = 24; req_one_access = list(1,19)},/obj/machinery/button/flasher{id = "gatewaycheckpointflash"; name = "Gateway Checkpoint flasher button"; pixel_x = 17; pixel_y = 22; req_one_access = list(1,19)},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"cIr" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"cJx" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage)
"cLm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/elevator)
@@ -1188,9 +1185,9 @@
"cUb" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/firstdeck/ascenter)
"cUu" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"cVA" = (/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
-"cVJ" = (/obj/machinery/button/remote/airlock{id = "qpdoorout"; name = "Outer Door Control"; pixel_x = -1; pixel_y = 35; req_one_access = list(1,19)},/obj/machinery/computer/secure_data{pixel_y = 9},/obj/machinery/button/remote/airlock{id = "qpdoorin"; name = "Inner Door Control"; pixel_x = 8; pixel_y = 35; req_one_access = list(1,19)},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/button/remote/airlock{id = "qpdoorout"; name = "Outer Door Bolts"; pixel_x = -1; pixel_y = 24; req_one_access = list(1,19); specialfunctions = 4},/obj/machinery/button/remote/airlock{id = "qpdoorin"; name = "Inner Door Bolts"; pixel_x = 8; pixel_y = 24; req_one_access = list(1,19); specialfunctions = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"cVJ" = (/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio/phone{pixel_y = 3},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/blast/regular{id = "qpwld"; name = "Checkpoint Lockdown"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"cWs" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"cXx" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"cXx" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"cYg" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
"cZt" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/firstdeck/fp_emergency)
"cZV" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/construction/firstdeck/construction5)
@@ -1210,7 +1207,7 @@
"dgA" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/light/small,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"dgD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/apcenter)
"dgH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
-"dix" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"dix" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southright{dir = 4; req_access = null; req_one_access = list(1,19)},/obj/machinery/door/blast/regular{id = "qpwld"; name = "Checkpoint Lockdown"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"djy" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"dkj" = (/turf/simulated/wall,/area/hangar/three)
"dko" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/empty,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
@@ -1246,15 +1243,16 @@
"dAK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/computer/shutoff_monitor{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"dBE" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora_isolation)
"dBI" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/firstdeck/ascenter)
-"dDr" = (/obj/machinery/flasher,/obj/effect/floor_decal/steeldecal/monofloor{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"dDr" = (/obj/machinery/flasher{id = "gatewaycheckpointflash"; name = "Gateway Checkpoint Mounted flash"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/monotile,/area/teleporter/firstdeck)
"dEi" = (/obj/effect/floor_decal/spline/fancy,/obj/machinery/camera/network/security{c_tag = "CP - Lounge"; dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/teleporter/firstdeck)
-"dEs" = (/obj/machinery/camera/network/first_deck{c_tag = "Hangar Two - Exploration Locker Room Two"; dir = 4},/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/machinery/alarm{pixel_y = 22},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/turf/simulated/floor/tiled,/area/hangar/lockerroomtwo)
+"dEs" = (/obj/machinery/camera/network/first_deck{c_tag = "Hangar Two - Exploration Locker Room Two"; dir = 4},/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/machinery/alarm{pixel_y = 22},/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/tiled,/area/hangar/lockerroomtwo)
"dFO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
"dGO" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"dHq" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
"dHF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"dIq" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
"dIE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/monotile,/area/hangar/two)
+"dIL" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"dKj" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/fore)
"dLu" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"dMd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage)
@@ -1265,7 +1263,6 @@
"dPz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore)
"dPJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"dPM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fore)
-"dRm" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"dRv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore)
"dRz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"dRD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/flora/pottedplant/drooping,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore)
@@ -1293,7 +1290,7 @@
"dVP" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
"dVQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"dVT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"dVU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Checkpoint Prep Room"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"dVU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Checkpoint Prep Room"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"dVV" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/holofloor/tiled/dark,/area/teleporter/firstdeck)
"dVW" = (/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
"dVX" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/fp_emergency)
@@ -1377,7 +1374,7 @@
"dXO" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/hydroponics/prespawned,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
"dXP" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
"dXQ" = (/obj/machinery/atmospherics/binary/pump{name = "Isolation to Waste"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora_isolation)
-"dXR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"dXR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"dXU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"dXV" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"dXW" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fpcenter)
@@ -1443,9 +1440,9 @@
"dZu" = (/obj/machinery/door/airlock/security{name = "Checkpoint Office"; req_one_access = list(1,19)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"dZv" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/teleporter/firstdeck)
"dZw" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"dZx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"dZx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"dZy" = (/obj/structure/table/rack/shelf,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"dZz" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"dZz" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"dZB" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/holofloor/tiled/dark,/area/teleporter/firstdeck)
"dZF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"dZH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/random/maintenance/cargo,/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/firstdeck/foreport)
@@ -1514,7 +1511,7 @@
"edO" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/firstdeck/elevator)
"edU" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Central Ring 8"; dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/apcenter)
"eeh" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
-"eew" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/status_display{pixel_y = 31},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"eew" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/status_display{pixel_y = 31},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"eeZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod3/station)
"efa" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"efm" = (/obj/structure/table/rack/shelf,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
@@ -1546,7 +1543,7 @@
"eyD" = (/obj/effect/floor_decal/borderfloor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/green/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
"eyJ" = (/obj/effect/floor_decal/borderfloor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/green/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
"eyQ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"ezu" = (/obj/machinery/door/airlock/multi_tile/glass{id_tag = "qpdoorout"; name = "Checkpoint Booth"},/obj/machinery/door/firedoor/multi_tile,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"ezu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"eAy" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/green/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"eAA" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/hallway/primary/firstdeck/auxdockaft)
"eBp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
@@ -1564,7 +1561,7 @@
"eHM" = (/turf/simulated/wall/r_wall,/area/rnd/research/firstdeck/hallway)
"eIS" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/auxdockaft)
"eKz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/elevator)
-"eKA" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"eKA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"eKQ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/botanydisk,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"ePU" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"eQn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/vending/fitness{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/elevator)
@@ -1623,13 +1620,14 @@
"fxu" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/hand_labeler,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fyf" = (/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora Port"; dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fzd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftport)
+"fzF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"fAV" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/elevator)
"fBA" = (/turf/simulated/shuttle/wall/no_join{base_state = "orange"; icon = 'icons/turf/shuttle_orange.dmi'; icon_state = "orange"},/area/shuttle/escape_pod4/station)
"fBB" = (/obj/structure/table/glass,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fCy" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/auxdockaft)
"fCA" = (/obj/structure/closet/l3closet/general,/obj/structure/extinguisher_cabinet{pixel_x = 28},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology)
"fCD" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_4_berth_hatch"; locked = 1; name = "Escape Pod 4"; req_access = list(13)},/turf/simulated/floor,/area/hallway/secondary/escape/firstdeck/ep_aftport)
-"fCU" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
+"fCU" = (/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"fDI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/valve/shutoff{name = "Deck 1 Aft Port automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"fEB" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fFB" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/hydro,/area/rnd/xenobiology/xenoflora)
@@ -1638,14 +1636,14 @@
"fHj" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/button/remote/blast_door{id = "xenobio3station"; name = "Containment Blast Doors"; pixel_y = 4; req_access = list(55)},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology)
"fHQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/hydro,/area/rnd/xenobiology/xenoflora)
"fHV" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
-"fID" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"fID" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{id_tag = "qpdoorout"; name = "Outer Checkpoint Airlock"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"fKj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft)
"fKK" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fKT" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"fLW" = (/obj/machinery/vending/hydronutrients{categories = 3; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fLZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"fMR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology)
-"fMV" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"fMV" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"fNk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"fOk" = (/obj/machinery/bluespace_beacon,/turf/simulated/floor/tiled,/area/tcomm/entrance)
"fPg" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod2/station)
@@ -1662,7 +1660,7 @@
"fXf" = (/obj/structure/closet/secure_closet/hydroponics{req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/light,/obj/item/weapon/gun/energy/floragun,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fXY" = (/obj/structure/closet/secure_closet/hydroponics{req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/item/device/multitool,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
"fYh" = (/obj/structure/closet/emcloset/legacy,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora)
-"fYU" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"fYU" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"fZp" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/obj/machinery/meter,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
"fZr" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology)
"fZV" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Port to Isolation"},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
@@ -1712,7 +1710,7 @@
"gDz" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
"gDB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"gEe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
-"gEu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Checkpoint Lounge"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"gEu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Checkpoint Lounge"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"gGZ" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
"gHQ" = (/obj/machinery/status_display,/turf/simulated/wall,/area/rnd/xenobiology/xenoflora)
"gIx" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora)
@@ -1720,8 +1718,8 @@
"gIW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora)
"gJs" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology/xenoflora)
"gKh" = (/obj/structure/disposalpipe/segment,/obj/machinery/smartfridge/produce,/turf/simulated/wall,/area/rnd/xenobiology/xenoflora)
-"gLc" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/device/radio/phone{pixel_y = 3},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{id = "qpwld"; name = "Checkpoint Lockdown"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"gMA" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"gLc" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"gMA" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"gMT" = (/obj/machinery/ai_status_display,/turf/simulated/wall,/area/rnd/xenobiology/xenoflora)
"gNJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/item/weapon/tool/wrench,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
"gNX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
@@ -1735,7 +1733,7 @@
"gSH" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"gSQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/ascenter)
"gTW" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
-"gUX" = (/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage)
+"gUX" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"gXH" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora Isolation Aft"; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora_isolation)
"gXO" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_isolation)
"gYy" = (/turf/simulated/wall,/area/security/checkpoint3)
@@ -1743,7 +1741,7 @@
"gYF" = (/obj/structure/grille,/obj/structure/shuttle/window,/turf/simulated/shuttle/plating,/area/shuttle/large_escape_pod2/station)
"hak" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/ap_emergency)
"hen" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/shuttle/floor/white,/area/shuttle/large_escape_pod2/station)
-"hfa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"hfa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"hga" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"hgs" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/storage/tech)
"hhi" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fpcenter)
@@ -1795,7 +1793,7 @@
"hLA" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"hLP" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"hMY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Auxiliary Docking 1"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"hND" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
+"hND" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"hOg" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/light/spot{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hangar/three)
"hPc" = (/obj/effect/floor_decal/borderfloorblack/corner{dir = 8},/obj/effect/floor_decal/industrial/danger/corner{dir = 1},/turf/simulated/floor/tiled,/area/hangar/two)
"hQB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
@@ -1806,6 +1804,7 @@
"hVl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"hVG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"hWP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
+"hZj" = (/obj/effect/landmark/start{name = "Shaft Miner"},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
"hZI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"iaf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/airlock_sensor{id_tag = null; pixel_y = 27},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"icj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/camera/network/research{c_tag = "SCI - First Deck Research Hallway Port 2"},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
@@ -1841,10 +1840,10 @@
"iBV" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor/white,/area/shuttle/large_escape_pod2/station)
"iCi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"iCq" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"iCS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"iCS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"iDD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
-"iDI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"iEp" = (/obj/machinery/door/airlock/multi_tile/glass{id_tag = "qpdoorin"; name = "Processing Booth"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/machinery/door/firedoor/multi_tile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"iDI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"iEp" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"iFn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"iFo" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"iGC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
@@ -1852,6 +1851,7 @@
"iHP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"iIr" = (/obj/structure/bed/chair,/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/shuttle/floor/white,/area/shuttle/large_escape_pod2/station)
"iIP" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fpcenter)
+"iJE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Quantum Checkpoint Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"iKg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fpcenter)
"iLt" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/firstdeck)
"iMu" = (/obj/structure/sign/warning/pods{dir = 1},/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
@@ -1865,13 +1865,14 @@
"iQH" = (/obj/structure/table/steel,/obj/item/clothing/accessory/collar/spike,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"iRg" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_inner"; locked = 1; name = "Telecoms Server Access"; req_access = list(61); req_one_access = list(61)},/turf/simulated/floor/plating,/area/tcomm/computer)
"iRz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/spot,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/brown/bordercorner2,/turf/simulated/floor/tiled,/area/quartermaster/storage)
+"iTC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"iUg" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/light/small,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/tcomm/computer)
"iUl" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/tcomm/computer)
"iUo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/apcenter)
"iUT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
"iWf" = (/obj/structure/table/standard,/obj/item/device/starcaster_news,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/apcenter)
"iWm" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
-"iXh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"iXh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"iXF" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"iXQ" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/apcenter)
"jbn" = (/obj/structure/closet/crate,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/double,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
@@ -1879,7 +1880,7 @@
"jcS" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/auxdockaft)
"jdd" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"jdY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hangar/three)
-"jfT" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/quartermaster/mininglockerroom)
+"jfT" = (/obj/structure/closet/secure_closet/explorer,/obj/item/device/cataloguer,/obj/item/weapon/melee/umbrella/random,/obj/item/device/binoculars,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
"jgn" = (/obj/effect/floor_decal/borderfloorblack/corner{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/turf/simulated/floor/tiled,/area/hangar/three)
"jgE" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for a door to space."; id = "xenobiostationext"; name = "Containment Release Switch"; pixel_x = 28; req_access = list(55)},/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/floor_decal/corner_steel_grid/full{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
"jgW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/quartermaster/storage)
@@ -1981,13 +1982,13 @@
"knL" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber)
"kpe" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"krv" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/tcomm/computer)
-"krK" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/camera/network/security{c_tag = "CP - Quantum Pad"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"krK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"ksz" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_outer"; locked = 1; name = "Telecoms Server Access"; req_access = list(61); req_one_access = list(61)},/turf/simulated/floor/plating,/area/tcomm/computer)
"ksN" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/tcomm/computer)
"kto" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"ktw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
"ktU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
-"kwi" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
+"kwi" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/random/tool/powermaint,/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"kwt" = (/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/centralport)
"kxn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fscenter)
"kxp" = (/obj/structure/closet/malf/suits,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/tcomm/entrance)
@@ -2027,16 +2028,16 @@
"lcf" = (/turf/simulated/floor/tiled/steel_grid,/area/rnd/research/firstdeck/hallway)
"lch" = (/obj/machinery/ai_status_display{pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftport)
"lci" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
-"lcw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"lcw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/teleporter/firstdeck)
"lcJ" = (/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"ler" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"leD" = (/obj/effect/floor_decal/steeldecal/monofloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"leD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"lfT" = (/obj/structure/table/glass,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
"lgq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hangar/two)
"lhC" = (/obj/structure/closet/wardrobe/science_white,/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
"lhU" = (/obj/machinery/washing_machine,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/rnd/research/firstdeck/hallway)
"ljf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Research Maintenance Access"; req_one_access = list(47)},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/rnd/research/firstdeck/hallway)
-"ljF" = (/obj/structure/stairs/spawner/west,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"ljF" = (/obj/structure/stairs/spawner/west,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"ljU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"lkk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"lkw" = (/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
@@ -2053,7 +2054,7 @@
"lsf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"lsJ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/xenobiology)
"lun" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
-"lvn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"lvn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"lvp" = (/obj/effect/floor_decal/borderfloorblack/corner{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/turf/simulated/floor/tiled,/area/hangar/two)
"lvX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
"lxF" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
@@ -2064,7 +2065,7 @@
"lEA" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
"lEZ" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/green/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"lFk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "First Deck Utility Access"; req_one_access = list(11,19,24)},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck)
-"lFP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
+"lFP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"lGa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck)
"lGZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck)
"lIC" = (/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station)
@@ -2091,7 +2092,7 @@
"lYa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftport)
"lYh" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/apcenter)
"lYB" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tcomm/computer)
-"lZY" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tool/powermaint,/turf/simulated/floor,/area/construction/firstdeck/construction2)
+"lZY" = (/turf/simulated/floor,/area/construction/firstdeck/construction2)
"lZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"mav" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/turretid/stun{check_records = 0; control_area = "\improper Telecomms Teleporter"; name = "Telecomms Teleporter turret control"; pixel_x = 28; req_access = list(17)},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/elevator)
"mdb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/monotile,/area/hangar/two)
@@ -2152,7 +2153,7 @@
"mIU" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"mJG" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"mJJ" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/steel,/area/construction/firstdeck/construction3)
-"mKw" = (/obj/machinery/computer/security{pixel_x = 5; pixel_y = 9},/obj/machinery/button/remote/blast_door{id = "qpwld"; name = "Desk Lockdown"; pixel_x = -4; pixel_y = 24; req_one_access = list(1,19)},/obj/machinery/button/remote/blast_door{id = "qpdld"; name = "Door Lockdown"; pixel_x = 5; pixel_y = 24; req_one_access = list(1,19)},/obj/machinery/button/flasher{pixel_x = 17; pixel_y = 22; req_one_access = list(1,19)},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"mKw" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/computer/secure_data{pixel_y = 9},/obj/machinery/button/remote/airlock{id = "qpdoorout"; name = "Outer Door Control"; pixel_x = -1; pixel_y = 35; req_one_access = list(1,19)},/obj/machinery/button/remote/airlock{id = "qpdoorin"; name = "Inner Door Control"; pixel_x = 8; pixel_y = 35; req_one_access = list(1,19)},/obj/machinery/button/remote/airlock{id = "qpdoorout"; name = "Outer Door Bolts"; pixel_x = -1; pixel_y = 24; req_one_access = list(1,19); specialfunctions = 4},/obj/machinery/button/remote/airlock{id = "qpdoorin"; name = "Inner Door Bolts"; pixel_x = 8; pixel_y = 24; req_one_access = list(1,19); specialfunctions = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"mKZ" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/construction/firstdeck/construction1)
"mLD" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tcomm/entrance)
"mMT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
@@ -2198,7 +2199,7 @@
"nhk" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille/broken,/obj/item/weapon/material/shard{icon_state = "medium"},/obj/item/weapon/material/shard,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
"nhA" = (/turf/simulated/wall/r_wall,/area/maintenance/firstdeck/aftstarboard)
"nip" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
-"niZ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"niZ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"njj" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
"njm" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"njZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard)
@@ -2232,11 +2233,11 @@
"nHZ" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/hangar/two)
"nJP" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/apcenter)
"nKT" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
-"nNo" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"nNo" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"nNZ" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"nPX" = (/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Research Access Hallway"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"nQI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
-"nRa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"nRa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"nRi" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"nSk" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"nSt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/elevator)
@@ -2264,7 +2265,7 @@
"ojA" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/full,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "xenobio6station"; name = "Containment Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/rnd/xenobiology)
"okX" = (/turf/simulated/wall,/area/rnd/xenobiology)
"oll" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced/full,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "xenobio5station"; name = "Containment Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/rnd/xenobiology)
-"olL" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"olL" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"oma" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"omo" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/window/brigdoor/northleft{name = "Containment Pen"; req_access = list(47)},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "xenobio5station"; name = "Containment Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology)
"ooB" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
@@ -2287,8 +2288,8 @@
"oAw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"oBe" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"oBK" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
-"oCD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"oDZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
+"oCD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"oDZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/door/window/westleft,/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
"oEy" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"oET" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fpcenter)
"oFD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fpcenter)
@@ -2301,7 +2302,7 @@
"oJw" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber)
"oJT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"oKe" = (/obj/machinery/telecomms/relay/preset/telecomms,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber)
-"oMN" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
+"oMN" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
"oNN" = (/obj/machinery/light,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber)
"oOQ" = (/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Center Elevator Access"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/elevator)
"oRp" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/engineering/auxiliary_engineering)
@@ -2344,7 +2345,7 @@
"ppW" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"pqt" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "escape_pod_3"; pixel_y = -25; tag_door = "escape_pod_3_hatch"},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station)
"psu" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Exploration Locker Room Access"; req_access = null; req_one_access = list(43,67)},/turf/simulated/floor/plating,/area/hangar/lockerroomthree)
-"psM" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{id = "qpwld"; name = "Checkpoint Lockdown"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"psM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"ptP" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/button/remote/blast_door{id = "xenobio4station"; name = "Containment Blast Doors"; pixel_y = 4; req_access = list(55)},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology)
"pum" = (/obj/item/stack/cable_coil/yellow,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/engineering/auxiliary_engineering)
"pvi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/hangar/lockerroomthree)
@@ -2364,7 +2365,7 @@
"pAY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"pBr" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled/steel,/area/quartermaster/storage)
"pBu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/firstdeck/research_access)
-"pCf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"pCf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"pDa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"pET" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"pEY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/storage)
@@ -2379,7 +2380,7 @@
"pID" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"pII" = (/obj/structure/closet/secure_closet/explorer,/obj/item/device/cataloguer,/obj/item/weapon/melee/umbrella/random,/obj/item/device/binoculars,/turf/simulated/floor/tiled,/area/hangar/lockerroomtwo)
"pKG" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
-"pKZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"pKZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"pLh" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck/cargo)
"pLm" = (/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"pLx" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
@@ -2422,19 +2423,19 @@
"qiR" = (/obj/machinery/space_heater,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"qjI" = (/obj/structure/table/rack/shelf,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"qkX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Pilot EVA Storage"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/ai_monitored/storage/eva/aux)
-"qlf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
-"qls" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"qlN" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals_central6,/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
+"qlf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
+"qls" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"qlN" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals_central6,/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
"qlQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
"qmM" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
-"qnD" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
+"qnD" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"qnP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"qow" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/elevator)
"qoK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/message_monitor{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/tech)
"qqv" = (/obj/effect/landmark/start{name = "Shaft Miner"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
"qra" = (/obj/effect/floor_decal/borderfloorblack{dir = 9},/obj/effect/floor_decal/industrial/danger{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/elevator)
"qrc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Exploration Locker Room Access"; req_one_access = null},/turf/simulated/floor/plating,/area/hangar/lockerroomtwo)
-"qrm" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
+"qrm" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/tiled,/area/hangar/lockerroomone)
"qrp" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"qsN" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport)
"qtc" = (/obj/machinery/newscaster,/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/elevator)
@@ -2476,14 +2477,14 @@
"qOv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"qOA" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/secondary/firstdeck/research_access)
"qOB" = (/turf/simulated/wall,/area/hallway/secondary/firstdeck/research_access)
-"qQS" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"qQS" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"qSb" = (/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"qSj" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
-"qSG" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hangar/lockerroomone)
+"qSG" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"qTi" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"qTP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"qUq" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "xenobiocontainstation"; name = "Containment Blast Doors"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/xenobiology)
-"qUU" = (/obj/item/frame/apc,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/firstdeck/aftport)
+"qUU" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"qVu" = (/turf/simulated/wall,/area/hallway/primary/firstdeck/elevator)
"qVI" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/corner_steel_grid{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
"qWy" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
@@ -2528,7 +2529,7 @@
"rxv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/construction/firstdeck/construction3)
"rxy" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor,/area/tcomm/tcomstorage)
"rxW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/tcomm/tcomstorage)
-"ryn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"ryn" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"ryB" = (/obj/structure/loot_pile/maint/junk,/turf/simulated/floor,/area/maintenance/firstdeck/aftport)
"rzj" = (/obj/item/frame,/obj/machinery/light_construct,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/firstdeck/aftport)
"rzp" = (/obj/structure/table/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/telecomms/exonet_node,/obj/machinery/camera/network/telecom{c_tag = "TCOMMS - Storage"},/obj/item/weapon/circuitboard/telecomms/relay,/obj/item/weapon/circuitboard/telecomms/relay,/obj/item/weapon/circuitboard/teleporter,/obj/item/weapon/circuitboard/teleporter_hub,/obj/item/weapon/circuitboard/teleporter_station,/turf/simulated/floor,/area/tcomm/tcomstorage)
@@ -2559,11 +2560,11 @@
"rTV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"rUh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/aft_emergency)
"rUl" = (/obj/structure/sign/directions/security{dir = 4},/turf/simulated/wall,/area/construction/firstdeck/construction4)
-"rUr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"rUr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"rUt" = (/obj/structure/sign/directions/engineering{pixel_y = 10},/obj/structure/sign/directions/cargo,/obj/structure/sign/directions/security{pixel_y = -10},/turf/simulated/wall/r_wall,/area/hallway/primary/firstdeck/ascenter)
"rUK" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Checkpoint Locker Room"},/obj/machinery/door/firedoor/multi_tile{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"rVv" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/tcomm/entrance)
-"rVE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/light{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"rVE" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"rWn" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/aft)
"rWq" = (/obj/structure/sign/directions/bridge{dir = 4; pixel_y = 10},/obj/structure/sign/directions/science{dir = 1},/turf/simulated/wall,/area/construction/firstdeck/construction4)
"rXy" = (/obj/machinery/door/airlock/glass{name = "Research Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/firstdeck/research_access)
@@ -2579,7 +2580,7 @@
"sbP" = (/turf/unsimulated/mask,/area/hallway/primary/firstdeck/starboard)
"sbU" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"sbZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/obj/machinery/camera/network/research{c_tag = "SCI - First Deck Research Hallway Aft"; dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
-"sdx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/green/border{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"sdx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/camera/network/security{c_tag = "CP - Quantum Pad"; dir = 1},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"sdN" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/security/checkpoint3)
"sdT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"sdV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/glass,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/aft)
@@ -2587,7 +2588,7 @@
"sfL" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"sfM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research/firstdeck/hallway)
"shl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"shm" = (/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
+"shm" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/steel,/area/quartermaster/mininglockerroom)
"shA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"shN" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "xenobiocontainstation"; name = "Containment Blast Doors"; opacity = 0},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/xenobiology)
"sir" = (/obj/structure/table/standard,/obj/item/weapon/folder/red{pixel_y = 3},/obj/item/weapon/folder/blue{pixel_x = 5},/obj/effect/floor_decal/corner_steel_grid{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
@@ -2610,6 +2611,7 @@
"szm" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology)
"sAo" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = list(47)},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology)
"sAE" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = list(47)},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "xenobio2station"; name = "Containment Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology)
+"sDV" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "qpdld"; name = "Checkpoint Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{id_tag = "qpdoorin"; name = "Inner Checkpoint Airlock"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"sEo" = (/mob/living/simple_mob/slime/xenobio,/turf/simulated/floor/reinforced,/area/rnd/xenobiology)
"sEE" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"sER" = (/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
@@ -2619,18 +2621,18 @@
"sHx" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod4/station)
"sHA" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/quartermaster/storage)
"sIE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"sIM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"sIM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"sJC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"sJS" = (/obj/structure/closet/wardrobe/red,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/security/checkpoint3)
-"sLF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Cargo Maintenance"; req_access = list(50)},/turf/simulated/floor/plating,/area/quartermaster/hallway)
+"sLF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"sLG" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/xenobiology)
-"sLO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Port Hallway 2"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"sLO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Port Hallway 2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"sMV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hangar/two)
"sND" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/teleporter/firstdeck)
"sNE" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"sPh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hangar/lockerroomtwo)
"sPE" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"sQR" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Quantum Checkpoint Access"},/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
+"sQR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Quantum Checkpoint Access"},/turf/simulated/floor/tiled/steel_grid,/area/teleporter/firstdeck)
"sRn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_starboard)
"sRE" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/machinery/requests_console{department = "Tech storage"; pixel_x = 30},/turf/simulated/floor/plating,/area/storage/tech)
"sSr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
@@ -2656,11 +2658,11 @@
"tfU" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
"tgg" = (/obj/structure/lattice,/obj/item/stack/rods,/obj/structure/grille/broken,/turf/space,/area/space)
"tgD" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
-"thl" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"thl" = (/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"thp" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/sleep_console{dir = 4},/obj/structure/closet/secure_closet/medical_wall{name = "defibrillator closet"; pixel_y = 31},/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
"tid" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock External Airlock"; req_one_access = list(13)},/obj/machinery/access_button{frequency = 1380; name = "exterior access button"; pixel_x = 27; pixel_y = -7},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/auxdockaft)
"tij" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
-"tiM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"tiM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"tkF" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"tlt" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/tech_supply,/obj/item/weapon/storage/toolbox/mechanical,/obj/random/powercell,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/techmaint,/area/medical/first_aid_station/firstdeck)
"tlH" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/tcomm/tcomstorage)
@@ -2700,7 +2702,6 @@
"tFZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_starboard)
"tHc" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/airlock_sensor{dir = 4; frequency = 1380; id_tag = null; pixel_x = -27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"tHL" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
-"tKX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"tLv" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/plating,/area/construction/firstdeck/construction2)
"tLK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"tNe" = (/obj/structure/sign/deck/first{pixel_y = 32},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Starboard Hallway 4"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
@@ -2743,7 +2744,7 @@
"ujy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"uke" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher,/obj/machinery/recharger/wallcharger{pixel_x = 5; pixel_y = -32},/obj/machinery/light,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology)
"ukk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
-"ukx" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
+"ukx" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/port)
"ulG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"umi" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/port)
"umm" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/as_emergency)
@@ -2760,8 +2761,8 @@
"ust" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet{dir = 8},/turf/simulated/floor/reinforced,/area/rnd/xenobiology)
"utC" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/hangar/two)
"uvx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology)
-"uwF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
-"uyp" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"uwF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"uyp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"uyM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
"uzh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"uAp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/storage/tech)
@@ -2818,7 +2819,7 @@
"vfw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "xenostation_airlock_control"; name = "Xenobiology Access Button"; pixel_x = -26; pixel_y = 6; req_access = list(55)},/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "xenostation_airlock_exterior"; locked = 1; name = "Xenobiology External Airlock"; req_access = list(55)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology)
"vfX" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/storage/emergency_storage/firstdeck/as_emergency)
"vgn" = (/obj/structure/sign/warning/biohazard,/turf/simulated/wall/r_wall,/area/rnd/xenobiology)
-"vgG" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/teleporter/firstdeck)
+"vgG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"vgS" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -36},/obj/effect/floor_decal/corner_steel_grid{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
"vhf" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
"vhp" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
@@ -2840,7 +2841,7 @@
"vpm" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/auxdockaft)
"vpq" = (/obj/structure/sign/deck/first{pixel_y = -32},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Port Hallway 4"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
"vpF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
-"vpN" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"vpN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"vpX" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; frequency = 1380; id_tag = "d1_aux_c_airlock"; pixel_x = -27; req_one_access = list(13)},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
"vrJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/elevator)
"vtf" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
@@ -2863,8 +2864,8 @@
"vGp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_mining{id_tag = "shuttle_2_door"; name = "Hangar Bay"; req_one_access = null},/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/turf/simulated/floor/tiled/steel_grid,/area/hangar/two)
"vGt" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/firstdeck)
"vGL" = (/obj/structure/table/steel,/turf/simulated/floor/plating,/area/construction/firstdeck/construction1)
-"vHb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
-"vHC" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"vHb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/hallway)
+"vHC" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"vIo" = (/obj/structure/table/rack/shelf,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/gas,/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"vIM" = (/obj/machinery/computer/crew{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/medical/first_aid_station/firstdeck)
"vLQ" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station)
@@ -2881,7 +2882,7 @@
"vQw" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/security{c_tag = "CP - Booth"; dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"vQU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"vQY" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
-"vRd" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
+"vRd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/quartermaster/hallway)
"vRz" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/night,/obj/item/device/aicard,/obj/item/device/multitool,/turf/simulated/floor/tiled/dark,/area/tcomm/entrance)
"vSR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"vUu" = (/obj/machinery/atmospherics/tvalve/mirrored/bypass{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
@@ -2891,7 +2892,7 @@
"vYi" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
"vYv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/ascenter)
"vYx" = (/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Starboard Escape Pods"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftstarboard)
-"vYA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"vYA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"vYH" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/steel,/area/construction/firstdeck/construction3)
"vYO" = (/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftport)
"vZY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = 27},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
@@ -2923,7 +2924,7 @@
"wry" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/window/brigdoor/southright{name = "Containment Pen"; req_access = list(47)},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "xenobio4station"; name = "Containment Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology)
"wsf" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/starboard)
"wsI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/auxiliary_engineering)
-"wtg" = (/obj/effect/floor_decal/industrial/warning/full,/turf/space,/area/space)
+"wtg" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage)
"wth" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"wuf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod5/station)
"wuh" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft)
@@ -2934,6 +2935,7 @@
"wyt" = (/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/industrial/danger{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/starboard)
"wzV" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/hallway/primary/firstdeck/starboard)
"wAp" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
+"wBX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"wCC" = (/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/machinery/shower{dir = 4; pixel_x = 5},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
"wCH" = (/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Port Escape Pods"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/status_display{pixel_x = 32},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_aftport)
"wCI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_starboard)
@@ -2955,7 +2957,7 @@
"wOD" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"wPy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/apcenter)
"wQD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/auxdockaft)
-"wQP" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
+"wQP" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport)
"wRb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/secondary/escape/firstdeck/ep_starboard)
"wRy" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint3)
"wRK" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology)
@@ -2978,7 +2980,7 @@
"xba" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"xbp" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/firstdeck/ep_aftport)
"xbG" = (/obj/structure/sign/directions/medical{dir = 8},/obj/structure/sign/directions/evac{dir = 8; pixel_y = 10},/turf/simulated/wall,/area/construction/firstdeck/construction2)
-"xcs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/port)
+"xcs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/port)
"xcT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall,/area/medical/first_aid_station/firstdeck)
"xdz" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/xenobiology)
"xdN" = (/obj/machinery/porta_turret/crescent,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
@@ -3030,7 +3032,7 @@
"xOi" = (/obj/machinery/camera/network/security{c_tag = "CP - Locker Room"},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/techmaint,/area/teleporter/firstdeck)
"xPQ" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport)
"xQk" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = -32},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "escape_pod_6"; pixel_y = 25; tag_door = "escape_pod_6_hatch"},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod6/station)
-"xQs" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"xQs" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"xRw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard)
"xSg" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard)
"xSp" = (/obj/effect/floor_decal/borderfloorblack/corner,/obj/effect/floor_decal/industrial/danger/corner,/turf/simulated/floor/tiled,/area/quartermaster/storage)
@@ -3042,7 +3044,7 @@
"xVd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
"xVw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology)
"xVJ" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = -30},/obj/structure/reagent_dispensers/watertank/high,/obj/machinery/camera/network/research{c_tag = "SCI - Xenobiology Aft Port"; dir = 1},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/xenobiology)
-"xWc" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
+"xWc" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/teleporter/firstdeck)
"xYR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology)
"xZg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 4},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
"xZL" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology)
@@ -3158,44 +3160,44 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHoaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaClaClaHqaHUaIzaJaaJaaJaaJkaJaaJaaJaaJtaJyaJzantaJAaJPaJSaKmaKnaKtaKHaKJaKKaKOaKPaKOaKKaKZantantaCdaLaaLeaGkaGkaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaafaHnaHnaHnaLfaLhaLhaLhaLhaLhaLhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaaaaatOotOoaajaCltOoaiYaiYaiYaaQaaQaaQaiYaiYaiYaiYaiYaiYaiYaiYaaaaClaClaLiaLkaLlaIzaLmaLwaLzaLAaLBaLCaJaaLIaLJaLIaLYaLYaLZaMaaMbantantaaaaaaaaaaMcaMdaMcaaaaaaaaaantabTaLaaMeaMfaGkaGkaaaaaaaaaaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaMhaHnaHnaHnaLfaMiaMvaMDaMvaMFaLhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXruXruXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaaaaavYiaafaafaaftOotOoacmaqkiQHpOaaiYaiYagvaMMailaMNaiXaiYaAKaiYaMOaiYaMOaiYaClaClaNhaNlaNoaNqaIzaNraNtaNtaNvaNvaNxaJaaNyaNzaNDaNEaLIaNFaNIaNJantaaaaaaaOhaOhaOhaOiaOhaOhaOhaaaaaaabTaOjaOoaOtaOtaGkaGkabTaMhaMhaOuaOvaOwaOwaOwaOwaOwaPgaOwaOwaOwaOwaOwaPhaOuaMhaMhaPEaQwaQIaRlaRsaRUaRUaRUaSbaLhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXreaVuXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaatOoajnajnhSRaMGgpfaiYaiYaSkaMLaSmaSiaiXaiYbrxaiYbrxaiYbrxaiYaSVaTjaTkaTmaTDaTFaIzaTGaNvaTIaNtaNvaNxaJaaTJaTKaTLaTMaLIaTNaUbaUdantaaaaaaaOhaUeaUfaUvaUAaUEaOhaaaaaaabTaOjaUGaUHaUKaVcaVdaVeaMhaVfaVgaVhaViaViaViaVlaVlaVlaVlaVlaViaViaViaVUaVgaVfaMhaWfaWgaWkaLfaWlaWnaWuaWnaMFaLhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYivYiaafvYivYiaafvYivYiaVSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaatOoajnajnhSRaMGgpfaiYaiYaSkaMLaSmaSiaiXaiYbrxaiYbrxaiYbrxaiYaauaTjaTkaTmaTDaTFaIzaTGaNvaTIaNtaNvaNxaJaaTJaTKaTLaTMaLIaTNaUbaUdantaaaaaaaOhaUeaUfaUvaUAaUEaOhaaaaaaabTaOjaUGaUHaUKaVcaVdaVeaMhaVfaVgaVhaViaViaViaVlaVlaVlaVlaVlaViaViaViaVUaVgaVfaMhaWfaWgaWkaLfaWlaWnaWuaWnaMFaLhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYivYiaafvYivYiaafvYivYiaVSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafvYiaaaaaaaaaaClajnajnajnajnowFaiYaiYcfpcfUdZBgnUhgaaiYsaCsNDxFCcRuaKLaiYaWvaXTaZjaZOaZQaZYaIzbabaNvaNtaNtbaXbbHaJabcWbdcbdBbdGaLIbegbekbegantaaaaaaaOhbeGbfFbfSbfFbhgaOhaaaaaaabTbhjbhnbjkbkkbmqbmGbntbnwaVfaVgaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVbotboCbplbpRbqbaWkaLfaLhaLhaLhaLhaLhaLhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaatOoajnajnriwajniOjaiYaiYsdxkrKbrQbwfbBQaiYwEyjUtpAvelzelzaiYbEobErbErbFobErbEraIzbFybFUaNvaNtaNtbHOaJaaLIbJlaLIbJWaLIajDbLdajDantaaaaaaaOhbLFbMwbONbPdbPTaOhaaaaaabQpbSHbSHbSTbSHbSHbUUbXoaMhbXxaVgaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVcaqcdaaMhcdCcfnaHnaHnaHnaHnaHnaHnaHnaHnvYivYiaafaafvYivYiaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaavYiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaatOoajnajnriwajniOjaiYaiYsdxkrKbrQbwfbBQaiYwEyjUtpAvelzelzaiYaiIbErbErbFobErbEraIzbFybFUaNvaNtaNtbHOaJaaLIbJlaLIbJWaLIajDbLdajDantaaaaaaaOhbLFbMwbONbPdbPTaOhaaaaaabQpbSHbSHbSTbSHbSHbUUbXoaMhbXxaVgaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVcaqcdaaMhcdCcfnaHnaHnaHnaHnaHnaHnaHnaHnvYivYiaafaafvYivYiaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaavYiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaFftOoajncfoaiYaiYaiYaiYaiYaiYchyezufIDaiYaiYaiYaiYchCaiYaiYaiYciybErcjEcjGclTcnNaIzcnZcofcoqcpEaNtcpGcpHaLIcpUaLIcqNaLIcrGcsEcsUantaaaaaaaOhcunbfFcuScvFcvHaOhaaaaaabQpcxgcxrcxzcyYbSHczvaMhaMhczGcAKaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVcALcAMaMhcBZaPEcCncCpaPEcDjaPEcEgaWkaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaafaafaaftOotOoafNajnaiYcFhcIqmKwcVJgLcuypeKAtiMoBeaiYvHCcXxqiiqhAdVVaiYaiIbErcVAcjGcYgcZtaIzaIzaIzaIzcZVcZVcZVaIzaLYaLYaLYaLYaLYdaRcsEdcdantantaafaOhaOhaOhaOhaOhaOhaOhaafbQpbQpbQpddncxzdetbSHdgHdkjaMhaMhdkRaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVdnCaMhaMhdoidpldpTdpVdteduNdvDdvWaWkaaaaaaaaaaaaaaaaaaaafaaaaaaaaadwhdwndzBdBEdBEdBEdBEdBEdzBaaaaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaaaaaaaaaaFftOoaFfaFfaiYfMVmMTaamdixcyKwODdDrleDvQwaiYjDVcysjTAcOlvOZaiYaiIdFOdHqcjGdIqcZtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadKjdPzdPJdPMdRvdRDdKjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQpdSccxzcxrdSHdgHdTJaMhdUudUNaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVcaqdVdaMhdVsdVsdVsdVGdVHdVIdVIdVIdVIdVHdVHdVJdVKdVKdVJdVJdVKdVKdVKdVLdVJdzBdVMdVNdVOdVPdVMdzBdzBaafaafaafvYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXvYivYivYivYivYivYiaafaafaaaaaaaaaaClaauaVWaiYgMAlcwvgGcyspsMwIAvpNbMqxdNaiYeSRcyscGEipWdVVaiYaiIbErdVWdVXcZtcZtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadKjdVYdVZcsEdWaarXdKjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQpbQpdWbdWdbSHdWedWfaMhdUudWgaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVdWhdVdaMhdVsdWjdWkdWldVHdWmdWpdWqdWrdWGdWMdWrdWNdWOdWPdWQdWrdWqdWSdWTdVHdWUdWVdWYdWVdWYdWVdWZdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaafaaaaaaaafaaaaaaaaaaafsFQaaaaaaaaaaCldXadXbaiYaaAcSKdVTaaGaiYchyiEpfIDaiYaiYakiakPcIrnCBaiYaiYaadbErcZtcZtcZtaaaaaaaaaaaaaaaaaadXfdXfacuacuacudXfdXgdXhdXicsEdXjdXkdXldXmdXndXndXndXmdXmaaaaaaaaaaaaaaaaaabQpbQpbQpbSHdXodXpaMhdXqdXraVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVdXFdXGaMhdXHdXIdXJdXKdVKdXLdXLdXLdXLdXLdXLdXLdXLdXLdXMdXLdXLdXLdXLdXNdVHdXOdXPdXQdXPdXQdXPdXQdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaatOoaFfajEaiYmuZdVQfYUahCaiYrynthlahFaiYftbvlUcysdZyaiYaiYajndXUdXVaFfaaaaaaaaaeanaaaaaaacuacudXfdXWdXXdXYdXZdYadYbdYcdYdcsEdYedYfdYjdYkdYldYmdYndYodXmdXndXnaaaaaaeanaaaaaaaaaaCddYtdYudYvaMhdUucaqaVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVcaqdVdaMhdYwdYxdYydYzdYAdYCdYDdYEdYFdYGdYGdZddZedZfdZgdYGdYFdZhdYGdZidZjdZkdZldZndZpdZqdZrdZsdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaatOodZtaTEaiYaiYdZuaiYaiYaiYdZzaaFqQSdVUpKZdZxdVTuXJaiYajnaTEdZFdZHaFfaaaaaaaaaaaaaaaacuacudZJdZKdZLdZMdZNdZOdZPdZQdZRdZSdZTdZUeameaoeapeaqeareaseateaueavdXndXnaaaaaaaaaaaaaaaaCdeaweaxdkjaMhdUucaqaVhaViaVlaVlaVlaVlaVlaVlaVleayaVlaVibnVcaqdVdaMheazeaAeaBeaCdVKeaDeaDeaEeaFeaGeaGeaHeaIeaLeaMeaGeaOeaPeaGeaQeaSeaTeaXeaYebfebgebjecVdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafkwtkwtkwtkwtkwtkwtkwtkwtkwtkwtkwtkwtkwttOoeehaVWaiYeewbBIpjlqxqaiYiCqgnlabsaiYqjIvIomZrefmaiYafNajnagyefNaFfaaaaaaaaaaaaacuacudZJehpehXehXelZemjemEenSeoheqxerIeseeubeuiewWexseyueyDeyJeBpeBpeCbeavdXndXnaaaaaaaaaaaaaCdeCSdgHaMhaMhaMheESaVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVeEXaMhaMheFTeHoeaBeHMdVJeKQePUeTNePUeTNeVueVQeWceXReZVeTNeTNeTNeTNfaudVHfawfazfaXfazfazfbEfcNdzBaafaafaafvYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXdWXabmabmabmabgabmabmabgabmabmabmgyrtOoaauaVWaiYagqnRaagrcHpdZvaaxagZazGaiYaiYaiYaiYaiYaiYaMJajnagyaFfaFfwtgaaaaaaacuacudZJdZJffOdZJfgdfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrwalwalwalfjYeavfkLeaveavdXndXnaaaaaaaaaaCdaCddgHdkjaMhflNflYaVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVcALcAMaMhfmueaAeaBfsKdVHfuqfvMfxufyffBBfEBfFBfGifHQfKKfLWfQnfXffXYfYhdVHfZpfZVgbwgcqdWYgeKgeYdzBaaaaaaaaaaaavYivYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaadWXabmgfJgfVggsgiagiOgjzaaCiIrgkbvcsfPgtOoaaDaSfaiYagWagZbVznyVdZvpCfdoadZwaiYgoAxOidXegoAaiYgwvajnagyaClwtgaaaaaaaaaacudZJehpehXgwxgwUfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrwalwalwalwalgwXgAoeBpeCbeavdXnaaaaaaaaaaaaaGkdgHgCnaMhdUugCtaVhaViaVlaVlaVlaViaViaViaVlaVlaVlaVibnVcaqdVdaMhgDzgDBgEegGZdVHgHQdVKgIxdVKdVHdVHgITgIWgJsgKhdVHdVKgIxdVKgMTdVHgNJgRHgRTgTWgXHgXOgYBdzBaaaaaaaaaaaaaafaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXgYFhenaaMaaMaaMaaMaaMaaMaaMahAvcsfPgtOoajnaVWaiYfKThfaaaRdEiaiYdXRaaTxrzaaUuYjguxoBKdGOaiYaEnajnahHaClwtgaaaaaadXfdXfhhiffOdZJhhuhjjfgrfgrfgrhkNhkPhkYhlShmahpVhqphlShqBhsIhvPhzuhzvwalhCIhFIeavfkLhGGdXmdXmaaaaaaaaaaGkdgHhJcaMhhLrgCtaVhaViaVlaVlaViaViaViaViaViaVlaVlaVibnVcaqhOgaMhhRQhSPhVlhVGhWPhZIicjhVGhVGicVifeihkijeijJinCiovhVGisrisyisNdVsitVitVitVitVitVitVitVitVitVaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaaaaaaaaaaFftOoaFfaFfaiYfMVmMTaamdixwODafVdDrleDvQwaiYjDViTCjTAcOlvOZaiYaiIdFOdHqcjGdIqcZtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadKjdPzdPJdPMdRvdRDdKjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQpdSccxzcxrdSHdgHdTJaMhdUudUNaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVcaqdVdaMhdVsdVsdVsdVGdVHdVIdVIdVIdVIdVHdVHdVJdVKdVKdVJdVJdVKdVKdVKdVLdVJdzBdVMdVNdVOdVPdVMdzBdzBaafaafaafvYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXvYivYivYivYivYivYiaafaafaaaaaaaaaaClaauaVWaiYgMAlcwcysauhwIApsMvpNbMqxdNaiYeSRiTCcGEipWdVVaiYaiIbErdVWdVXcZtcZtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadKjdVYdVZcsEdWaarXdKjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQpbQpdWbdWdbSHdWedWfaMhdUudWgaVhaViaViaVlaVlaVlaVlaVlaVlaVlaViaVibnVdWhdVdaMhdVsdWjdWkdWldVHdWmdWpdWqdWrdWGdWMdWrdWNdWOdWPdWQdWrdWqdWSdWTdVHdWUdWVdWYdWVdWYdWVdWZdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaafaaaaaaaafaaaaaaaaaaafsFQaaaaaaaaaaCldXadXbaiYaaAcSKdVTaaGaiYaRhiEpsDVaiYaiYakiakPcIrnCBaiYaiYaadbErcZtcZtcZtaaaaaaaaaaaaaaaaaadXfdXfacuacuacudXfdXgdXhdXicsEdXjdXkdXldXmdXndXndXndXmdXmaaaaaaaaaaaaaaaaaabQpbQpbQpbSHdXodXpaMhdXqdXraVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVdXFdXGaMhdXHdXIdXJdXKdVKdXLdXLdXLdXLdXLdXLdXLdXLdXLdXMdXLdXLdXLdXLdXNdVHdXOdXPdXQdXPdXQdXPdXQdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaatOoaFfajEaiYmuZdVQfYUahCaiYrynvpNahFaiYftbvlUiTCdZyaiYaiYajndXUdXVaFfaaaaaaaaaeanaaaaaaacuacudXfdXWdXXdXYdXZdYadYbdYcdYdcsEdYedYfdYjdYkdYldYmdYndYodXmdXndXnaaaaaaeanaaaaaaaaaaCddYtdYudYvaMhdUucaqaVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVcaqdVdaMhdYwdYxdYydYzdYAdYCdYDdYEdYFdYGdYGdZddZedZfdZgdYGdYFdZhdYGdZidZjdZkdZldZndZpdZqdZrdZsdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaatOodZtaTEaiYaiYdZuaiYaiYaiYdZzaaFqQSdVUpKZdZxwBXuXJaiYajnaTEdZFdZHaFfaaaaaaaaaaaaaaaacuacudZJdZKdZLdZMdZNdZOdZPdZQdZRdZSdZTdZUeameaoeapeaqeareaseateaueavdXndXnaaaaaaaaaaaaaaaaCdeaweaxdkjaMhdUucaqaVhaViaVlaVlaVlaVlaVlaVlaVleayaVlaVibnVcaqdVdaMheazeaAeaBeaCdVKeaDeaDeaEeaFeaGeaGeaHeaIeaLeaMeaGeaOeaPeaGeaQeaSeaTeaXeaYebfebgebjecVdzBaaaaaaaaavYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafkwtkwtkwtkwtkwtkwtkwtkwtkwtkwtkwtkwtkwttOoeehaVWaiYeewbBIpjlqxqaiYfzFgnlabsaiYqjIvIomZrefmaiYafNajnagyefNaFfaaaaaaaaaaaaacuacudZJehpehXehXelZemjemEenSeoheqxerIeseeubeuiewWexseyueyDeyJeBpeBpeCbeavdXndXnaaaaaaaaaaaaaCdeCSdgHaMhaMhaMheESaVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVeEXaMhaMheFTeHoeaBeHMdVJeKQePUeTNePUeTNeVueVQeWceXReZVeTNeTNeTNeTNfaudVHfawfazfaXfazfazfbEfcNdzBaafaafaafvYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXdWXabmabmabmabgabmabmabgabmabmabmgyrtOoaauaVWaiYagqnRaagrcHpdZvaaxagZazGaiYaiYaiYaiYaiYaiYaMJajnagyaFfaFfaaaaaaaaaacuacudZJdZJffOdZJfgdfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrwalwalwalfjYeavfkLeaveavdXndXnaaaaaaaaaaCdaCddgHdkjaMhflNflYaVhaViaVlaVlaVlaVlaVlaVlaVlaVlaVlaVibnVcALcAMaMhfmueaAeaBfsKdVHfuqfvMfxufyffBBfEBfFBfGifHQfKKfLWfQnfXffXYfYhdVHfZpfZVgbwgcqdWYgeKgeYdzBaaaaaaaaaaaavYivYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaadWXabmgfJgfVggsgiagiOgjzaaCiIrgkbvcsfPgtOoaaDaSfaiYagWbNTbVznyVdZvpCfdoadZwaiYgoAxOidXegoAaiYgwvajnagyaClaaaaaaaaaaaaacudZJehpehXgwxgwUfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrwalwalwalwalgwXgAoeBpeCbeavdXnaaaaaaaaaaaaaGkdgHgCnaMhdUugCtaVhaViaVlaVlaVlaViaViaViaVlaVlaVlaVibnVcaqdVdaMhgDzgDBgEegGZdVHgHQdVKgIxdVKdVHdVHgITgIWgJsgKhdVHdVKgIxdVKgMTdVHgNJgRHgRTgTWgXHgXOgYBdzBaaaaaaaaaaaaaafaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXgYFhenaaMaaMaaMaaMaaMaaMaaMahAvcsfPgtOoajnaVWaiYfKThfaaaRdEiaiYdXRaaTxrzaaUuYjguxoBKdGOaiYaEnajnahHaClaaaaaaaaadXfdXfhhiffOdZJhhuhjjfgrfgrfgrhkNhkPhkYhlShmahpVhqphlShqBhsIhvPhzuhzvwalhCIhFIeavfkLhGGdXmdXmaaaaaaaaaaGkdgHhJcaMhhLrgCtaVhaViaVlaVlaViaViaViaViaViaVlaVlaVibnVcaqhOgaMhhRQhSPhVlhVGhWPhZIicjhVGhVGicVifeihkijeijJinCiovhVGisrisyisNdVsitVitVitVitVitVitVitVitVitVaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXabmgfJiuIiwsaaXizWiANaaYainiBVvcsfPgtOoabaaVWaiYiCqiCSiDIxWcgEuxQsiFnolLrUKhLPeDyroGabeaiYiFoajnaipaClaaaaaaaaadXfiIPiKgffOfgdiLtiLtiLtfgrfgriNoiNoiNoiNoiNoiPiiPwiPEiPEiPOiRgiUgiUlwalwalwalfjYfkLiUTiWmdXmaaaaaaaaaaGkdgHjbnaMhjbsjdYjgnjkCjkCjkCjkCjkCjkCjkCjkCjkCjkCjkCjlxjnwjptaMhjpxjrdjuSjuSjvdjwwjxijznjAHjBcjAHjDcjDejFkjFAjGgjGujIijJejKojKHitVjLljPJjSgjSxjUmjPJjVNitVjVVjVVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXdWXabmabmabmabgabiabiabgabmabmabmabntOoaboajnaiYaiDaiEjWCabqaiYvYArVEaiYaiYgoAtUxgoAgoAaiYjXQajnaiIaFfaFfaaaaaaacujXVjYojYAiLtiLtjYPkcpiLtfgrkcrkdekehkfYkkkkkkkkVkkYkliknLkrvwalkszwalksNwalwalktwktUkxndXnaaaaaaaCdaCdkzNkCmaMhkDjkDNkExkExkExkExkEKkHTkKUkNqkPikPikRHkPikPikSYkTuaMhkVXkWYkZClaNeHMlaVlcfeHMlcilfTlhClhUdVsdVsljfdVsdWkljUlkwjKolmNitVlpolrZjSgjSxjUmjPJlsbitVitVlselsJitVaafaafaafaafaafaafxrXvYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaakwtmunmunkwtkwtkwtkwtabFabFaiUaiUaiUaiUaiUtOolunajnaiYaiYaiYaiYaiYaiYsQRlvnaiYaiYaiYaiYaiYaiYaiYtOoajnaiZlxMaFfaaaaaaaculzhlCmlCZlFklGalGZlKgiLtfgriNolLolMzlNTlPKkkklPNlQMlRvlTDlUhlXblXHlXRlYBmddwalmdwmgamhudXnaaaaaaaCdmhNmkdmkCaMhaMhaMhdkjmmHmmHmmHdkjmntdkjmnEdkjaMhaMhaMhaMhaMhaMhaMhmnRmnRmnRmnRmnRmoqmoqmoQmoQmoQmoQmoQmoQmptmpDmoQmoQljUmsemtYgGZitVmvNjPJjSgjSxjUmjPJmvNitVmwpmxnmyritVitVaaaaaaaaaaaaaaaaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaafaafaafkwtkwtmBsxPQmBtmDaabWkwtabZabZmDGmEBmENacamGFaFfmJGaTEakNaccmKZacddtRakNacgmNhqSGacnacnmNjamqacoajnaFfmNnacpacqaFfaaaaaaacumORmPumQhiLtmQrmSDmTHiLtfgriNoiNoiNoiNoiNomUsmVlmVlmVlmWhmXWmYAmYXmZfmZXnbxwalncnndYneodXnaaaaaaaCdaagbntngZnhknjjnjZnpunqOnrbnrgnpuwzVaqpaqpnsenwjnzfnzfnEcnEEnGWnsenHQnKTnNZnPXnQInRinRimoQnSknVOnZonZZoatoaIobiocKmoQodGofLitVitVitVohKohYojAokXollomoopHitVotUouKowXoxdoxnoxqoxLoxLaaaaaaaaaaaavYitggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadWXdWXabmabmabmabgabiabiabgabmabmabmabntOoaboajnaiYaiDaiEjWCabqaiYvYAvpNfCUaiYgoAtUxgoAgoAaiYjXQajnaiIaFfaFfaaaaaaacujXVjYojYAiLtiLtjYPkcpiLtfgrkcrkdekehkfYkkkkkkkkVkkYkliknLkrvwalkszwalksNwalwalktwktUkxndXnaaaaaaaCdaCdkzNkCmaMhkDjkDNkExkExkExkExkEKkHTkKUkNqkPikPikRHkPikPikSYkTuaMhkVXkWYkZClaNeHMlaVlcfeHMlcilfTlhClhUdVsdVsljfdVsdWkljUlkwjKolmNitVlpolrZjSgjSxjUmjPJlsbitVitVlselsJitVaafaafaafaafaafaafxrXvYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaakwtmunmunkwtkwtkwtkwtabFabFaiUaiUaiUaiUaiUtOolunajnaiYaiYaiYaiYaiYaiYiJElvnsQRaiYaiYaiYaiYaiYaiYtOoajnaiZlxMaFfaaaaaaaculzhlCmlCZlFklGalGZlKgiLtfgriNolLolMzlNTlPKkkklPNlQMlRvlTDlUhlXblXHlXRlYBmddwalmdwmgamhudXnaaaaaaaCdmhNmkdmkCaMhaMhaMhdkjmmHmmHmmHdkjmntdkjmnEdkjaMhaMhaMhaMhaMhaMhaMhmnRmnRmnRmnRmnRmoqmoqmoQmoQmoQmoQmoQmoQmptmpDmoQmoQljUmsemtYgGZitVmvNjPJjSgjSxjUmjPJmvNitVmwpmxnmyritVitVaaaaaaaaaaaaaaaaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaafaafaafkwtkwtmBsxPQmBtmDaabWkwtabZabZmDGmEBmENacamGFaFfmJGaTEakNaccmKZacddtRakNdILmNhacgjfTacnmNjamqacoajnaFfmNnacpacqaFfaaaaaaacumORmPumQhiLtmQrmSDmTHiLtfgriNoiNoiNoiNoiNomUsmVlmVlmVlmWhmXWmYAmYXmZfmZXnbxwalncnndYneodXnaaaaaaaCdaagbntngZnhknjjnjZnpunqOnrbnrgnpuwzVaqpaqpnsenwjnzfnzfnEcnEEnGWnsenHQnKTnNZnPXnQInRinRimoQnSknVOnZonZZoatoaIobiocKmoQodGofLitVitVitVohKohYojAokXollomoopHitVotUouKowXoxdoxnoxqoxLoxLaaaaaaaaaaaavYitggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaaaaaakwtkwtaoyaqHxPQoxRoyjoAwacvacwpYHacxaAmacyaczambajEaVWaVWakNaoqmKZmKZggJakNacCoCDacDoDZacEacKamqacLajMacMoEyadlacNaFfaaaaaadXfoEToFDoFFiLtoGlalxoGWiLtfgroGXoJwoKeoNNoTtoWjoYRoNNoZopawpcApdrpeophfpjepmqwalpmGndYpmKdXmaaaaaaaCdpoyaVebntbntppybntpsupvipvApvGpvHpwHpwZpwZnsepxfpyJnzfpznpzHnEEnsepAYpBupDapETpGWpIdpItpIDpKGpKGpLmpKGpKGpLxpKGmoQmoQpLGpOIitVpPfpPPpQFpVEpVKpZoqbFpVEqdTqedqflqfvqhHitVitVitVitVitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtqiRxPQkwtkwtkwtkwtkwtkwtamVlOFlOFlOFacXacYadaaFfakgaauakNaoqmKZmKZvGLakNqlfqlsqSGqlNqlQqrmamqadkadmakmqrpqsNadnaFfatmatmaBDqufqvRdYbhjjoGloGTqzOiLtfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrfgrwalwalwalhvPqAAqACwalqAXqAYqCcqCmqCxqCxaCdqDndTJqFnqFnqFnqFnnpuqGgqGBqGNnpuqGOqHBafsnseqHGqINqJupznqNBnEEnseqOmqOvqOAqOBqOBqOBmnRmoQmoQmoQmoQmoQmoQqSbqSjmoQqTiqTPjKoqUqqVIqWYqXWrbfrbSrcarcBrdNrdPreMrdPreOrffrfArfSrgUrgVitVaaaaaaaaavYiuXruXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtrhuxPQkwtaPZaPZaPZaPZaPZamVaGlanHrhBriladtrmMrnAroUaFfakNalzakNakNakNakNhNDakRaPaamqamqamqamqadBaFflOFlOFaFfciylOFadCadDrrSrsersYrtPagaagarvkrwjagackbckbckbckbaezaezaezaezaezaAArxyrxWrzpagcagfrzNrAiaAAansalorDarDzrGJrIPrJFrKOaCdrJFrJFrJFrJFnpunpunpunpurLdrLxrOGrRcnsensensenserRhnserUlrWqrXyrYcrZPrJFsbbsbEsbHsbPsbPsbPsbPsbPmoQqSbsbUmoQsbZsfLsfMshNsirslpsltsmHsqXsqXsqXswTsyHszaszeszmsAosAEjPJsEojPJitVaafaafaafaafeaVuXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXruXraafaaaaaaaaamunsEEsERkwtaPZaPZaPZaPZaPZadKasqadNadOaahadPalwpdfsFFasqadQsIEpdfasqalCaAyadRsIMadTsJCadTsLOalEadSsNEsSrsSPsTTsVZsXqsXzadTadVsZTtaJavltezteKaRttfUtgDthptijtltckbaezaezaezaezaezaAAtlHtmAtnBagctoctoDtrgaAAtrwadWadXadYtsaadZtsUtvktwPtwStxftyFtyStAWadYtBNtsatsatCfqHBadYtCHtCOtDPtyStEladYtEPtyStHLtLKadYtNetNmtsatODsbPsbPsbPsbPsbPmoQtOJqSbmoQtOLtPrtQFtRRtSItUztUUtZruapuauqXWuauuaSubbubvucducfudFjPJjPJjPJitVaaaaaaaaavYiuXruXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXreaVaafaafaafaafmunueVuiDkwtaPZaPZaPZaPZaPZalXujealZanFaaianEakVakVukkapJaenaeoakVakVakVaeraesukxakVakVapJakVakVaetakVulGumiunFunMakVaeuakVakVuoHuptakVuqGuqMusaaewaexaeyuyMuAJckbaezaezaezaezaezaAAuBzaeAuBFuHTuHYaoYalnaAAaeCaeGaeHuHZuHZaejuHZuIauIbuInuKAuKFuKWuMvuMvuMUuMvuMvuRhuRVuMvuMvuMUuSyuMvuUfuMvuWAuMvuMvuWEuWTuWTuXauZMvaosbPsbPsbPsbPsbPmoQvbcvdnmoQitVvfwvgnitVvgStUztUUvhpvicviLviYvjavjPvnivnVvoEvoHokXokXokXokXitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXruXraafaaaaaaaaamunxPQvpckwtaPZaPZaPZaPZaPZaeVafkampvpqaakvpFvtfvtGvwjaeYaalaanaeZafkafbafdakQaaoafkafkvwOafkaqGafkamudWWvysvyLvBhvBivBsaflamvalFafmavlaTtteKamKafnaAncpDvGtvIMckbaezaezaezaezaezaAAvMcapDvPpagcalnafoafpaAAvPIafqafrafsvQivQUvQYvSRvUHtwSvVVvXnwaxwbMwgBvQiwgSvQiwhFqHBafswjRvQiwjZwmhwouafswoIwaxwqRwrxafswsfwxivQiwytsbPsbPsbPsbPsbPmoQwApqSbmoQwCCwFwwFxvgnwLFtUztUUwMAwRKwRNwSjwRNwTJwTOubvwUTwXhwXUjPJjPJjSgwZUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaaaaaaaaakwtxPQxPQkwtamRaPZaPZaPZaPZamVadDamXlOFxaixbaanMamZxbGanMafBanManManManMafVakQxcslOFlOFlOFlOFlOFlOFlOFlOFlOFaVyaEDlOFafXanganhafYalGaniafZagaxcTagaagaagaagaagackbxdSaezaezaezaezaAAxfyaAzagbagcagfageagfaAAxhVxjvwouxkhsbExkGrJFxmvaLPrJFrJFrJFrJFaqlaqlaqlaqlxvaxvdxwIxyoxyCxyCxyCxyCxAcxyCxBjxCgxCUxFoxGCxHwsbExHLsbHxIHsbPsbPsbPsbPmoQxNhxSgmoQxTkxTpxUlxUJxVdxVwxYRxZgxZLxZLxZLycDydoyehyfyygYyiPyjkjPJjPJjSgwZUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtyjZxPQkwtkwtkwtkwtkwtkwtamVlOFlOFlOFaaqxPQanManGykPylDanIymcahifCUanManLlFPatpaVyqUUrzjanOavPavPanPagDmdjtTGavsaVyatmatmanRwXpnJPagEaoJmlyagFpXocljaoJfwvfAVaiSaiSqrawxCdrQaiSaAAaAAaAAaAAaAAaAAagGaAAaAAmfWuMOdBIrUtqCxqCxaLPcyLjCGehFmmkcmrbaYaqldEssPhnVnijMjOiqHBkdqxyCoswhJpxyCrxvrOusrXxyCtmJtFZtNkqDQqDQqDQlTimoQmoQmoQmoQmoQmoQpKGqSbmoQnnVcTddtTxCmqHRwRKwSjhAXfMRrcapgbkapmvzsHhmvzaTXmNMllkrfSpXBsLGopgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaaaaaakwtkwtxPQxPQxPQxPQaqHaqHaqHaoyaqHagRagTagTagUanManGahiahiahhfsvahifCUanMaujahkahkcifjAajAaddhddhbHzddhddhddhvtOcBwaVyaaaaaaaBGaoGyjcaoIaOdoUrahpahqahqaOdrlopxOlXXoOQcjitzOxAYgPWakZglPgiJaoVazvjJoahrgDjazvaxBygPahsauTaaaaaaaLPouGjCGgAmpGXpTKpGXqrcxILwEwfqSgDsfVAseaseaxyCjpubcooZIrxvsZQmJJxyCcSwsWoriowRbtSkhDwwCIalIjUvaxoasxpLxdsSpKGmoQmoQitVitVitVitVipaxVJuvxcvYfHjukeptPcvYfZrwbnbNebNejgEitVitVitVitVitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaafaafkwtkwtnFXnFXsxkahxnTHahyaAsgtwhiRapwapwapwanManGlcJahitLvahilZYkwianMmllqWyqWyaQXaQXaQXaQXaQXaQXaQXaQXwiWxJPpFUaVyaaaaaaaJsapMdgDaAqaNGwgmoZrahNnsvqkXbVFrbinStnStobSnStnuBfQTakZbgtmrxapVjMWjCDahOapYazvaqaahPahQaEyaaaaaaaLPmRejCGpGXxfvuDEuDEaqlkbLpIIpIIijMwzVaqpaqpxyCkiFveqxyCfQwbcovYHxyCczesRnxqradfnzccPycPymoQbjMlrddLumGRmRtmoQmoQaafaaaaaaaaaitVitVitVaMtnWGkORokXjSUwryvBzitVxSSqflkaUkMIitVaaaaaaaaafdWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtkwtnFXdWndWndWndWndWndWndWndWnbEmdWndWndWndWndWndWndWndWndWnaBtaqRaqUaqTaQXcqFoMNgOvjYWncdfkDaQXaVyfQHvbPaVyaaaaaaaJsawXahXkhtaOdmwmaNSahYeqCkerbQmeQnpOweHufpwekIqowmavakZkxpmLDqApaAllbIaDliHDazvarxaAbaryaEyaaaaaaaLPpyuarFlxFdWLdWLdWLaKjarEarEarEaKjvGpaKjarGaKjdWLdWLdWLdWLdWLdWLdWLlTilTilTilTilTidnHdnHmoQmoQmoQmoQrYmrYmmoQaafaafaaaaaaaaaaaaaaaitVmvNjPJjPJokXjPJjPJmvNitVfjSwmifCAitVitVaafaafaafaafsFQvYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakwtaqHaIMaigarTggEmZNrPlazbdHFtRvkUytqnlRtnjmuHgcbLgUXjlpascaAatKXaMggmYazRjfTshmaumaumaumpcoaQXcOQdViaVyaVyaaaaaaaJsajSpjqaiiaijaijaoJaoJaoJaoJeYmgPYjLncLmeKzviWlJZfkBitpbmtmzLaiuazvbOwxBRazvazvauXmPCasyaEyaaaaaaaLPaLPaDjaiwdWLaqgasBasEasEaizasEmdbasGasIasJlsfetdpSWasKasKrTVqcwdWLhzasalsalsalxsqaYbaYbaSusalsalsalkEekEeaaaaaaaaaaaaaaaaaaaaaaaaitVlposEojPJokXjPJjPJlsbitVitVlselsJitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVSaaaaaakwtiXFaIMshAxSpdcAkJdkJdjgWwdCwdCrfeazWdMdaEIaEIpEYaKaaiOataaAavRdatdaiPazRaBxaKberXaumaumqqvaiMcOQdVidYJaaaaaaaaaaBGxNUwPyaIqwSmaiSaiSauraurqVukTsrFOekIekIekImOHqowvrJrVvbDSfOkatuazvazvazvazvatyaxpgSQaycauTaaaaaaaaaazQaDjwNbdWLajboIpssXatJatJatJatJatJatJjUCatJatJatJatJhPcdzIlgqdWLvLQpOZkfMmvKtakbLWrFkbWNwZopoWqwbsalkEeaaaaaaaaaaaaaaaaaaaaaaaaitVxdzjPJjPJokXjPJjPJustitVjVVjVVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaafaaakwtaoyaIMshAaOmaPdaPdaPdaPdaPdaPdaPdaENatZaKaaKaaDtaKaaKaauhauivHbaukaAuajyaCXaumaunauoaupeHxaQXcOQdVidYJaaaaaaaaaaBGaBGauBaIqaIqedUqVuaiSaurqVufsfpoYbbEqvDekIpORuEJpilakZmUCrOqhBFvRzazvajzauOaEgaxpauRauTauTaaaaaaaaaazQaDjauZdWLavbafLjUCxhdjUCxhdxhdxhdxhdjUCxhdxhdxhdxhdccfaANdSsdWLvLQpOZpZPlIClIClIClIClIClIClICwnbghBkEeaaaaaaaaaaaaaaaaaaaaaaaaitVitVitVitVitVitVitVitVitVaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaafaaakwtaoyaIMshAaOmaPdaPdaPdaPdaPdaPdaPdaENavyaKaaKaaDtaKaaKaavBavCavDajZakaawRakcakdakeakfavEavFaQXaVyfLZdYJaaaaaaaaaaaaaJsaIqaIqaIqaIqpIxaiSaiSaiSqtcaiSaiSvPvvDKekIvObavTakZxmVeqfjCaakZakZakkayraysawcaEgaEyaaaaaaaaaaaaazQaDjawjdWLawlafLjUCaNkjUCjUCxhdjUCjUCxhdjUCjUCjUCjUCccfaANhzXdWLvLQpOZcsTlMFwozdgvjlAfRpjvojMxqwbsalkEeaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafkwtsUPaIMnYiaOmaPdaPdaPdaPdaPdaPdaPdawIawKawKawKaDtaKaaKaawMavCawNakHakSazRazRawRakYazRazRazRazRryBavsaVyaVyaaaaaaaaaaJsaJsaIqaIqaIqaIqwSmkSExebxebxebrXVkmrjPGmdNedOjzzakZakZakZakZakZatyaEgaxpaEgaEgaEyaEyaaaaaaaaaaLPaLPaDjaKjdWLaxAbMXaIAxhdxhdxhdxhdjUCxhdxhdjUCnHZjUCjUCccfsMVhsedWLvtZsalsalsalxsqsalsalaSusalsalsalkEekEeaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakwtkwtdWnshAaOmaPdaPdaPdaPdaPdaPdaPdtcOtcOtcOtusaDtaKaaKaqnDaAadRmakHihhnNoljFaMgmGLaAacOQbFRaybddhhtYrneaVyaaaaaaaaaaaaaJsaJsaIqaIqaIqaIqlYhwpTqfEdwTagElkkmDcgxlhiLfNkcUbogRgxxjBWtqKaysaysawcaEgaEyaEyaaaaaaaaaaaaaLPamlaDjdWLdWLdWLaaNaIAxhdxhdjUCjUCjUCjUCjUCjUCjUCjUCxhdccfhxUdWLdWLmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQaafaafaafaafaafaafvYivYixrXvYivYivYivYivYiaVSxrXaaaaaavYivYivYivYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJxshAaOmaPdaPdaPdaPdaPdaPdaPdnTwaDAeRZaDAtOBaEIaEIhmGhzUiXhrUruwFrKjmfjrKjniZsLFcOQbFRddhddhoijmXnaVyaaaaaaaaaaaaaaaaJsaJsaIqkXgaokkfgiUoqFgmQpiXQjFEkxEdNSidcntgkADoSBcMWtQhtmdvYvaolaEgaEyaEyaaaaaaaaaaaaaaaaLPiqzazDaKjdWLaonaANaIAjUCjUCxhdjUCaNkjUCxhdxhdjUCxhdjUCjUCaANvdCdWLaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaaaaaaaaaaIHcvBaOmaPdaPdaPdaPdaPdgxjaPdnweaKaaKaoSCaDtapeapiazZaAaaqcaALszfaqdaAcaqeeRraAacOQaqhwQPefaavsaqiaVyaaaaaaaaaeanaaaaaaaJsaJsaBGhsxiWfcaYdyQdwTagElkkjqzanovocmHKuEWuUxqgfdNKaABsvDauTaEyaEyaaaaaaeanaaaaaaaaaaLPvyDaDjktodWLaAJaANaIAjUCxhdxhdjUCjUCxhdxhdxhdjUCxhdxhdccfaANvdCdWLaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaasFQaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaacJxshAaOmaPdaPdaPdaPdaPdaPdaPdawIawKsHAawKaEUdWndWndWnaBtaBtaBtaDEaGdarMaGdaGdaAaaVyaVyaVyaVyavsaPMarRarRarRaaaaaaaaaaaaaaaaaaaBGaBGaJsaJsaJsaBGaBGxsQjddanovhfgSHauTauTaEyaEyaEyauTauTaaaaaaaaaaaaaaaaaaaBYaBYaBYgdraBZaCadWLasbaFwjUCjUCxhdxhdjUCjUCxhdaNkjUCxhdxhdxhdccfdIEaDodWLaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtrhuxPQkwtaPZaPZaPZaPZaPZamVaGlanHrhBriladtrmMrnAroUaFfakNalzakNakNakNakNhNDakRaPaamqamqamqamqadBaFfaFfaFfaFfciylOFadCadDrrSrsersYrtPagaagarvkrwjagackbckbckbckbaezaezaezaezaezaAArxyrxWrzpagcagfrzNrAiaAAansalorDarDzrGJrIPrJFrKOaCdrJFrJFrJFrJFnpunpunpunpurLdrLxrOGrRcnsensensenserRhnserUlrWqrXyrYcrZPrJFsbbsbEsbHsbPsbPsbPsbPsbPmoQqSbsbUmoQsbZsfLsfMshNsirslpsltsmHsqXsqXsqXswTsyHszaszeszmsAosAEjPJsEojPJitVaafaafaafaafeaVuXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXruXraafaaaaaaaaamunsEEsERkwtaPZaPZaPZaPZaPZadKasqadNadOaahadPalwpdfsFFasqadQsIEpdfasqalCasqadRsIMaqTadTsJCsLOalEadSsNEsSrsSPsTTsVZsXqsXzadTadVsZTtaJavltezteKaRttfUtgDthptijtltckbaezaezaezaezaezaAAtlHtmAtnBagctoctoDtrgaAAtrwadWadXadYtsaadZtsUtvktwPtwStxftyFtyStAWadYtBNtsatsatCfqHBadYtCHtCOtDPtyStEladYtEPtyStHLtLKadYtNetNmtsatODsbPsbPsbPsbPsbPmoQtOJqSbmoQtOLtPrtQFtRRtSItUztUUtZruapuauqXWuauuaSubbubvucducfudFjPJjPJjPJitVaaaaaaaaavYiuXruXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXreaVaafaafaafaafmunueVuiDkwtaPZaPZaPZaPZaPZalXujealZanFaaianEakVakVukkapJaenaeoakVakVakVakVaerukxakVakVapJakVakVaetakVulGumiunFunMakVaeuakVakVuoHuptakVuqGuqMusaaewaexaeyuyMuAJckbaezaezaezaezaezaAAuBzaeAuBFuHTuHYaoYalnaAAaeCaeGaeHuHZuHZaejuHZuIauIbuInuKAuKFuKWuMvuMvuMUuMvuMvuRhuRVuMvuMvuMUuSyuMvuUfuMvuWAuMvuMvuWEuWTuWTuXauZMvaosbPsbPsbPsbPsbPmoQvbcvdnmoQitVvfwvgnitVvgStUztUUvhpvicviLviYvjavjPvnivnVvoEvoHokXokXokXokXitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauXruXraafaaaaaaaaamunxPQvpckwtaPZaPZaPZaPZaPZaeVafkampvpqaakvpFvtfvtGvwjaeYaalaanaeZafkafbafkcqFxcsvtGafkvwOafkaqGafkamudWWvysvyLvBhvBivBsaflamvalFafmavlaTtteKamKafnaAncpDvGtvIMckbaezaezaezaezaezaAAvMcapDvPpagcalnafoafpaAAvPIafqafrafsvQivQUvQYvSRvUHtwSvVVvXnwaxwbMwgBvQiwgSvQiwhFqHBafswjRvQiwjZwmhwouafswoIwaxwqRwrxafswsfwxivQiwytsbPsbPsbPsbPsbPmoQwApqSbmoQwCCwFwwFxvgnwLFtUztUUwMAwRKwRNwSjwRNwTJwTOubvwUTwXhwXUjPJjPJjSgwZUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaaaaaaaaakwtxPQxPQkwtamRaPZaPZaPZaPZamVadDamXlOFxaixbaanMamZxbGanMafBanManManManManMakQxcsvgGaVyaVyaVyaVyaVyaVyaVyaVyaVyaEDlOFafXanganhafYalGaniafZagaxcTagaagaagaagaagackbxdSaezaezaezaezaAAxfyaAzagbagcagfageagfaAAxhVxjvwouxkhsbExkGrJFxmvaLPrJFrJFrJFrJFaqlaqlaqlaqlxvaxvdxwIxyoxyCxyCxyCxyCxAcxyCxBjxCgxCUxFoxGCxHwsbExHLsbHxIHsbPsbPsbPsbPmoQxNhxSgmoQxTkxTpxUlxUJxVdxVwxYRxZgxZLxZLxZLycDydoyehyfyygYyiPyjkjPJjPJjSgwZUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtyjZxPQkwtkwtkwtkwtkwtkwtamVlOFlOFlOFaaqxPQanManGykPylDanIymcahiahithlanMlFPatpqUUaVyrzjanOavPavPanPagDmdjtTGavsaVyatmatmanRwXpnJPagEaoJmlyagFpXocljaoJfwvfAVaiSaiSqrawxCdrQaiSaAAaAAaAAaAAaAAaAAagGaAAaAAmfWuMOdBIrUtqCxqCxaLPcyLjCGehFmmkcmrbaYaqldEssPhnVnijMjOiqHBkdqxyCoswhJpxyCrxvrOusrXxyCtmJtFZtNkqDQqDQqDQlTimoQmoQmoQmoQmoQmoQpKGqSbmoQnnVcTddtTxCmqHRwRKwSjhAXfMRrcapgbkapmvzsHhmvzaTXmNMllkrfSpXBsLGopgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaaaaaakwtkwtxPQxPQxPQxPQaqHaqHaqHaoyaqHagRagTagTagUanManGahiahiahhfsvahiahigUXanMaujahkahkaqhjAaddhddhbHzddhddhddhvtOcBwaVyaaaaaaaBGaoGyjcaoIaOdoUrahpahqahqaOdrlopxOlXXoOQcjitzOxAYgPWakZglPgiJaoVazvjJoahrgDjazvaxBygPahsauTaaaaaaaLPouGjCGgAmpGXpTKpGXqrcxILwEwfqSgDsfVAseaseaxyCjpubcooZIrxvsZQmJJxyCcSwsWoriowRbtSkhDwwCIalIjUvaxoasxpLxdsSpKGmoQmoQitVitVitVitVipaxVJuvxcvYfHjukeptPcvYfZrwbnbNebNejgEitVitVitVitVitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYivYiaafaafkwtkwtnFXnFXsxkahxnTHahyaAsgtwhiRapwapwapwanManGlcJahitLvahilZYkwianLanMmllqWyqWyaQXaQXaQXaQXaQXaQXaQXwiWxJPpFUaVyaaaaaaaJsapMdgDaAqaNGwgmoZrahNnsvqkXbVFrbinStnStobSnStnuBfQTakZbgtmrxapVjMWjCDahOapYazvaqaahPahQaEyaaaaaaaLPmRejCGpGXxfvuDEuDEaqlkbLpIIpIIijMwzVaqpaqpxyCkiFveqxyCfQwbcovYHxyCczesRnxqradfnzccPycPymoQbjMlrddLumGRmRtmoQmoQaafaaaaaaaaaitVitVitVaMtnWGkORokXjSUwryvBzitVxSSqflkaUkMIitVaaaaaaaaafdWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaakwtkwtnFXdWndWndWndWndWndWndWndWnbEmdWndWndWndWndWndWndWndWndWndWnaBtaqUavCaesazRoMNgOvjYWncdfkDaQXaVyfQHvbPaVyaaaaaaaJsawXahXkhtaOdmwmaNSahYeqCkerbQmeQnpOweHufpwekIqowmavakZkxpmLDqApaAllbIaDliHDazvarxaAbaryaEyaaaaaaaLPpyuarFlxFdWLdWLdWLaKjarEarEarEaKjvGpaKjarGaKjdWLdWLdWLdWLdWLdWLdWLlTilTilTilTilTidnHdnHmoQmoQmoQmoQrYmrYmmoQaafaafaaaaaaaaaaaaaaaitVmvNjPJjPJokXjPJjPJmvNitVfjSwmifCAitVitVaafaafaafaafsFQvYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakwtaqHaIMaigarTggEmZNrPlazbdHFtRvkUytqnlRtnjmuHgcbLrPljlpascajyaAaakSaMggmYazRshmaumaumhZjpcoaQXcOQdViaVyaVyaaaaaaaJsajSpjqaiiaijaijaoJaoJaoJaoJeYmgPYjLncLmeKzviWlJZfkBitpbmtmzLaiuazvbOwxBRazvazvauXmPCasyaEyaaaaaaaLPaLPaDjaiwdWLaqgasBasEasEaizasEmdbasGasIasJlsfetdpSWasKasKrTVqcwdWLhzasalsalsalxsqaYbaYbaSusalsalsalkEekEeaaaaaaaaaaaaaaaaaaaaaaaaitVlposEojPJokXjPJjPJlsbitVitVlselsJitVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVSaaaaaakwtiXFaIMshAxSpdcAkJdkJdjgWwdCwdCrfeazWdMdaEIaEIpEYaKaaKaaiOwtgaAarVEatdaiPazRaKberXaumaumqqvaiMcOQdVidYJaaaaaaaaaaBGxNUwPyaIqwSmaiSaiSauraurqVukTsrFOekIekIekImOHqowvrJrVvbDSfOkatuazvazvazvazvatyaxpgSQaycauTaaaaaaaaaazQaDjwNbdWLajboIpssXatJatJatJatJatJatJjUCatJatJatJatJhPcdzIlgqdWLvLQpOZkfMmvKtakbLWrFkbWNwZopoWqwbsalkEeaaaaaaaaaaaaaaaaaaaaaaaaitVxdzjPJjPJokXjPJjPJustitVjVVjVVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaafaaakwtaoyaIMshAaOmaPdaPdaPdaPdaPdaPdaPdaENatZaKaaKaaDtaKaaKaaKaauivHbaukaAusLFaBxaCXaunauoaupeHxaQXcOQdVidYJaaaaaaaaaaBGaBGauBaIqaIqedUqVuaiSaurqVufsfpoYbbEqvDekIpORuEJpilakZmUCrOqhBFvRzazvajzauOaEgaxpauRauTauTaaaaaaaaaazQaDjauZdWLavbafLjUCxhdjUCxhdxhdxhdxhdjUCxhdxhdxhdxhdccfaANdSsdWLvLQpOZpZPlIClIClIClIClIClIClICwnbghBkEeaaaaaaaaaaaaaaaaaaaaaaaaitVitVitVitVitVitVitVitVitVaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaafaaakwtaoyaIMshAaOmaPdaPdaPdaPdaPdaPdaPdaENavyaKaaKaaDtaKaaKaaKaavBavDajZakaaaoakcakdakeakfavEavFaQXaVyfLZdYJaaaaaaaaaaaaaJsaIqaIqaIqaIqpIxaiSaiSaiSqtcaiSaiSvPvvDKekIvObavTakZxmVeqfjCaakZakZakkayraysawcaEgaEyaaaaaaaaaaaaazQaDjawjdWLawlafLjUCaNkjUCjUCxhdjUCjUCxhdjUCjUCjUCjUCccfaANhzXdWLvLQpOZcsTlMFwozdgvjlAfRpjvojMxqwbsalkEeaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafkwtsUPaIMnYiaOmaPdaPdaPdaPdaPdaPdaPdawIawKawKawKaDtaKaaKaaKaawMavDawNakHcyKazRawRakYazRazRazRazRryBavsaVyaVyaaaaaaaaaaJsaJsaIqaIqaIqaIqwSmkSExebxebxebrXVkmrjPGmdNedOjzzakZakZakZakZakZatyaEgaxpaEgaEgaEyaEyaaaaaaaaaaLPaLPaDjaKjdWLaxAbMXaIAxhdxhdxhdxhdjUCxhdxhdjUCnHZjUCjUCccfsMVhsedWLvtZsalsalsalxsqsalsalaSusalsalsalkEekEeaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakwtkwtdWnshAaOmaPdaPdaPdaPdaPdaPdaPdtcOtcOtcOtusaDtaKaaKaqnDaAaaAanNoakHihhljFaMgmGLafdaAacOQaybddhhtYrneaVyaaaaaaaaaaaaaJsaJsaIqaIqaIqaIqlYhwpTqfEdwTagElkkmDcgxlhiLfNkcUbogRgxxjBWtqKaysaysawcaEgaEyaEyaaaaaaaaaaaaaLPamlaDjdWLdWLdWLaaNaIAxhdxhdjUCjUCjUCjUCjUCjUCjUCjUCxhdccfhxUdWLdWLmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQmoQaafaafaafaafaafaafvYivYixrXvYivYivYivYivYiaVSxrXaaaaaavYivYivYivYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJxshAaOmaPdaPdaPdaPdaPdaPdaPdnTwaDAeRZaDAtOBaEIaEIhmGhzUiXhrUruwFvRdmfjrKjniZsLFaqRcOQbFRddhoijmXnaVyaaaaaaaaaaaaaaaaJsaJsaIqkXgaokkfgiUoqFgmQpiXQjFEkxEdNSidcntgkADoSBcMWtQhtmdvYvaolaEgaEyaEyaaaaaaaaaaaaaaaaLPiqzazDaKjdWLaonaANaIAjUCjUCxhdjUCaNkjUCxhdxhdjUCxhdjUCjUCaANvdCdWLaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxrXaaaaaaaaaaIHcvBaOmaPdaPdaPdaPdaPdgxjaPdnweaKaaKaoSCaDtapeapiazZaAaaqcaALszfaqdaAcaqeeRreRraAacOQwQPefaavsaqiaVyaaaaaaaaaeanaaaaaaaJsaJsaBGhsxiWfcaYdyQdwTagElkkjqzanovocmHKuEWuUxqgfdNKaABsvDauTaEyaEyaaaaaaeanaaaaaaaaaaLPvyDaDjktodWLaAJaANaIAjUCxhdxhdjUCjUCxhdxhdxhdjUCxhdxhdccfaANvdCdWLaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaasFQaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeanaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaacJxshAaOmaPdaPdaPdaPdaPdaPdaPdawIawKsHAawKaEUdWndWndWnaBtaBtaBtaDEaGdarMaGdaGdaVyaVyaVyaVyaVyavsaPMarRarRarRaaaaaaaaaaaaaaaaaaaBGaBGaJsaJsaJsaBGaBGxsQjddanovhfgSHauTauTaEyaEyaEyauTauTaaaaaaaaaaaaaaaaaaaBYaBYaBYgdraBZaCadWLasbaFwjUCjUCxhdxhdjUCjUCxhdaNkjUCxhdxhdxhdccfdIEaDodWLaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaavYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaafaafaafdWnshAaOmaPdaPdaPdaPdaPdaPdaPdatiatiatibDsatEdWneYAeYAeYAeYAeYAaDEaCAaCBaCCaGdaCEaCEaCEaCEaVyavsaPMatShakarRarRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCYwGoaCVanojzCttQaCYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBYaBYaDhaDigdraDjpHYdWLaDkqnPaIAxhdxhdxhdjUCjUCjUCxhdjUCjUCutCjUCjUCfphvdCdWLaaaaaaaaaaaaaaavYivYivYiaafvYivYivYiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaadWnshAaOmaPdaPdaPdaPdaPdaPdaPdnTwaDAaDAaDAaDtayjeYAeYAeYAeYAeYAaDEaDLaDMavoaGdaDNddhddhddhojgavsavtavufwcwUgarRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCYaJUpUlaEblZZkPuaCYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBYvfXaSxvzYbaeaDjfWFdWLaEpntojUCxhdxhdxhdjUCaNkjUCxhdjUCxhdodgjUCjUChrxaardWLaKjaaaaaaaaavYivYiaaauXreaVuXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavYiaaaaaaaaadWnsyraOmaPdaPdaPdaPdaPdaPdaPdaENaKaaKaaKaatCiiJeYAeYAeYAeYAeYAaDEpLhaEZayKaGdddhddhddhayNaVyaPraPMazkfwcurQarRaaaaaaaaaaaaaFhaHHaDTaHHaFjaaaaaanbunbuaLQanoaUcdoxdoxdoxdoxdoxdoxdWAdWAdWAdoxdoxdoxdoxaBYummaSxaAggdraDjaKjdWLdWLaFzjUCxhdxhdxhdxhdjUCjUCxhdxhdjUCaFAxhdjUCmPfabxdWLdWLaafaafaafvYiaaaaaauXruXruXraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
diff --git a/maps/southern_cross/southern_cross-10.dmm b/maps/southern_cross/southern_cross-10.dmm
index b16b8c4ba0..d0a88e5b7b 100644
--- a/maps/southern_cross/southern_cross-10.dmm
+++ b/maps/southern_cross/southern_cross-10.dmm
@@ -839,9 +839,6 @@
/turf/simulated/floor/tiled/white,
/area/surface/outpost/shelter)
"SI" = (
-/obj/machinery/power/port_gen/pacman{
- anchored = 1
- },
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -851,8 +848,10 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/item/stack/material/phoron{
- amount = 2
+/obj/machinery/power/rtg/fake_gen{
+ desc = "A simple power generator, used in small outposts to reliably provide power for decades. This one seems to have been stripped of some parts, but is otherwise functional!... Enough...";
+ name = "Wilderness Shelter power generator";
+ power_gen = 4250
},
/turf/simulated/floor/plating,
/area/surface/outpost/shelter/utilityroom)
@@ -874,7 +873,6 @@
/turf/simulated/floor/tiled/white,
/area/surface/outpost/shelter)
"WB" = (
-/obj/machinery/power/rtg/advanced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -884,6 +882,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/stack/material/phoron{
+ amount = 2
+ },
/turf/simulated/floor/plating,
/area/surface/outpost/shelter/utilityroom)
"WE" = (
diff --git a/maps/southern_cross/southern_cross-2.dmm b/maps/southern_cross/southern_cross-2.dmm
index d47d5d15ee..08e8f17959 100644
--- a/maps/southern_cross/southern_cross-2.dmm
+++ b/maps/southern_cross/southern_cross-2.dmm
@@ -1,7569 +1,147556 @@
-"aaa" = (/turf/space,/area/space)
-"aab" = (/obj/item/stack/rods,/turf/space,/area/space)
-"aac" = (/obj/structure/lattice,/obj/machinery/camera/network/security{c_tag = "SEC - Armory Exterior"; dir = 1},/turf/space,/area/space)
-"aad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/event_spawn/morphspawn,/turf/simulated/floor/plating,/area/maintenance/research)
-"aae" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/landmark/event_spawn/morphspawn,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aaf" = (/obj/structure/lattice,/turf/space,/area/space)
-"aag" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
-"aah" = (/obj/structure/lattice,/obj/structure/grille/broken,/obj/item/stack/rods,/turf/space,/area/space)
-"aai" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/event_spawn/morphspawn,/turf/simulated/floor/plating,/area/maintenance/bar)
-"aaj" = (/turf/simulated/wall/r_wall,/area/security/armoury)
-"aak" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/event_spawn/morphspawn,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"aal" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/event_spawn/morphspawn,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"aam" = (/turf/simulated/wall/r_wall,/area/security/tactical)
-"aan" = (/turf/simulated/wall/r_wall,/area/space)
-"aao" = (/turf/simulated/wall/r_wall,/area/rnd/test_area)
-"aap" = (/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aas" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aat" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aav" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/airless,/area/rnd/test_area)
-"aaw" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/effect/floor_decal/corner/red/full{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/brigdoor/southleft{name = "Riot Armor"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"aax" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/effect/floor_decal/corner/red{dir = 5},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/window/brigdoor/southright{name = "Riot Armor"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"aay" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/device/suit_cooling_unit,/obj/item/weapon/tank/oxygen,/obj/effect/floor_decal/corner/white{dir = 1},/obj/effect/floor_decal/corner/blue{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/southleft{name = "EVA Suit"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"aaz" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/effect/floor_decal/corner/red{dir = 5},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/brigdoor/southleft{name = "Riot Armor"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"aaE" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aaI" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aaK" = (/obj/structure/table/rack,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/weapon/melee/baton/loaded,/obj/effect/floor_decal/corner/red/full{dir = 1},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/window/brigdoor/southright{name = "Riot Armor"},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"aaL" = (/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Test Chamber Fore"; network = list("Research","Toxins Test Area")},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aaM" = (/turf/simulated/wall/r_wall,/area/security/prison)
-"aaN" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall/r_wall,/area/security/prison)
-"aaQ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"aaT" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_north = 1; tag_south = 2; tag_west = 7},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aaU" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aaV" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aaW" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"abc" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"abd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"abe" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"abf" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"abg" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"abh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"abk" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/machinery/door/window/brigdoor/southleft{name = "Energy"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"abl" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/corner/blue{dir = 5},/obj/item/weapon/gun/energy/ionrifle{pixel_y = -3},/obj/item/weapon/gun/energy/ionrifle{pixel_x = -2; pixel_y = -5},/obj/machinery/door/window/brigdoor/southright{name = "Energy"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"abn" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"abo" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"abq" = (/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/structure/table/rack,/obj/item/weapon/tank/oxygen/yellow,/obj/item/weapon/tank/oxygen/yellow,/obj/machinery/alarm{pixel_y = 23},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abr" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Atmospherics"; charge = 2e+006; input_attempt = 1},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abs" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Atmos Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abt" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/atmospherics)
-"abx" = (/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/space)
-"aby" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light/small{dir = 4},/obj/machinery/shield_diffuser,/obj/structure/sign/directions/ladder_up{dir = 1; name = "\improper Up One Deck"; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/eva{dir = 1; pixel_x = 32},/obj/structure/sign/directions/command{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/airless,/area/maintenance/security_port)
-"abz" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"abA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"abC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abE" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"abF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Atmospherics Substation"; req_one_access = list(11,24)},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/random/trash,/turf/simulated/floor,/area/maintenance/engineering)
-"abJ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/maintenance/engineering)
-"abK" = (/turf/simulated/floor/airless,/area/space)
-"abL" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"abM" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"abO" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"abP" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/obj/machinery/camera/network/engineering{c_tag = "SUBS - Atmospherics"; dir = 1},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abQ" = (/obj/machinery/light/small,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"abR" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "eva_port_pump"},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"abS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"abU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"abV" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/item/weapon/gun/projectile/shotgun/pump{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/projectile/shotgun/pump,/obj/machinery/door/window/brigdoor/southleft{name = "Ballistics"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"abW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"abX" = (/obj/structure/lattice,/obj/item/stack/rods,/obj/item/stack/rods,/turf/space,/area/space)
-"ack" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/engineering)
-"acm" = (/turf/simulated/wall/r_wall,/area/maintenance/engineering)
-"acn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/sign/warning/airlock{pixel_x = -32},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"acp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"acs" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"act" = (/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"acu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"acv" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 1; tag_west = 6},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acw" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acx" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/machinery/computer/security/engineering,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"acy" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"acz" = (/obj/machinery/atmospherics/binary/pump/on{name = "Air to Ports"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acA" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Ports to Waste"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/table/steel,/obj/item/weapon/paper{info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"acD" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Engineering"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"acE" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"acH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/maintenance/engineering)
-"acI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/engineering)
-"acL" = (/obj/structure/closet/crate,/obj/item/weapon/storage/backpack,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/device/assembly/prox_sensor,/obj/item/device/flashlight,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"acM" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/powercell,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"acN" = (/obj/structure/table/rack,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/clothing/glasses/meson,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/engineering)
-"acP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acQ" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acR" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acS" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"acT" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"acU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"acV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"acW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"acX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"acY" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"acZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"ada" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Engineering Substation"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"adb" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/engineering)
-"adc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/engineering)
-"adg" = (/turf/simulated/wall/r_wall,/area/maintenance/research)
-"adh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"adi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Phoron to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"adj" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"adk" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"adl" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/machinery/computer/atmoscontrol{dir = 1},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 24; req_one_access = list(10,24)},/obj/machinery/light_switch{name = "light switch "; pixel_x = 34},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"adm" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ado" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"adu" = (/obj/structure/table/rack,/obj/item/weapon/melee/energy/spear{lcolor = "#FF0000"},/obj/item/weapon/melee/energy/spear{lcolor = "#FF0000"},/obj/item/weapon/melee/energy/spear{lcolor = "#FF0000"},/obj/item/weapon/melee/energy/spear{lcolor = "#FF0000"},/obj/machinery/door/window/brigdoor/southleft{name = "Energy Spears"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"adv" = (/obj/machinery/status_display{pixel_y = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/dispenser,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"adw" = (/obj/structure/table/standard,/obj/machinery/newscaster{pixel_y = -30},/obj/item/clothing/glasses/welding,/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"adx" = (/obj/structure/table/standard,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 3; name = "Atmos RC"; pixel_y = -32},/obj/item/device/t_scanner,/obj/item/device/radio/headset/headset_eng,/obj/item/weapon/cartridge/atmos,/obj/item/weapon/cartridge/atmos,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/device/pipe_painter,/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"adz" = (/turf/simulated/wall,/area/engineering/atmos)
-"adB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Engineering Substation"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"adE" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor,/area/maintenance/engineering)
-"adI" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"adJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"adN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"adO" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/machinery/door/window/brigdoor/southleft{name = "Energy"},/obj/item/weapon/gun/energy/plasmastun,/obj/item/weapon/gun/energy/gun/burst,/obj/item/weapon/gun/energy/gun/burst,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"adP" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/corner/blue/full{dir = 1},/obj/machinery/door/window/brigdoor/southright{name = "Energy"},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"adQ" = (/turf/simulated/wall/r_wall,/area/security/security_restroom)
-"adR" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/security_lockerroom)
-"adS" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/security_lockerroom)
-"adT" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/security_lockerroom)
-"adU" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall/r_wall,/area/security/range)
-"adV" = (/turf/simulated/wall/r_wall,/area/security/range)
-"adW" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"adZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/atmos_hallway)
-"aeb" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aec" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aed" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aee" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aef" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aeg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance Access"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/engineering/hallway/atmos_hallway)
-"aei" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/valve/shutoff{name = "Engineering automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aej" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aek" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"ael" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aem" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aeo" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/clothing/head/soft/orange,/obj/item/clothing/shoes/sandal,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/clothing/head/flatcap,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/security/prison)
-"aeq" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aer" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aes" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"aet" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/storage)
-"aeu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aev" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/atmos_hallway)
-"aex" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aey" = (/obj/machinery/status_display{pixel_y = -32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aez" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aeA" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"aeC" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aeD" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aeE" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aeG" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Hot Loop Waste-to-Canister pump"},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/engineering/engine_waste)
-"aeJ" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/technology_scanner,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aeK" = (/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aeL" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/research)
-"aeM" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets{pixel_x = -3; pixel_y = -3},/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aeN" = (/obj/structure/table/steel,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/material/minihoe,/obj/item/device/analyzer/plant_analyzer,/obj/item/clothing/head/greenbandana,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aeQ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aeR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aeT" = (/obj/machinery/vending/hydronutrients{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aeU" = (/turf/simulated/wall,/area/security/prison)
-"aeV" = (/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/engineering/storage)
-"aeW" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"aeY" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Hallway 2"; dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"afb" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"afc" = (/turf/simulated/wall,/area/engineering/foyer)
-"afi" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afk" = (/obj/item/device/t_scanner,/obj/structure/table/steel,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/random/cash,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afm" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afn" = (/obj/random/junk,/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afp" = (/turf/simulated/wall,/area/maintenance/substation/research)
-"afq" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"afr" = (/turf/simulated/wall,/area/crew_quarters/heads/sc/hor)
-"afs" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/rnd/research)
-"aft" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/prison)
-"afw" = (/turf/simulated/floor/tiled/freezer,/area/security/prison)
-"afx" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/laserproof,/obj/machinery/door/window/brigdoor/eastleft{name = "Laser Armor"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"afy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"afz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"afA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"afC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"afD" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"afF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"afG" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"afH" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"afI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/obj/structure/cable/orange{d1 = 4; d2 = 10; icon_state = "4-10"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"afJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"afK" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"afL" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"afN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afO" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Research Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"afP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/rnd/research)
-"afQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/security/armoury)
-"afR" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/empslite{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"afS" = (/obj/structure/table/standard,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/item/clothing/glasses/sunglasses/sechud/tactical,/obj/effect/floor_decal/industrial/outline/grey,/obj/item/device/binoculars{pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"afT" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/handcuffs{pixel_x = 8; pixel_y = 6},/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"afU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"afV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"afW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"afY" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"agc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"agd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/security/tactical)
-"agf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"agg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"agh" = (/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"agi" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/corner/yellow/full{dir = 1},/obj/item/clothing/gloves/arm_guard/combat,/obj/item/clothing/shoes/leg_guard/combat,/obj/item/clothing/suit/armor/combat,/obj/item/clothing/head/helmet/combat,/obj/machinery/door/window/brigdoor/westright{name = "Combat Armor"},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"agn" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/floodlight,/turf/simulated/floor,/area/engineering/storage)
-"ago" = (/obj/machinery/power/port_gen/pacman,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage)
-"agp" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage)
-"agr" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/recharger,/obj/random/tech_supply,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"agt" = (/turf/simulated/wall,/area/security/brig)
-"agu" = (/obj/machinery/computer/rcon{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"agv" = (/obj/structure/undies_wardrobe,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"agw" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Engineer"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"agz" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft{name = "Engineering Suits"; req_access = list(11)},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"agA" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"agC" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance Access"; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/locker_room)
-"agF" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"agG" = (/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/machinery/door/window/westright{name = "Shower"},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"agH" = (/turf/simulated/wall,/area/security/security_restroom)
-"agI" = (/obj/structure/table/standard,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/machinery/recharger/wallcharger{pixel_x = -24; pixel_y = -4},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"agJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"agK" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"agL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/range)
-"agM" = (/turf/simulated/floor/tiled,/area/security/range)
-"agN" = (/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"agO" = (/obj/random/junk,/obj/structure/lattice,/obj/machinery/shield_diffuser,/turf/space,/area/space)
-"agQ" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"agS" = (/obj/machinery/flasher{id = "permflash"; name = "Floor mounted flash"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/security/prison)
-"agT" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"agV" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"agX" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/general_air_control{frequency = 1445; name = "Engine Exhaust Monitoring"; sensors = list("engine_exhaust_sensor"="Engine Exhaust Sensor")},/turf/simulated/floor,/area/engineering/engine_waste)
-"agY" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_waste)
-"agZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/engine{c_tag = "ENG - Waste Handling"},/obj/structure/sign/warning/nosmoking_1{pixel_y = 32},/turf/simulated/floor,/area/engineering/engine_waste)
-"aha" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/engineering/engine_waste)
-"ahb" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"ahc" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/floodlight,/turf/simulated/floor,/area/engineering/storage)
-"ahd" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"ahe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/orange{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/atmos_hallway)
-"ahg" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/door/window/southright{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"ahh" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 24; req_one_access = list(10,24)},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"ahi" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/clamp,/obj/item/clamp,/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"ahk" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"ahl" = (/turf/simulated/floor/tiled,/area/security/prison)
-"ahm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison)
-"ahn" = (/obj/machinery/seed_storage/garden{dir = 8},/obj/machinery/ai_status_display{pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aho" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor/tiled/freezer,/area/security/prison)
-"ahq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor,/area/engineering/engine_waste)
-"ahr" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/blue{dir = 9},/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/laserproof,/obj/machinery/door/window/brigdoor/eastright{name = "Laser Armor"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"ahs" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/beehive,/turf/simulated/floor/grass,/area/hydroponics)
-"aht" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/machinery/light,/obj/machinery/atmospherics/pipe/cap/visible{color = "#ffcc00"; dir = 8},/turf/simulated/floor,/area/engineering/engine_waste)
-"ahu" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"ahz" = (/obj/random/junk,/turf/simulated/floor,/area/engineering/engine_waste)
-"ahB" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_waste)
-"ahC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/orange{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"ahD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"ahE" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/locker_room)
-"ahF" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"ahJ" = (/obj/machinery/camera/network/security{c_tag = "SEC - Armory"; dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/security/armoury)
-"ahL" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"ahP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"ahT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
-"ahZ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_waste)
-"aia" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/item/device/geiger/wall/north,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aie" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aif" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aig" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/spline/plain{dir = 1},/obj/item/device/gps/engineering,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aih" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aij" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 8},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/gps/engineering/atmos,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"ail" = (/obj/item/stack/tile/floor/steel,/turf/simulated/floor/tiled/steel,/area/maintenance/engineering)
-"aim" = (/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"ain" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/highsecurity{name = "Armoury Tactical Equipment"; req_access = list(3); req_one_access = list(3)},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/security/tactical)
-"aio" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"aip" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/table/steel,/obj/item/weapon/storage/firstaid/combat,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"ait" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/effect/floor_decal/corner/yellow{dir = 6},/obj/item/clothing/gloves/arm_guard/combat,/obj/item/clothing/shoes/leg_guard/combat,/obj/item/clothing/suit/armor/combat,/obj/item/clothing/head/helmet/combat,/obj/machinery/door/window/brigdoor/westleft{name = "Combat Armor"},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"aiv" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"aiw" = (/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"aiz" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area/space)
-"aiB" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aiC" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor,/area/engineering/engine_waste)
-"aiD" = (/obj/structure/sign/department/sci,/turf/simulated/wall/r_wall,/area/maintenance/research)
-"aiF" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/machinery/meter{frequency = 1443; id = "wloop_atm_meter"},/turf/simulated/floor,/area/engineering/engine_waste)
-"aiG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_waste)
-"aiH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Engineering"; sortType = "Engineering"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aiI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aiL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/engineer_hallway)
-"aiN" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aiQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineer_eva)
-"aiR" = (/obj/machinery/computer/station_alert/all{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aiT" = (/obj/structure/closet/wardrobe/engineering_yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aiU" = (/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aiV" = (/obj/item/stack/tile/floor/yellow,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aiZ" = (/obj/machinery/door/window/westleft{name = "Shower"},/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/structure/curtain/open/shower/security,/obj/structure/window/basic,/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"aja" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/device/tape,/obj/item/device/megaphone,/obj/item/weapon/packageWrap,/obj/item/weapon/storage/box,/obj/machinery/recharger/wallcharger{pixel_x = -24; pixel_y = -4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"ajb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"ajc" = (/obj/structure/closet/secure_closet/security,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"aje" = (/obj/structure/sign/directions/cargo/refinery{dir = 8},/turf/simulated/wall,/area/quartermaster/warehouse)
-"ajf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"ajl" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/target_stake,/turf/simulated/floor/tiled,/area/security/range)
-"ajm" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ajn" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"ajo" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ajp" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ajs" = (/obj/machinery/magnetic_module,/turf/simulated/floor/tiled,/area/security/range)
-"ajt" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"aju" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/range)
-"ajv" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"ajw" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"ajy" = (/turf/simulated/wall/r_wall,/area/security/detectives_office)
-"ajz" = (/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"ajA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"ajB" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"ajC" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/cigarettes,/obj/item/weapon/flame/lighter/zippo,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"ajD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/security/prison)
-"ajE" = (/obj/structure/closet/crate,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/wirecutters,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/engineering)
-"ajF" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"ajG" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/clothing/suit/storage/apron/overalls,/obj/machinery/camera/network/prison{c_tag = "SEC - Brig Dormitories"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"ajH" = (/obj/structure/table/steel,/obj/structure/bedsheetbin,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"ajJ" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"ajM" = (/obj/machinery/shower{dir = 4; pixel_x = 5; pixel_y = -1},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/prison)
-"ajN" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/prison)
-"ajO" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/engine_setup/coolant_canister,/turf/simulated/floor,/area/engineering/engine_waste)
-"ajQ" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/machinery/door/window/brigdoor/eastleft{name = "Ballistic Armor"},/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"ajT" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/empty,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/engineering/engine_waste)
-"ajU" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/door/window/northleft{name = "Engine Waste"; req_one_access = list(10,24)},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/obj/effect/engine_setup/pump_max,/turf/simulated/floor,/area/engineering/engine_waste)
-"ajV" = (/obj/machinery/door/window/northright{name = "Engine Waste"; req_one_access = list(10,24)},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Hot Loop Waste Gas pump"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 26; req_access = null; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_waste)
-"ajX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"ajY" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"ajZ" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/ai_status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aka" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/gps/engineering/atmos,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"akd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akh" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/corner/red/full{dir = 1},/obj/item/ammo_magazine/ammo_box/b12g/flash,/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/obj/item/ammo_magazine/ammo_box/b12g/stunshell,/obj/item/ammo_magazine/ammo_box/b12g/stunshell,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/window/brigdoor/westright{name = "Ammo"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"akl" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"ako" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/atmos)
-"akr" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/security_port)
-"akt" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/meter,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"aku" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"akw" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"akx" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Forensics Maintenance Access"; req_access = list(4)},/turf/simulated/floor/plating,/area/security/detectives_office)
-"aky" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"akF" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/security/armoury)
-"akG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akL" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_waste)
-"akM" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"akN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/sc/chief)
-"akO" = (/obj/machinery/disposal,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"akP" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/landmark/start{name = "Engineer"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"akS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/table/rack/shelf,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"akV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/security/tactical)
-"ald" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{dir = 4; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor"="Tank")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"alh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/security{c_tag = "SEC - Armory Tactical"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"all" = (/obj/machinery/computer/secure_data/detective_computer{dir = 1},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"alo" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit/powder,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"alp" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/photocopier,/obj/machinery/newscaster{pixel_y = -30},/turf/simulated/floor/lino,/area/security/detectives_office)
-"alt" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/door/blast/regular{id = "EngineEmitterPortWest"; layer = 3.3; name = "Engine Waste Handling Access"},/turf/simulated/floor,/area/engineering/engine_room)
-"alu" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"alv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"alx" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/supermatter_engine{pixel_x = -3},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aly" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"alz" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"; pixel_x = -2; pixel_y = -4},/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"; pixel_x = -2; pixel_y = -4},/obj/item/weapon/towel{color = "#FFD700"; name = "gold towel"},/obj/item/weapon/towel{color = "#FFD700"; name = "gold towel"},/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/obj/random/soap,/obj/random/soap,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"alB" = (/obj/structure/undies_wardrobe,/obj/structure/window/basic,/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"alF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"alG" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/machinery/door/window/brigdoor/westleft{name = "Ammo"},/obj/item/ammo_magazine/m9mmp90,/obj/item/ammo_magazine/m9mmp90,/obj/item/ammo_magazine/m9mmp90,/obj/item/ammo_magazine/m9mmp90,/obj/item/ammo_magazine/m9mmp90,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"alH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"alI" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"alK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"alL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"alO" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport1"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engine_room)
-"alP" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"alR" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"alS" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine radiator viewport shutters."; id = "EngineRadiatorViewport1"; name = "Engine Radiator Viewport Shutters"; pixel_y = 25; req_access = list(10)},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"alU" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"alV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/valve/digital{dir = 4; name = "N2O Outlet Valve"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"alW" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "N2O to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ame" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ami" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"amj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/wall,/area/maintenance/security_port)
-"amu" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"amw" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"amx" = (/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"amy" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"amz" = (/obj/structure/curtain/open/shower/engineering,/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/machinery/door/window/westright{name = "Shower"},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"amB" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"amC" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light{dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"amE" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"amF" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 11"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"amG" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"amH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"amM" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eva_port_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/maintenance/security_port)
-"amP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport1"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/universal{color = "#00ff00"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engine_room)
-"amR" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/computer/skills,/obj/item/device/gps/engineering/ce,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"amT" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"amU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Dorm's Emergency Oxygen Valve"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ane" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"anf" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ang" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ani" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"anj" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Air to Supply"; target_pressure = 301.325},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ank" = (/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Atmospherics to Distro automatic shutoff valve"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"anl" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter{frequency = 1443; id = "dloop_atm_meter"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"anp" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eva_port_airlock"; name = "interior access button"; pixel_y = 26; req_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"anq" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva)
-"anr" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/head/welding,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"ans" = (/obj/machinery/suit_cycler/engineering,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"ant" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"anu" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"anv" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"anw" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"anx" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"any" = (/obj/structure/bookcase,/turf/simulated/floor/lino,/area/security/detectives_office)
-"anz" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"anA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"anE" = (/obj/effect/landmark{name = "blobstart"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"anG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"anH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"anJ" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"anK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"anL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"anM" = (/obj/structure/closet/wardrobe/red,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/security{c_tag = "SEC - Locker Room"; dir = 4},/obj/item/clothing/suit/storage/hazardvest/green,/obj/item/clothing/suit/storage/hazardvest/green,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"anR" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom)
-"anS" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
-"anT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"anW" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor,/area/engineering/engine_room)
-"anX" = (/turf/simulated/wall/r_wall,/area/engineering/drone_fabrication)
-"aoc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/plushie/beepsky,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"aof" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aog" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aoi" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aoj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aom" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aop" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aor" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aos" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aov" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "eva_port_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "eva_port_airlock"; pixel_y = -26; req_access = null; tag_airpump = "eva_port_pump"; tag_chamber_sensor = "eva_port_sensor"; tag_exterior_door = "eva_port_outer"; tag_interior_door = "eva_port_inner"},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"aow" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"aoy" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"aoA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"aoB" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"aoC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"aoE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"aoG" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"aoK" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"aoL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aoM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"aoO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aoP" = (/obj/structure/table/woodentable,/obj/item/device/camera_film,/obj/item/device/camera,/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"aoR" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"aoS" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aoU" = (/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_y = -21},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/chief)
-"aoV" = (/obj/structure/table/reinforced,/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd,/obj/machinery/button/windowtint{id = "ceoffice"; pixel_x = -12; pixel_y = -24},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/chief)
-"aoW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aoX" = (/obj/machinery/computer/guestpass{pixel_x = 30},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"apb" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "eva_starboard_pump"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"apc" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/woodentable,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/engineering_guide{pixel_x = 3; pixel_y = 2},/obj/item/weapon/book/manual/evaguide{pixel_x = -2; pixel_y = 7},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"apd" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"apf" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"apg" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"apj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/monitoring)
-"apl" = (/obj/structure/sign/atmosplaque{dir = 1; pixel_x = 32},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"apm" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"apn" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan,/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"app" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"apq" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"aps" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"apu" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"apv" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"apw" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"apy" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"apz" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/warning,/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"apB" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"apD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/prison)
-"apE" = (/obj/machinery/computer/arcade{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"apG" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 10"; dir = 4},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"apI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"apJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"apK" = (/obj/machinery/status_display{pixel_x = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"apL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/maintenance/substation/central)
-"apN" = (/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 4},/obj/structure/disposalpipe/up{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"apO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/network/engineering{c_tag = "SUBS - Central"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"apP" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/medical/cryo)
-"apR" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"apW" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/power/apc/super/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"apX" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/lattice,/turf/space,/area/space)
-"apY" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"apZ" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{dir = 4; input_tag = "tox_in"; name = "Phoron Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor"="Tank")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aqa" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aqb" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aqc" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4; initialize_directions = 11},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aqd" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aqe" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/machinery/computer/general_air_control{frequency = 1441; name = "Tank Monitor"; sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank")},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"aqf" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Engine Waste")},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"aqi" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"aql" = (/turf/simulated/wall,/area/medical/medbay_primary_storage)
-"aqm" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"aqn" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/breacher,/obj/machinery/door/window/eastleft{name = "E.V.A."; req_one_access = list(18)},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"aqp" = (/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/obj/structure/table/reinforced,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"aqt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering Hardsuits"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/eva)
-"aqu" = (/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/item/device/reagent_scanner,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"aqx" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Access"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aqF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Engineering Access"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"aqI" = (/obj/structure/disposalpipe/broken{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aqJ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aqK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/stool,/turf/simulated/floor/tiled,/area/security/prison)
-"aqL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/mob/living/simple_mob/metroid/jellybrig,/turf/simulated/floor/tiled,/area/security/prison)
-"aqN" = (/obj/machinery/vending/snack{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"aqP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aqQ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aqV" = (/obj/structure/dispenser{phorontanks = 0},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/teleporter)
-"aqY" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"arb" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/sign/warning/secure_area{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"ard" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/structure/lattice,/turf/space,/area/space)
-"are" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor/plating,/area/engineering/atmos)
-"arf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 10},/obj/machinery/atmospherics/valve/digital{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ari" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Monitoring Room"; dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"arj" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ark" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"arl" = (/obj/structure/table/standard,/obj/structure/fireaxecabinet{pixel_x = 32},/obj/machinery/cell_charger,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/tool/wrench,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"arm" = (/turf/simulated/wall,/area/maintenance/substation/engineering)
-"aro" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/meter,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/sign/warning/high_voltage{pixel_x = -32},/obj/random/junk,/turf/simulated/floor,/area/maintenance/engineering)
-"arq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"arr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/small{dir = 1},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"ars" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"art" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/skrell/white,/obj/item/clothing/head/helmet/space/skrell/white,/obj/machinery/door/window/eastleft{name = "E.V.A."; req_one_access = list(18)},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"arv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"ary" = (/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"arC" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"arE" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"arH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/security/prison)
-"arK" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"arL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"arM" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"arN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/security/prison)
-"arO" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/machinery/door/window/brigdoor/eastright{name = "Security Checkpoint"},/obj/effect/floor_decal/corner/green/full,/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"arP" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"arQ" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 32; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"arR" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/corner/red/full{dir = 4},/obj/item/ammo_magazine/m9mmt/rubber,/obj/item/ammo_magazine/m9mmt/rubber,/obj/item/ammo_magazine/m9mmt/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/machinery/door/window/brigdoor/westleft{name = "Ammo"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"arS" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/button/remote/blast_door{id = "Armoury"; name = "Emergency Access"; pixel_y = -24; req_access = list(3)},/obj/machinery/recharger/wallcharger{pixel_x = -24; pixel_y = -8},/obj/machinery/recharger/wallcharger{pixel_x = -24; pixel_y = 2},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"arT" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/security/armoury)
-"arU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/security/armoury)
-"arX" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/button/remote/blast_door{id = "EngineVent"; name = "Reactor Ventillatory Control"; pixel_x = -25; req_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/engineering/engine_room)
-"asa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"asb" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/security)
-"asc" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"asd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"asg" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ash" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"asi" = (/obj/machinery/atmospherics/tvalve/mirrored{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ask" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/item/clamp,/obj/item/clamp,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"asl" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"asn" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ass" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/skrell/black,/obj/item/clothing/head/helmet/space/skrell/black,/obj/machinery/door/window/eastright{name = "E.V.A."; req_one_access = list(18)},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"asu" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/westleft{name = "E.V.A."; req_one_access = list(18)},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"asw" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"asy" = (/obj/machinery/light/small,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"asK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"asQ" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"asR" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"asS" = (/obj/machinery/computer/teleporter{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter)
-"asU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/green/bordercorner2,/obj/effect/floor_decal/corner/green/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"asV" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fscenter)
-"asX" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos)
-"asZ" = (/obj/structure/disposalpipe/segment,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"ata" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"atb" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/monitoring)
-"atd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos)
-"ate" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos)
-"atf" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos)
-"ath" = (/obj/structure/closet/toolcloset,/obj/random/tank,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"ati" = (/obj/structure/closet/toolcloset,/obj/item/device/flashlight/maglight,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"atk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"atq" = (/turf/simulated/wall/r_wall,/area/ai_monitored/storage/eva)
-"atr" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/device/camera_film,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/obj/machinery/light,/turf/simulated/floor/lino,/area/security/detectives_office)
-"ats" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/security/armoury)
-"att" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/autolathe{hacked = 1; name = "Armory Autolathe"},/turf/simulated/floor/tiled/dark,/area/security/armoury)
-"atu" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 32; pixel_y = -21},/obj/structure/cable/green,/obj/structure/table/steel,/obj/machinery/recharger,/obj/item/weapon/cell/device/weapon{pixel_x = 4; pixel_y = 4},/obj/item/weapon/cell/device/weapon{pixel_x = 2; pixel_y = 2},/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/machinery/alarm{dir = 4; pixel_x = -23},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"atv" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/green/full,/obj/machinery/door/window/brigdoor/northleft{name = "Ballistics"; req_access = list(2)},/obj/item/weapon/gun/projectile/shotgun/pump/combat,/obj/item/weapon/gun/projectile/shotgun/pump/combat,/obj/item/weapon/gun/projectile/shotgun/pump/combat,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"atw" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/machinery/door/window/brigdoor/northright{name = "Ballistics"},/obj/item/weapon/gun/projectile/garand,/obj/item/weapon/gun/projectile/automatic/p90,/obj/item/weapon/gun/projectile/automatic/p90,/turf/simulated/floor/tiled/dark,/area/security/tactical)
-"atx" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"aty" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"atA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"atB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Security Restroom"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_restroom)
-"atD" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"atH" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/valve/digital{name = "secondary TEG valve"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"atI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"atP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"atR" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"atT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"atU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"atV" = (/turf/simulated/floor/tiled,/area/engineering/atmos)
-"atW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"atX" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool/powermaint,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"atZ" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aua" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aud" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aue" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"auf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"auh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aui" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"auj" = (/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"auk" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/fpcenter)
-"aul" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aum" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aut" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/ascenter)
-"auv" = (/obj/structure/sign/directions/bridge{pixel_y = 10},/obj/structure/sign/directions/science{dir = 4},/obj/structure/sign/directions/medical{dir = 4; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/ascenter)
-"aux" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"auy" = (/obj/structure/closet/secure_closet/security,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"auz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"auA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/range)
-"auB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/range)
-"auC" = (/obj/machinery/door/airlock/glass{name = "Brig Dormitories"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"auD" = (/obj/structure/sign/warning/vent_port{pixel_x = 32},/turf/space,/area/space)
-"auG" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"auJ" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"auK" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"auL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"auN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"auP" = (/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"auQ" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain5,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"auR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"avc" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"ave" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Engineer"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"avf" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Port Hallway 2"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"avg" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"avh" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"avj" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"avk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"avl" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"avm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"avn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"avp" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"avq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/navbeacon/patrol{location = "CH10"; next_patrol = "CH11"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"avr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"avs" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"avu" = (/turf/simulated/wall,/area/engineering/drone_fabrication)
-"avv" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"avw" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"avx" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/shieldwallgen,/turf/simulated/floor,/area/engineering/storage)
-"avy" = (/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"avz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/obj/structure/cable/orange{d2 = 10; icon_state = "0-10"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"avA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"avB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"avC" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"avD" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/plating,/area/engineering/foyer)
-"avE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"avG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engineer_eva)
-"avH" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "medbayrecquar"; name = "Medbay Emergency Quarantine Shutters"; opacity = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"avI" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"avJ" = (/obj/structure/closet,/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/shoes/boots/workboots,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"avM" = (/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"avS" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Starboard Hallway 1"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"avT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"avU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"avV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/prison)
-"awb" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; landmark_tag = "d2_near_sw"; name = "Near SC - Deck 2 South West"},/turf/space,/area/space)
-"awe" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison)
-"awf" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/status_display{layer = 4; pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/security/prison)
-"awg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"awh" = (/obj/structure/sign/warning/secure_area/armory,/turf/simulated/wall/r_wall,/area/security/armoury)
-"awi" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room)
-"awj" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"awl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"awm" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awo" = (/obj/machinery/computer/power_monitor{dir = 4},/obj/machinery/requests_console{department = "Engineering"; departmentType = 3; name = "Engineering RC"; pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"awq" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"awr" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aws" = (/obj/machinery/computer/security/engineering{dir = 8},/obj/machinery/newscaster{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"awu" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastleft{name = "Engineering Suits"; req_access = list(11)},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"awv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/camera/network/engineering{c_tag = "ENG - EVA"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aww" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"awx" = (/obj/machinery/power/grid_checker,/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"awy" = (/obj/item/weapon/tank/jetpack/carbondioxide,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/westright{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"awA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awB" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awI" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"awK" = (/obj/structure/closet/hydrant{pixel_y = 32},/obj/item/clothing/glasses/meson,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"awO" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awQ" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awS" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"awU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"awV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"awW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"awX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"awY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"awZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"axb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"axo" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"axp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"axu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"axv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"axw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"axx" = (/obj/structure/closet/crate/plastic,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/medical,/obj/random/medical/lite,/obj/random/bomb_supply,/obj/random/bomb_supply,/turf/simulated/floor/plating,/area/maintenance/research)
-"axA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/orange{d1 = 2; d2 = 5; icon_state = "2-5"},/obj/structure/cable/orange{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"axC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"axD" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"axE" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"axG" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/item/modular_computer/console/preset/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"axH" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"axI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/outline/grey,/mob/living/simple_mob/animal/passive/opossum/poppy,/turf/simulated/floor/tiled/dark,/area/engineering/foyer)
-"axJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"axK" = (/obj/machinery/computer/atmoscontrol{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"axN" = (/turf/simulated/wall,/area/engineering/atmos/monitoring)
-"axO" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"axP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"axQ" = (/obj/item/weapon/tank/jetpack/carbondioxide,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/westleft{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"axS" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/engineering/hallway/atmos_hallway)
-"axY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aya" = (/obj/machinery/light/small{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"ayd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"ayj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/highsecurity{name = "Secure Armoury Section"; req_access = list(3); req_one_access = list(3)},/turf/simulated/floor/tiled/techmaint,/area/security/armoury)
-"ayk" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{id = "Armoury"; name = "Emergency Access"},/turf/simulated/floor/tiled/techfloor/grid,/area/security/armoury)
-"ayl" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"aym" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor,/area/engineering/engine_monitoring)
-"ayq" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"ayA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"ayB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"ayC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"ayD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ayE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ayG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ayH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ayL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ayM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"ayN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"ayP" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/orange{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"ayQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"ayR" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"ayS" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/cell_charger,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/powercell,/obj/random/powercell,/obj/random/tool/powermaint,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"ayT" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"ayU" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"ayV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"ayW" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/westright{name = "Atmospherics Suits"; req_access = list(24)},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"ayX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aze" = (/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"azf" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"azh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"azi" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/blast/regular{id = "Armoury"; name = "Emergency Access"},/turf/simulated/floor/tiled/techfloor/grid,/area/security/armoury)
-"azj" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"azl" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"azm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"azn" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"azp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"azq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"azr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"azs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"azA" = (/obj/structure/table/standard,/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/soap/nanotrasen,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/extinguisher_cabinet{pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/security/security_restroom)
-"azB" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"azD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"azE" = (/obj/structure/closet/secure_closet/security,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/item/device/radio/intercom/department/security{dir = 4; icon_override = "secintercom"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_lockerroom)
-"azG" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/range)
-"azH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"azI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/range)
-"azJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"azK" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"azL" = (/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Test Chamber Port"; dir = 4; network = list("Research","Toxins Test Area")},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"azM" = (/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light,/obj/item/stack/material/lead{amount = 30},/turf/simulated/floor,/area/engineering/storage)
-"azN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"azO" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light,/obj/structure/dispenser,/turf/simulated/floor/plating,/area/engineering/storage)
-"azT" = (/turf/simulated/wall,/area/engineering/hallway/atmos_hallway)
-"azU" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/hallway/atmos_hallway)
-"azV" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/hallway/atmos_hallway)
-"azW" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/machinery/recharger,/obj/item/weapon/tape_roll,/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -24; req_access = list(10)},/obj/machinery/light_switch{name = "light switch "; pixel_x = -34},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"azX" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"azY" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aAa" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/suit/space/void/engineering,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/eastright{name = "Engineering Suits"; req_access = list(11)},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"aAc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aAd" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/window/westleft{name = "Atmospherics Suits"; req_access = list(24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"aAf" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/floor_decal/spline/plain,/obj/item/device/gps/engineering,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aAg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/spline/plain,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aAh" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/floor_decal/spline/plain,/obj/item/device/gps/engineering,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aAi" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/spline/plain,/obj/item/device/gps/engineering,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aAj" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/status_display{layer = 4; pixel_x = 32},/obj/item/device/gps/engineering,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aAn" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"aAo" = (/obj/structure/cable,/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"aAq" = (/obj/item/device/radio/beacon,/turf/simulated/floor/airless,/area/rnd/test_area)
-"aAr" = (/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Test Chamber Starboard"; dir = 8; network = list("Research","Toxins Test Area")},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aAs" = (/obj/structure/grille,/turf/space,/area/space)
-"aAt" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aAu" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"aAv" = (/obj/structure/table/steel,/obj/item/weapon/newspaper,/obj/item/device/tape,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aAw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/security/prison)
-"aAH" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Reactor Blast Doors"; pixel_x = -25; pixel_y = 6; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = -25; pixel_y = -6; req_access = list(10)},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"aAK" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aAQ" = (/obj/structure/sign/directions/bridge{dir = 4; pixel_y = 10},/obj/structure/sign/directions/evac{dir = 4; pixel_y = -10},/obj/structure/sign/directions/cargo,/turf/simulated/wall,/area/maintenance/apmaint)
-"aAR" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aAT" = (/obj/structure/sign/greencross{desc = "White cross in a green field, you can get medical aid here."; name = "First-Aid"},/turf/simulated/wall,/area/ai_monitored/storage/emergency/eva)
-"aAU" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aAV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aAW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fpcenter)
-"aAZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aBe" = (/turf/simulated/wall/r_wall,/area/engineering/storage)
-"aBm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aBp" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/item/device/geiger/wall/north,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aBr" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"aBt" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"aBu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aBv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aBA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/door_assembly/door_assembly_mhatch{anchored = 1},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aBC" = (/turf/simulated/wall,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"aBD" = (/turf/simulated/floor/tiled/yellow,/area/maintenance/engineering)
-"aBF" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/ascenter)
-"aBL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aBT" = (/obj/machinery/vending/wallmed1{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aBU" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aBV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/security/prison)
-"aBW" = (/obj/structure/table/steel,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/radio/headset,/obj/item/device/radio/headset,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison)
-"aBX" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/security/prison)
-"aBZ" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge{scrub_id = "Brig"},/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/prison)
-"aCb" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core 3"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"aCd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"aCe" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/engineering/engine_room)
-"aCg" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aCh" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aCi" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aCj" = (/obj/machinery/light/small{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"aCk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"aCl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"aCm" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"aCo" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"aCq" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/first_aid_station/seconddeck/port)
-"aCt" = (/obj/effect/floor_decal/borderfloorblack{dir = 9},/obj/effect/floor_decal/industrial/danger{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/apcenter)
-"aCu" = (/obj/machinery/account_database,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"aCv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"aCw" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"aCx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aCy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aCD" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"aCG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aCH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aCK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aCL" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aCM" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/engineer_eva)
-"aCN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/engineering/engineer_eva)
-"aCO" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aCP" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/green,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aCW" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge{scrub_id = "Brig"},/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/prison)
-"aCX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison)
-"aDa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"aDc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"aDd" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aDe" = (/obj/structure/cryofeed{dir = 2},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig 2"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/security/prison)
-"aDf" = (/turf/simulated/wall/r_wall,/area/security/security_equiptment_storage)
-"aDr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/lattice,/turf/space,/area/space)
-"aDs" = (/obj/machinery/flasher/portable,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aDu" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room)
-"aDv" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"aDw" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room)
-"aDx" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = 25; pixel_y = 30; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"aDy" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "SMES Access"; req_access = list(10)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/engine_smes)
-"aDz" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_y = 26; req_access = list(10); specialfunctions = 4},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Output"; name_tag = "Engine Output"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"aDA" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"aDB" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 5; d2 = 8; icon_state = "5-8"},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"aDC" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor,/area/maintenance/apmaint)
-"aDD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aDF" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"aDG" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"aDH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"aDK" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"aDL" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"aDN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aDO" = (/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"aDP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{c_tag = "ENG - Engineering Hallway 1"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 5; d2 = 8; icon_state = "5-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aDQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aDS" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aDT" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aDV" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aEb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"aEd" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/gps/engineering/atmos,/turf/simulated/floor/tiled/yellow,/area/engineering/locker_room)
-"aEf" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"aEh" = (/obj/machinery/flasher/portable,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aEi" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"aEk" = (/obj/machinery/floodlight,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"aEl" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aEr" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aEs" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aEB" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/space,/area/space)
-"aEF" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"aEG" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"aEI" = (/obj/structure/cable,/obj/machinery/power/smes/buildable{RCon_tag = "Engine - Main"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 750000},/obj/effect/engine_setup/smes/main,/turf/simulated/floor/plating,/area/engineering/engine_smes)
-"aEJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/apmaint)
-"aEK" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aEP" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aER" = (/obj/machinery/atmospherics/valve/digital/open,/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/central)
-"aES" = (/obj/machinery/atmospherics/valve/digital/open,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/central)
-"aET" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance Access"; req_one_access = list(12,19)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/stairwell)
-"aEU" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"aEV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aFa" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering Workshop"; req_one_access = list(11,24)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"aFe" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"aFg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access = list(56)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/chief)
-"aFh" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"aFi" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"aFl" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aFm" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aFn" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aFr" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aFs" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aFt" = (/turf/simulated/wall,/area/engineering/engineer_eva)
-"aFu" = (/turf/simulated/wall,/area/engineering/locker_room)
-"aFv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"aFw" = (/obj/item/frame/extinguisher_cabinet,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aFx" = (/obj/item/stack/tile/floor/yellow,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aFA" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"aFB" = (/turf/simulated/wall,/area/security/security_equiptment_storage)
-"aFF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aFG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aFH" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "hop_office"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hop)
-"aFJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hop)
-"aFK" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/hop,/obj/item/clothing/glasses/omnihud,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"aFN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"aFO" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"aFQ" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/security/security_hallway)
-"aFT" = (/obj/machinery/door/airlock/multi_tile/glass{id_tag = null; name = "EMT Bay"; req_access = list(5)},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay)
-"aFW" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance Access"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/medical/reception)
-"aGd" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall/r_wall,/area/medical/reception)
-"aGg" = (/turf/simulated/wall/r_wall,/area/rnd/lab)
-"aGh" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/security/security_hallway)
-"aGj" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/button/remote/blast_door{id = "Armoury"; name = "Emergency Access"; pixel_x = 24; req_access = list(3)},/turf/simulated/floor/tiled/techmaint,/area/security/security_hallway)
-"aGk" = (/turf/simulated/wall,/area/security/evidence_storage)
-"aGw" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aGz" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aGA" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aGC" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aGD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aGF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aGI" = (/obj/machinery/papershredder,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aGJ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aGK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aGL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/status_display{layer = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"aGM" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aGN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aGO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aGQ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aGR" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/break_room)
-"aGS" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aGT" = (/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aGU" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/landmark/start{name = "Engineer"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aGV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aGX" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock{name = "Engineering Washroom"; req_one_access = list(11,24)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engi_restroom)
-"aHb" = (/obj/structure/closet/toolcloset,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aHd" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aHe" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aHk" = (/obj/structure/filingcabinet,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aHl" = (/obj/structure/table/standard,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 28},/obj/machinery/newscaster{pixel_x = 30},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/photocopier/faxmachine{department = "Quartermaster's Office"},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aHo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"aHp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aHq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"aHs" = (/obj/structure/closet/secure_closet/hop,/obj/item/device/megaphone,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"aHw" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"aHx" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"aHy" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 4"; dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"aHA" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aHB" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/effect/floor_decal/corner/pink/bordercorner2{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"aHD" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall/r_wall,/area/medical/medbay_emt_bay)
-"aHF" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aHG" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aHH" = (/turf/simulated/wall/r_wall,/area/security/evidence_storage)
-"aHI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Security Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/security/security_restroom)
-"aHJ" = (/turf/simulated/wall,/area/security/security_lockerroom)
-"aHK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Security Locker Room"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_lockerroom)
-"aHL" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/machinery/camera/network/security{c_tag = "SEC - Firing Range"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/range)
-"aHM" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/security/range)
-"aHN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/range)
-"aHO" = (/obj/machinery/ai_status_display{pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"aHP" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aHZ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport2"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10},/turf/simulated/floor,/area/engineering/engine_room)
-"aIa" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"aId" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aIf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aIg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"aIj" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/random_multi/single_item/hand_tele,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aIk" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aIl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"aIm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aIo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aIp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Foyer"; dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aIs" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aIt" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aIv" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/camera/network/engineering{c_tag = "ENG - Break Room"; dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aIx" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"aIA" = (/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aIE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/navbeacon/patrol{location = "CH2"; next_patrol = "CH3"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aIH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aII" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/random/maintenance/clean,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/construction/seconddeck/construction1)
-"aIJ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aIM" = (/obj/machinery/atmospherics/valve/shutoff{name = "Cargo automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aIN" = (/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aIP" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/coin/silver,/obj/item/device/retail_scanner/civilian{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster,/obj/machinery/status_display{layer = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aIR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"aIT" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aIV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aIW" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "hop_office"},/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hop)
-"aIX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"aIY" = (/obj/machinery/vending/cola{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aIZ" = (/turf/simulated/floor/airless,/area/rnd/test_area)
-"aJa" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aJb" = (/obj/structure/lattice,/obj/item/stack/rods,/obj/structure/grille/broken,/turf/space,/area/space)
-"aJc" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/space,/area/space)
-"aJd" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aJf" = (/obj/structure/table/steel,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/dice,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aJg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1443; icon_state = "on"; id = "air_in"; use_power = 1},/obj/item/weapon/stool,/turf/simulated/floor/tiled,/area/security/prison)
-"aJh" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/security/prison)
-"aJi" = (/obj/machinery/flasher{id = "permflash"; name = "Floor mounted flash"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aJj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/prison)
-"aJk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aJl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aJm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/flasher{id = "permflash"; name = "Floor mounted flash"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/security/prison)
-"aJn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aJo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aJp" = (/obj/machinery/flasher{id = "permflash"; name = "Floor mounted flash"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aJq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/lattice,/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"aJt" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/lattice,/turf/space,/area/space)
-"aJv" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine radiator viewport shutters."; id = "EngineRadiatorViewport2"; name = "Engine Radiator Viewport Shutters"; pixel_y = -25; req_access = list(10)},/turf/simulated/floor,/area/engineering/engine_room)
-"aJw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"aJx" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/tool/powermaint,/turf/simulated/floor/tiled/steel,/area/construction/seconddeck/construction1)
-"aJB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aJD" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/obj/machinery/autolathe,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aJE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aJH" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aJI" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aJJ" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/obj/item/weapon/stamp/ce,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aJK" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/flame/lighter/zippo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aJL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aJN" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aJO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aJP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aJQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aJV" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aJW" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aJY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Engineering Washroom"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engi_restroom)
-"aKd" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aKf" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/boots/combat,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor,/area/maintenance/engineering)
-"aKg" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fpcenter)
-"aKh" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aKi" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/qm,/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aKj" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/item/device/megaphone,/obj/machinery/camera/network/cargo{c_tag = "CRG - Quartermaster Office"; dir = 8; name = "security camera"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"aKn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"aKo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"aKr" = (/obj/structure/stairs/spawner/south,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/stairwell)
-"aKz" = (/obj/machinery/papershredder,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/keycard_auth{pixel_y = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"aKA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"aKB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/command{c_tag = "COM - HoP's Office"; dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"aKC" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hop)
-"aKG" = (/obj/machinery/suit_cycler/medical,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay)
-"aKH" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"aKJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"aKK" = (/obj/structure/table/steel,/obj/item/device/multitool,/obj/item/weapon/deck/cards,/obj/machinery/camera/network/medbay{c_tag = "MED - EMT Bay"; dir = 8},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"aKM" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/random/medical,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aKN" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/item/device/denecrotizer/medical,/obj/item/device/sleevemate,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aKO" = (/obj/item/modular_computer/console/preset/medical{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aKP" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/table/reinforced,/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; pixel_x = -4; pixel_y = 6},/obj/machinery/button/remote/blast_door{id = "medbayrecquar"; name = "Medbay Entrance Quarantine Shutters Control"; pixel_x = -4; pixel_y = -4; req_access = list(5)},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aKQ" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/computer/transhuman/designer{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"aKR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/prison)
-"aKS" = (/obj/machinery/cryopod{dir = 2},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/security/prison)
-"aKT" = (/obj/machinery/deployable/barrier,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aKU" = (/obj/machinery/deployable/barrier,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aKV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aKW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aKX" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aKY" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/security{name = "Equipment Storage"; req_access = list(2)},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/security/security_equiptment_storage)
-"aKZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aLa" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aLb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aLc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = list(1)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/security/evidence_storage)
-"aLd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aLe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aLf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aLg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aLh" = (/obj/machinery/camera/network/security{c_tag = "SEC - Evidence Storage"; dir = 8},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aLs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aLt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aLu" = (/obj/machinery/vending/tool{dir = 8},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aLv" = (/obj/structure/closet/toolcloset,/obj/item/device/flashlight,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aLw" = (/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aLx" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aLy" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/workshop)
-"aLB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aLC" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aLD" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/blue/bordercorner,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"aLE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"aLF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aLG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aLH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aLI" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aLJ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/break_room)
-"aLM" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/effect/landmark/start{name = "Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aLN" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aLO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"aLP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"aLQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"aLS" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aLT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aLX" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/construction/seconddeck/construction1)
-"aLY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/mining{name = "Quartermaster"; req_access = list(41)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/qm)
-"aLZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/bar)
-"aMc" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance Access"; req_one_access = list(12,19)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/central)
-"aMg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"aMi" = (/obj/structure/sign/deck/second,/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/stairwell)
-"aMm" = (/obj/structure/closet/secure_closet/medical1,/obj/random/medical,/obj/random/medical,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"aMn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"aMo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aMp" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"aMr" = (/obj/machinery/vending/cigarette,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/security/main)
-"aMs" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/main)
-"aMt" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/main)
-"aMu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/main)
-"aMv" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/camera/network/security{c_tag = "SEC - Briefing"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/main)
-"aMw" = (/obj/structure/sign/goldenplaque{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/main)
-"aMx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/main)
-"aMy" = (/obj/item/device/radio/intercom/department/security{dir = 4; icon_override = "secintercom"; pixel_x = 21},/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/item/weapon/storage/box/glasses/square,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/main)
-"aMA" = (/turf/simulated/wall,/area/security/range)
-"aMB" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/range)
-"aMC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/range)
-"aMN" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"aMP" = (/obj/structure/disposaloutlet{pixel_y = -6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/wall,/area/quartermaster/warehouse)
-"aMQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/apcenter)
-"aMR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport1"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engine_room)
-"aMS" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room)
-"aMT" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 1; tag_north = 2; tag_south = 4; use_power = 0},/obj/effect/floor_decal/industrial/outline/blue,/obj/effect/engine_setup/atmo_filter,/turf/simulated/floor/plating,/area/engineering/engine_room)
-"aMV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/newscaster{pixel_x = -30},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"aMY" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aNa" = (/obj/machinery/vending/engivend{dir = 8},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aNb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"aNs" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aNt" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/light{dir = 4},/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 8},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aNv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aNw" = (/obj/structure/table/rack{dir = 1},/obj/random/cigarettes,/obj/random/tech_supply,/obj/random/technology_scanner,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aNz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/navbeacon/patrol{location = "CH6"; next_patrol = "CIV"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aNB" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 10},/obj/effect/floor_decal/corner/pink/bordercorner2{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"aNC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/effect/floor_decal/corner/pink/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"aND" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "exam_window_tint"},/turf/simulated/floor/plating,/area/medical/exam_room)
-"aNE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Examination Room"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/medical/exam_room)
-"aNG" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aNH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"aNI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"aNL" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"aNM" = (/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aNN" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aNO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/security/prison)
-"aNP" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/prison)
-"aNQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/prison)
-"aNR" = (/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig 1"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aNS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aNU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aNV" = (/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/security/prison)
-"aNW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aNX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aNY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aNZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/prison)
-"aOa" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/computer/cryopod{layer = 3.3; pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/security/prison)
-"aOb" = (/obj/machinery/deployable/barrier,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom/department/security{pixel_y = -21},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aOc" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aOd" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/northleft{name = "Weapons locker"; req_access = list(2)},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/item/clothing/suit/storage/vest/heavy/officer,/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aOe" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/table/rack,/obj/machinery/door/window/brigdoor/northleft{name = "Weapons locker"; req_access = list(2)},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/gun/projectile/colt/detective,/obj/item/weapon/gun/projectile/colt/detective,/obj/item/weapon/gun/projectile/colt/detective,/obj/item/weapon/gun/projectile/colt/detective,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/security/security_equiptment_storage)
-"aOg" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"aOh" = (/obj/machinery/conveyor{dir = 10; id = "recycler"},/obj/machinery/recycling/crusher,/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"aOi" = (/obj/machinery/conveyor{dir = 8; id = "disposalsorter"},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"aOj" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/warehouse)
-"aOk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"aOm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"aOn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"aOo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aOr" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/trash,/turf/simulated/floor,/area/engineering/engine_room)
-"aOt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"aOC" = (/obj/structure/table/steel_reinforced,/obj/machinery/requests_console{department = "Engineering"; departmentType = 3; name = "Engineering RC"; pixel_y = -32},/obj/machinery/ai_status_display{pixel_x = -32},/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aOD" = (/obj/structure/table/steel_reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aOE" = (/obj/structure/table/steel_reinforced,/obj/item/stack/material/plasteel{amount = 30},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/fiftyspawner/plastic,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aOF" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/table/steel_reinforced,/obj/item/weapon/airlock_electronics,/obj/item/weapon/airlock_electronics,/obj/item/weapon/cell/high,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aOG" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/machinery/newscaster{pixel_y = -30},/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/stack/cable_coil/cyan{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil/cyan{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aOL" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/obj/machinery/door/window/northright{name = "Chief Engineer Suit Storage"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/chief)
-"aON" = (/obj/machinery/atm{pixel_x = -28},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/flora/pottedplant/subterranean,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aOO" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aOP" = (/turf/simulated/floor/tiled,/area/engineering/foyer)
-"aOQ" = (/turf/simulated/wall,/area/engineering/break_room)
-"aOR" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/item/modular_computer/console/preset/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aOS" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aOU" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/woodentable,/obj/item/weapon/dice,/obj/item/weapon/deck/cards,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aOV" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/structure/table/woodentable,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/glasses/square,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aOX" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"aPa" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small{dir = 1},/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aPb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aPc" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aPd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aPf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"aPj" = (/obj/structure/closet/crate/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/medbay)
-"aPk" = (/turf/simulated/wall/r_wall,/area/medical/medbay_emt_bay)
-"aPm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/glass{id_tag = null; name = "EMT Bay"; req_access = list(5)},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay)
-"aPn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay)
-"aPo" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/security_equiptment_storage)
-"aPp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aPr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/security_hallway)
-"aPs" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aPt" = (/obj/structure/table/standard,/obj/item/weapon/storage/laundry_basket,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aPu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"aPv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aPw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aPx" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/floor_decal/industrial/outline/grey,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aPy" = (/obj/machinery/newscaster{pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"aPz" = (/turf/simulated/floor/tiled,/area/security/main)
-"aPA" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/security/main)
-"aPB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/main)
-"aPC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/main)
-"aPD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/main)
-"aPE" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/security/main)
-"aPF" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/main)
-"aPG" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION: FIRING RANGE"},/turf/simulated/wall,/area/security/range)
-"aPH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor,/area/engineering/engine_waste)
-"aPK" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/pipe/cap/visible{color = "#00ffff"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"aPN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/cap/visible{color = "#00ffff"},/turf/simulated/floor,/area/engineering/engine_room)
-"aPO" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"aPP" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/cap/visible{color = "#ffcc00"},/turf/simulated/floor,/area/engineering/engine_room)
-"aPS" = (/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; pixel_y = 24; tag_airpump = "engine_airlock_pump"; tag_chamber_sensor = "eng_al_c_snsr"; tag_exterior_door = "engine_airlock_exterior"; tag_exterior_sensor = "eng_al_ext_snsr"; tag_interior_door = "engine_airlock_interior"; tag_interior_sensor = "eng_al_int_snsr"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aPT" = (/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{dir = 8; frequency = 1379; id = "engine_airlock_pump"},/obj/machinery/airlock_sensor{id_tag = "eng_al_c_snsr"; pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aPU" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engine_airlock)
-"aPV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aPY" = (/turf/simulated/wall/r_wall,/area/engineering/workshop)
-"aQb" = (/obj/machinery/door/window/northleft{name = "Animal Pen"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/grass,/area/hydroponics)
-"aQd" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/cash,/turf/simulated/floor,/area/maintenance/apmaint)
-"aQe" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/chief)
-"aQf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Engineering Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer)
-"aQg" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/foyer)
-"aQh" = (/turf/simulated/wall/r_wall,/area/engineering/foyer)
-"aQo" = (/turf/simulated/wall/r_wall,/area/engineering/break_room)
-"aQr" = (/turf/simulated/wall/r_wall,/area/engineering/engi_restroom)
-"aQt" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/disposalpipe/down,/obj/structure/cable{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/open,/area/maintenance/engineering)
-"aQu" = (/obj/structure/lattice,/obj/machinery/door/firedoor/border_only,/turf/simulated/open,/area/maintenance/engineering)
-"aQv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"aQw" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/central)
-"aQx" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/range)
-"aQz" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/security/range)
-"aQA" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/range)
-"aQB" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled,/area/teleporter)
-"aQC" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"aQD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aQE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aQG" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aQH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access = list(12)},/turf/simulated/floor,/area/maintenance/disposal)
-"aQI" = (/obj/structure/disposalpipe/sortjunction/untagged{dir = 1},/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Warehouse North"; dir = 6; name = "security camera"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"aQJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aQM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/mining{name = "Quartermaster"; req_access = list(41)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/qm)
-"aQN" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "quart_tint"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/qm)
-"aQO" = (/obj/structure/railing,/turf/simulated/open,/area/quartermaster/lockerroom)
-"aQQ" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/green/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aQR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"aQV" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"aQY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aRa" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/apcenter)
-"aRc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"aRf" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/blast/regular{id = "Cell 2"; name = "Cell 2 Door"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"aRg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"aRh" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"aRi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"aRo" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/prison)
-"aRp" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aRq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/blast/regular{id = "Cell 1"; name = "Cell 1 Door"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"aRr" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/prison)
-"aRs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_security{id_tag = "prisonentry"; name = "Brig Entry"; req_access = list(2)},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"aRt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{id_tag = "prisonentry"; name = "Brig Entry"; req_access = list(2)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"aRu" = (/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/prison)
-"aRv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Hot Loop Waste Gas Ejection Switch"},/turf/simulated/floor,/area/engineering/engine_waste)
-"aRw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/lattice,/turf/space,/area/space)
-"aRz" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"aRC" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 1},/turf/simulated/floor,/area/engineering/engine_waste)
-"aRE" = (/obj/machinery/atmospherics/valve/digital{name = "secondary TEG valve"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"aRK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "eng_al_ext_snsr"; layer = 3.3; master_tag = "engine_room_airlock"; pixel_y = -22; req_access = list(10)},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"aRL" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance_hatch{name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
-"aRN" = (/obj/machinery/cryopod/robot{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"aRQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aRR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 23},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aRV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"aSb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aSc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aSd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aSe" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/sign/warning/secure_area{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"aSg" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aSh" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/bookcase/manuals/engineering,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"aSi" = (/obj/structure/closet/crate,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/double,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aSj" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aSl" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aSm" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aSp" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"aSq" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 32; d2 = 4; icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/turf/simulated/open,/area/maintenance/substation/central)
-"aSr" = (/turf/simulated/wall,/area/security/warden)
-"aSs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Warden's Office"; req_access = list(3)},/turf/simulated/floor/tiled/techmaint,/area/security/warden)
-"aSt" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/warden)
-"aSv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/warden)
-"aSx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aSy" = (/turf/simulated/floor/tiled,/area/teleporter)
-"aSz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aSA" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aSC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"aSD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Evidence Storage"; req_access = list(1)},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage)
-"aSE" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"aSG" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/tiled,/area/security/main)
-"aSH" = (/obj/structure/table/standard,/obj/item/weapon/folder/red,/obj/item/clothing/glasses/hud/security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/red,/area/security/main)
-"aSI" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/tiled/red,/area/security/main)
-"aSJ" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/random/trash,/obj/random/trash,/obj/random/trash,/turf/simulated/floor,/area/maintenance/disposal)
-"aSK" = (/obj/machinery/light/small{dir = 8},/obj/random/trash_pile,/obj/item/device/geiger/wall/west,/turf/simulated/floor,/area/maintenance/cargo)
-"aSL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/maintenance/cargo)
-"aSP" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"aSQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"aSR" = (/obj/structure/disposalpipe/tagger/partial{dir = 1; name = "Sorting Office"; sort_tag = "Sorting Office"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/warehouse)
-"aST" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"aSU" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/bar)
-"aSV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"aTb" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/tiled,/area/security/main)
-"aTc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/main)
-"aTd" = (/obj/machinery/light{dir = 4},/obj/structure/table/standard,/obj/item/weapon/storage/box/donut,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/main)
-"aTe" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"aTf" = (/obj/structure/table/steel_reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/magnetic_controller{autolink = 1},/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses/sechud/aviator,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled,/area/security/range)
-"aTg" = (/obj/machinery/door/window/northleft{name = "Range Access"},/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/floor/tiled,/area/security/range)
-"aTh" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/gun/energy/laser/practice,/turf/simulated/floor/tiled,/area/security/range)
-"aTi" = (/obj/structure/table/steel_reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/laser/practice,/turf/simulated/floor/tiled,/area/security/range)
-"aTj" = (/obj/structure/lattice,/obj/structure/grille/broken,/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"aTk" = (/turf/simulated/wall/r_wall,/area/security/brig)
-"aTl" = (/obj/structure/bed/padded,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/turf/simulated/floor/tiled,/area/security/brig)
-"aTm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig)
-"aTn" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/machinery/camera/network/prison{c_tag = "SEC - Brig Cell 2"; dir = 8},/obj/item/device/radio/headset,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"aTo" = (/obj/structure/bed/padded,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/turf/simulated/floor/tiled,/area/security/brig)
-"aTp" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/machinery/camera/network/prison{c_tag = "SEC - Brig Cell 1"; dir = 8},/obj/item/device/radio/headset,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"aTq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/security/prison)
-"aTs" = (/obj/structure/lattice,/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Cooling North"; dir = 8},/turf/space,/area/space)
-"aTt" = (/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/engineering/engine_room)
-"aTu" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/valve/digital{name = "secondary TEG valve"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"aTv" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/status_display{layer = 4; pixel_x = 32},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/ai_status_display{pixel_y = 28},/turf/simulated/floor,/area/engineering/engine_waste)
-"aTB" = (/turf/simulated/wall/r_wall,/area/engineering/engine_airlock)
-"aTC" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/engineering/engine_airlock)
-"aTH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/item/device/geiger/wall/west,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aTI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aTK" = (/turf/simulated/wall,/area/engineering/workshop)
-"aTR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aTS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aTT" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"aTV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"aTW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aTX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aTY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"aTZ" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Coffee Shop"; sortType = "Coffee Shop"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"aUc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aUd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig Enterance"; dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aUg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "visit_blast"; name = "Privacy Shutters"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/prison)
-"aUh" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/teleporter)
-"aUk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"aUm" = (/obj/machinery/teleport/station{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter)
-"aUn" = (/obj/machinery/teleport/hub{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/teleporter)
-"aUq" = (/obj/machinery/door/airlock{id_tag = "visitdoor"; name = "Visitation Area"; req_access = list(63)},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"aUu" = (/obj/machinery/computer/prisoner,/obj/machinery/newscaster/security_unit{pixel_y = 30},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aUv" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/camera/network/security{c_tag = "SEC - Warden's Office"},/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aUw" = (/obj/machinery/camera/network/research{c_tag = "SCI - Break Room"; dir = 4},/turf/simulated/floor/wood,/area/rnd/research)
-"aUx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aUy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aUz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/steel_reinforced,/obj/item/weapon/stamp/denied{pixel_x = 5},/obj/item/weapon/stamp/ward,/obj/item/weapon/tool/crowbar,/obj/item/device/radio/off,/obj/item/weapon/tool/wrench,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/light{dir = 1},/obj/item/device/gps/security,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aUA" = (/obj/structure/closet/secure_closet/warden,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aUB" = (/obj/machinery/camera/network/security{c_tag = "SEC - Brig Hallway Fore"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aUC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aUD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aUE" = (/turf/simulated/wall,/area/security/security_processing)
-"aUG" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing)
-"aUH" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing)
-"aUI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing)
-"aUJ" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing)
-"aUK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/cargo)
-"aUM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/loading{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aUN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aUO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aUP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aUS" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room)
-"aUT" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"aUV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor,/area/engineering/engine_monitoring)
-"aUW" = (/obj/machinery/computer/power_monitor{dir = 4},/obj/item/device/geiger/wall/north,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aUX" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aUY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aUZ" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aVb" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/machinery/camera/network/civilian{c_tag = "CIV - Emergency EVA"; dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"aVd" = (/obj/structure/bed/padded,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/item/weapon/bedsheet/green,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"aVj" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/port)
-"aVn" = (/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 10},/obj/structure/sign/directions/science{dir = 4},/obj/structure/sign/directions/cryo{dir = 4; pixel_y = -10},/turf/simulated/wall,/area/maintenance/apmaint)
-"aVw" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"aVx" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/computer/guestpass{pixel_x = 28},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"aVy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aVF" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/maintenance/medbay)
-"aVG" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fpcenter)
-"aVJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"aVL" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"aVU" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"aVV" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"aVZ" = (/obj/structure/table/standard,/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/security/security_processing)
-"aWa" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/security/main)
-"aWb" = (/turf/simulated/wall,/area/maintenance/research)
-"aWe" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aWf" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"aWi" = (/turf/simulated/wall,/area/maintenance/robotics)
-"aWj" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"aWl" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/tiled,/area/security/main)
-"aWm" = (/obj/structure/table/standard,/obj/item/weapon/folder/red,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/red,/area/security/main)
-"aWn" = (/obj/structure/table/standard,/obj/item/weapon/folder/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/red,/area/security/main)
-"aWo" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/tiled,/area/security/main)
-"aWp" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/security/main)
-"aWq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Firing Range"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/range)
-"aWr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/range)
-"aWs" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/security/range)
-"aWt" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/range)
-"aWu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/security/range)
-"aWv" = (/obj/machinery/light/spot,/turf/simulated/floor/tiled/airless,/area/rnd/test_area)
-"aWw" = (/obj/effect/floor_decal/corner/red/full{dir = 8},/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos)
-"aWx" = (/obj/effect/floor_decal/corner/red/full{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Nitrogen"},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos)
-"aWy" = (/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos)
-"aWz" = (/obj/effect/floor_decal/corner/blue/full{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Oxygen"},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos)
-"aWA" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "air_sensor"; output = 7},/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/effect/floor_decal/corner/white{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos)
-"aWB" = (/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Air"},/obj/effect/floor_decal/corner/white/diagonal,/obj/effect/floor_decal/corner/blue{dir = 4},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos)
-"aWC" = (/obj/effect/landmark{name = "carpspawn"},/obj/structure/lattice,/turf/space,/area/space)
-"aWF" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1438; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"aWG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; req_access = list(11)},/turf/simulated/floor,/area/engineering/engine_room)
-"aWH" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/effect/floor_decal/industrial/outline/blue,/obj/effect/engine_setup/pump_max,/turf/simulated/floor,/area/engineering/engine_waste)
-"aWI" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/effect/floor_decal/industrial/warning,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room)
-"aWJ" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Emergency Cooling Valve 1"},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor,/area/engineering/engine_room)
-"aWK" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"aWL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor,/area/engineering/engine_monitoring)
-"aWM" = (/obj/machinery/computer/rcon{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aWO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aWP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engine Monitoring Room"; req_access = list(11)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 5; d2 = 10; icon_state = "5-10"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring)
-"aWZ" = (/obj/effect/floor_decal/borderfloorblack{dir = 9},/obj/effect/floor_decal/industrial/danger{dir = 9},/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/port)
-"aXa" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXe" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXf" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "medbayrecquar"; name = "Medbay Emergency Quarantine Shutters"; opacity = 0},/obj/machinery/light,/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"aXj" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXk" = (/obj/machinery/alarm{pixel_y = 23},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXm" = (/obj/machinery/station_map{pixel_y = 32},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/port)
-"aXn" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXo" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXq" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aXr" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/port)
-"aXs" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fpcenter)
-"aXu" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aXB" = (/turf/simulated/wall/r_wall,/area/teleporter)
-"aXI" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/central)
-"aXJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"aXK" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"aXM" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "waste_sensor"; output = 63},/obj/effect/floor_decal/corner/lime/full{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos)
-"aXN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/cargo)
-"aXQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{dir = 4; id = "qm_warehouse"; name = "Warehouse Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"aXR" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"aXU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aXV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aXW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Dock"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D3)
-"aXX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"aXY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"aYd" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"aYe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel,/area/quartermaster/lockerroom)
-"aYf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/bar)
-"aYj" = (/obj/effect/floor_decal/corner/lime/full{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Gas Mixing"},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos)
-"aYk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"aYl" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"aYn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/security/brig)
-"aYo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"aYq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Medbay Substation"; req_access = list(5); req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"aYs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"aYt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/flasher{id = "permentryflash"; name = "Floor mounted flash"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/security/prison)
-"aYu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/security/prison)
-"aYv" = (/obj/structure/bed/chair,/obj/machinery/camera/network/prison{c_tag = "SEC - Visitation"; dir = 4},/turf/simulated/floor/tiled,/area/security/prison)
-"aYw" = (/obj/machinery/flasher{id = "IAflash"; pixel_x = 26},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison)
-"aYx" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/recharger/wallcharger{pixel_x = -26; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aYy" = (/turf/simulated/wall/r_wall,/area/engineering/engine_waste)
-"aYA" = (/obj/machinery/door/blast/regular{id = "EngineVent"; name = "Reactor Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced/airless,/area/engineering/engine_room)
-"aYB" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; icon_state = "emitter2"; id = "EngineEmitter"; state = 2},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/engineering/engine_room)
-"aYC" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Power"; name_tag = "Engine Power"},/turf/simulated/floor,/area/engineering/engine_room)
-"aYD" = (/obj/item/modular_computer/console/preset/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aYE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"aYF" = (/obj/machinery/disposal,/obj/machinery/camera/network/engine{c_tag = "ENG - Monitoring Room"; dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/yellow{d1 = 5; d2 = 10; icon_state = "5-10"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"aYJ" = (/turf/simulated/wall,/area/engineering/hallway/engineer_hallway)
-"aYK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"aYX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"aZc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/port)
-"aZe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"aZf" = (/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"aZg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"aZh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"aZj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"aZk" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/port)
-"aZm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"aZn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aZx" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"aZB" = (/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aZC" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"aZD" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/central)
-"aZE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"aZF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance Access"; req_one_access = list(12,19)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/central)
-"aZG" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"aZH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"aZI" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"aZJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aZK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aZL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/research)
-"aZM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D3)
-"aZN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aZO" = (/obj/structure/table/steel_reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"aZQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"aZS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"aZU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"aZV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"aZW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"aZY" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"aZZ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"baa" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "secpro"},/turf/simulated/floor/plating,/area/security/security_processing)
-"bab" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bac" = (/turf/simulated/floor/tiled,/area/security/security_processing)
-"bad" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/security_processing)
-"bae" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/evidence,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bai" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"baj" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/item/weapon/storage/bag/trash,/obj/structure/table/gamblingtable,/obj/machinery/firealarm{dir = 8; layer = 3.3; pixel_x = 26},/turf/simulated/floor,/area/maintenance/disposal)
-"bak" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/cargo)
-"bam" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/landmark/start{name = "Cargo Technician"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bap" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/engineering{name = "Cargo Substation"; req_one_access = list(50)},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"baq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bas" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/table/standard,/obj/item/weapon/storage/box/nifsofts_security,/turf/simulated/floor/tiled/red,/area/security/main)
-"bav" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/box/holowarrants{pixel_x = 3; pixel_y = 4},/obj/item/weapon/storage/box/holowarrants{pixel_y = -1},/turf/simulated/floor/tiled/red,/area/security/main)
-"baw" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"bax" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/main)
-"baz" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core 2"; dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"baA" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"baB" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; req_access = list(11)},/turf/simulated/floor,/area/engineering/engine_room)
-"baC" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"baD" = (/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 4; external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 1; pump_direction = 0; use_power = 1},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"baE" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"baG" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/computer/general_air_control/supermatter_core{dir = 4; input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; sensors = list("engine_sensor"="Engine Core")},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"baH" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Engineer"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"baI" = (/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"baJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
-"baK" = (/obj/structure/table/steel,/obj/machinery/microwave{pixel_x = -2; pixel_y = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"baL" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
-"baO" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"baU" = (/obj/effect/floor_decal/borderfloorblack{dir = 10},/obj/effect/floor_decal/industrial/danger{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/port)
-"baV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"baX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1; d2 = 10; icon_state = "1-10"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"baY" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"baZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbb" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"bbc" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbe" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Port Hallway 3"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbi" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"bbo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bbp" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/port)
-"bbq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Port Hallway 1"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"bbr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"bbt" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/navbeacon/patrol{location = "CH4"; next_patrol = "CH5"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"bbE" = (/obj/machinery/photocopier,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bbF" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bbK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"bbM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Starboard Hallway 2"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"bbN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/station_map{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"bbP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"bbR" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"bbS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/main)
-"bbT" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bbU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/main)
-"bbV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/main)
-"bbW" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/security/range)
-"bbZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/range)
-"bca" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/range)
-"bcb" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/range)
-"bcc" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -26},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/range)
-"bcd" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -26},/obj/structure/table/steel_reinforced,/obj/item/ammo_magazine/m9mmt/practice,/obj/item/ammo_magazine/m9mmt/practice,/obj/item/ammo_magazine/m45/practice,/obj/item/ammo_magazine/m45/practice,/obj/item/ammo_magazine/m45/practice,/obj/item/ammo_magazine/m45/practice,/obj/item/ammo_magazine/m45/practice,/obj/item/ammo_magazine/m45/practice,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/ammo_magazine/s45/practice,/obj/item/ammo_magazine/s45/practice,/obj/item/ammo_magazine/s45/practice,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/range)
-"bce" = (/turf/simulated/wall,/area/rnd/test_area)
-"bcf" = (/obj/machinery/door/airlock/external{name = "Toxins Test Chamber"},/turf/simulated/floor/airless,/area/rnd/test_area)
-"bcg" = (/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos)
-"bch" = (/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos)
-"bcj" = (/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos)
-"bck" = (/turf/simulated/floor/reinforced/airless,/area/engineering/atmos)
-"bcl" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall/r_wall,/area/security/brig)
-"bcn" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/engineering/engine_room)
-"bcp" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{dir = 8; id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor,/area/engineering/engine_room)
-"bcr" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor,/area/engineering/engine_room)
-"bcs" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/blue,/obj/effect/engine_setup/coolant_canister,/turf/simulated/floor,/area/engineering/engine_room)
-"bcu" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/blue,/obj/effect/engine_setup/coolant_canister,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"bcv" = (/obj/item/device/geiger/wall/south,/obj/machinery/computer/security/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"bcw" = (/obj/structure/table/reinforced,/obj/item/clothing/ears/earmuffs,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/clamp,/obj/item/clamp,/obj/item/clamp,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"bcx" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"bcy" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/engine_monitoring)
-"bcB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bcH" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/vending/snack{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"bcK" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"bcL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bcM" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bcR" = (/obj/structure/closet/secure_closet/medical1,/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bcS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Emergency EVA"},/turf/simulated/floor/tiled/steel_grid,/area/ai_monitored/storage/emergency/eva)
-"bcV" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"bcY" = (/obj/structure/disposalpipe/broken{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"bcZ" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fpcenter)
-"bdb" = (/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"bdc" = (/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"bdd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"bdg" = (/turf/unsimulated/mask,/area/hallway/primary/seconddeck/apcenter)
-"bdh" = (/turf/simulated/floor/plating,/area/maintenance/central)
-"bdj" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/brig)
-"bdk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "HoP Maintenance Access"; req_one_access = list(57)},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hop)
-"bdn" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/ascenter)
-"bdo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/ascenter)
-"bdq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"bds" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bdA" = (/obj/structure/sign/directions/bridge{dir = 8; pixel_y = 10},/obj/structure/sign/directions/evac{dir = 8; pixel_y = -10},/obj/structure/sign/directions/cargo{dir = 8},/turf/simulated/wall,/area/maintenance/medbay_fore)
-"bdF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/brigdoor/northright{id = "Cell 2"; name = "Cell 2"; req_access = null; req_one_access = list(2,4)},/turf/simulated/floor/tiled/steel_grid,/area/security/brig)
-"bdG" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/brig)
-"bdH" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/brig)
-"bdN" = (/obj/machinery/conveyor{id = "recycler"},/obj/machinery/recycling/stamper,/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"bdO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"bdP" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/warehouse)
-"bdQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bdR" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/cargo)
-"bdS" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/quartermaster/office)
-"bdT" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/brigdoor/northright{id = "Cell 1"; name = "Cell 1"; req_access = null; req_one_access = list(2,4)},/turf/simulated/floor/tiled/steel_grid,/area/security/brig)
-"bdU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/door/airlock/glass_security{id_tag = "prisonexit"; name = "Brig Exit"; req_access = list(2)},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"bdV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_security{id_tag = "prisonexit"; name = "Brig Exit"; req_access = list(2)},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"bdY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bec" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/engineering/engine_smes)
-"bei" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/tagger/partial{dir = 1; name = "Sorting Office"; sort_tag = "Sorting Office"},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"beq" = (/turf/simulated/wall,/area/maintenance/apmaint)
-"ber" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"bet" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"bez" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"beB" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area/space)
-"beC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"beK" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/apcenter)
-"beL" = (/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/apcenter)
-"beO" = (/obj/machinery/computer/skills,/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "hop_office_desk"; name = "Desk Privacy Shutter"; pixel_x = 8; pixel_y = 28},/obj/machinery/button/windowtint{id = "hop_office"; pixel_y = 29},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/item/device/gps/command,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"beP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"beQ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/newscaster/security_unit{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"beT" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"beX" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"beY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"beZ" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"bfa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bfb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bfc" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bfh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bfl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"bfm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bfo" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid"},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"bfp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"bfr" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bfs" = (/obj/structure/table/steel,/obj/item/device/t_scanner,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm{pixel_y = 23},/obj/random/cash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bft" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bfu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bfv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"bfx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"bfy" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northright{name = "Visitation"; req_access = list(2)},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/security/prison)
-"bfz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Prison Gate"; name = "Communal Brig Blast Door"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/prison)
-"bfA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bfB" = (/obj/machinery/photocopier/faxmachine{department = "Warden's Office"},/obj/structure/table/steel_reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bfD" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bfE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bfF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bfG" = (/obj/machinery/button/remote/blast_door{id = "security_lockdown"; name = "Brig Lockdown"; pixel_x = 36; pixel_y = 18; req_access = list(2)},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bfH" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/brigdoor/eastleft{name = "Warden's Desk"; req_access = list(3)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bfI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bfJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bfK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bfL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/security{name = "Security Processing"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_processing)
-"bfN" = (/obj/structure/lattice,/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Cooling South"; dir = 8},/turf/space,/area/space)
-"bfO" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bfQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"bfS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/apmaint)
-"bfV" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"bfW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bfY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bga" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bgb" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bgc" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bge" = (/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"bgf" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"bgj" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/storage/bag/ore,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"bgk" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"bgl" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"bgm" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"bgo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/emergency/eva)
-"bgp" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"bgq" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fpcenter)
-"bgr" = (/obj/structure/bed/roller,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"bgA" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/central)
-"bgB" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/central)
-"bgE" = (/obj/structure/table/glass,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/recharger,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Center Stair Access"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"bgF" = (/obj/structure/table/glass,/obj/random/cigarettes,/obj/random/toolbox,/obj/random/tech_supply,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"bgG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/stairwell)
-"bgH" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bgI" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bgK" = (/obj/structure/table/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "hop_office_desk"; name = "HoP Office Privacy Shutters"; opacity = 0},/obj/machinery/door/window/brigdoor/eastright{name = "Head of Personnel's Desk"; req_access = list(57)},/obj/machinery/door/window/northleft{dir = 8; name = "Reception Window"},/obj/structure/noticeboard{pixel_y = 27},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hop)
-"bgL" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Head of Personnel"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"bgM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"bgN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bgQ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bgR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"bgS" = (/obj/structure/flora/ausbushes/fullgrass,/obj/machinery/light{dir = 4},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bgU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bgW" = (/obj/structure/sign/redcross{desc = "The Star of Life, a symbol of Medical Aid."; icon_state = "lifestar"; name = "Medbay"; pixel_x = -32},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"bgZ" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bha" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhb" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhc" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhf" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhg" = (/obj/structure/table/rack,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/suit/storage/hazardvest,/obj/item/device/radio,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhh" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhi" = (/obj/structure/closet,/obj/item/weapon/storage/backpack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/firstaid,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"bhj" = (/turf/simulated/wall,/area/maintenance/medbay_fore)
-"bhk" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bhl" = (/obj/structure/table/standard,/obj/item/device/tape/random,/obj/item/device/taperecorder,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bhm" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/security_processing)
-"bho" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bhp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"bhq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/main)
-"bhr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/main)
-"bhs" = (/obj/machinery/conveyor{id = "recycler"},/obj/machinery/door/window/southleft{name = "Recycling Chute"; req_access = list(50)},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"bhw" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"bhx" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bhy" = (/obj/machinery/floodlight,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"bhD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/lattice,/turf/space,/area/space)
-"bhE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/space,/area/space)
-"bhF" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/grille,/turf/space,/area/space)
-"bhH" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"bhI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor,/area/engineering/engine_room)
-"bhJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/alarm/nobreach{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/hidden/universal{color = "#00ff00"},/turf/simulated/floor,/area/engineering/engine_room)
-"bhL" = (/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable{RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; input_level = 100000; output_level = 200000},/obj/effect/engine_setup/smes,/turf/simulated/floor/plating,/area/engineering/engine_smes)
-"bhM" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/structure/table/steel,/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"bhN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/table/steel,/obj/item/device/multitool{pixel_x = 5},/obj/item/clothing/gloves/yellow,/obj/machinery/camera/network/engine{c_tag = "ENG - SMES Room"; dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"bhP" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bib" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/main)
-"bid" = (/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bie" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bih" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"bii" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/stairwell)
-"bik" = (/obj/machinery/computer/card{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"bin" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bir" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"biv" = (/turf/simulated/wall/r_wall,/area/medical/exam_room)
-"biw" = (/obj/structure/disposalpipe/segment,/obj/machinery/ai_status_display{pixel_x = -32},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bix" = (/obj/machinery/space_heater,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"biz" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Medical Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"biB" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"biC" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills{pixel_y = 4},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/blue/bordercorner,/obj/item/device/gps/medical/cmo,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"biD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/security/main)
-"biE" = (/turf/simulated/wall,/area/security/aid_station)
-"biF" = (/turf/simulated/wall,/area/security/security_ses)
-"biG" = (/turf/simulated/wall/r_wall,/area/security/security_ses)
-"biH" = (/obj/structure/closet/emcloset,/turf/simulated/floor/airless,/area/rnd/test_area)
-"biI" = (/obj/effect/floor_decal/corner/red/full,/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos)
-"biJ" = (/obj/effect/floor_decal/corner/red/full{dir = 4},/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; id = "n2_in"; use_power = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos)
-"biK" = (/obj/effect/floor_decal/corner/blue/full,/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos)
-"biL" = (/obj/effect/floor_decal/corner/blue/full{dir = 4},/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; id = "o2_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos)
-"biM" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/effect/floor_decal/corner/blue{dir = 8},/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1443; id = "air_in"; use_power = 1},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos)
-"biN" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/effect/floor_decal/corner/white,/obj/machinery/atmospherics/unary/vent_pump/high_volume{external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1443; icon_state = "map_vent_in"; id_tag = "air_out"; internal_pressure_bound = 2000; internal_pressure_bound_default = 2000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airmix,/area/engineering/atmos)
-"biO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; use_power = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/engineering/atmos)
-"biP" = (/obj/effect/floor_decal/corner/lime/full,/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "waste_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos)
-"biQ" = (/obj/effect/floor_decal/corner/lime/full{dir = 4},/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; id = "waste_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/engineering/atmos)
-"biT" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/brig)
-"biU" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/machinery/door_timer/cell_2{pixel_y = 32; req_access = null; req_one_access = list(2,4)},/obj/machinery/camera/network/prison{c_tag = "SEC - Cell Hallway 1"; dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"biV" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/button/remote/blast_door{id = "Cell 2"; name = "Cell 2 Door"; pixel_x = -1; pixel_y = 28; req_access = null; req_one_access = list(2,4)},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/button/flasher{id = "Cell 2"; name = "Cell 2 Flash"; pixel_x = -1; pixel_y = 36; req_access = list(2,4)},/turf/simulated/floor/tiled,/area/security/brig)
-"biW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/brig)
-"biX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/structure/lattice,/turf/space,/area/space)
-"biY" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space)
-"biZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/structure/grille,/turf/space,/area/space)
-"bjc" = (/obj/machinery/power/generator{anchored = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"bje" = (/obj/machinery/power/generator{anchored = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bjf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/turf/simulated/floor,/area/engineering/engine_room)
-"bjh" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/turf/simulated/floor,/area/engineering/engine_room)
-"bjt" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"bju" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/door_timer/cell_1{pixel_y = 32; req_access = null; req_one_access = list(2,4)},/turf/simulated/floor/tiled,/area/security/brig)
-"bjw" = (/obj/machinery/button/remote/blast_door{id = "Cell 1"; name = "Cell 1 Door"; pixel_x = -1; pixel_y = 28; req_access = null; req_one_access = list(2,4)},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/button/flasher{id = "Cell 1"; name = "Cell 1 Flash"; pixel_x = -1; pixel_y = 36; req_access = list(2,4)},/turf/simulated/floor/tiled,/area/security/brig)
-"bjx" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/brig)
-"bjy" = (/obj/machinery/computer/security/telescreen{desc = "Big Brother is watching."; name = "Brig Monitor"; network = list("Prison"); pixel_y = 28},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/brig)
-"bjz" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/brig)
-"bjA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "prisonentry"; name = "Entry Doors"; pixel_x = 26; pixel_y = -9; req_access = list(2)},/obj/machinery/button/remote/airlock{id = "prisonexit"; name = "Exit Doors"; pixel_x = 26; req_access = list(2)},/obj/machinery/button/flasher{id = "permentryflash"; name = "entry flash"; pixel_x = 39; req_access = list(2)},/obj/machinery/button/remote/blast_door{id = "Prison Gate"; name = "Prison Lockdown"; pixel_x = 32; pixel_y = 9; req_access = list(2)},/obj/machinery/button/flasher{id = "permflash"; name = "Brig flashes"; pixel_x = 39; pixel_y = -9; req_access = list(2)},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/security/brig)
-"bjC" = (/obj/machinery/computer/supplycomp/control,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bjD" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/security/prison)
-"bjE" = (/obj/machinery/button/remote/blast_door{id = "visit_blast"; name = "Privacy Shutters"; pixel_x = 25},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/flasher{id = "IAflash"; pixel_x = 25; pixel_y = 12},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/prison)
-"bjF" = (/obj/machinery/photocopier,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bjG" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 9"; dir = 4},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bjH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bjI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bjJ" = (/obj/machinery/light/small{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"bjL" = (/obj/structure/table/rack,/obj/random/powercell,/obj/random/powercell,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tank,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/catwalk,/obj/random/cash,/turf/simulated/floor/plating,/area/maintenance/central)
-"bjM" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"bjP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/stairwell)
-"bjQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/stairwell)
-"bjR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Center Elevator Access"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bjS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"bjT" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"bka" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 6},/obj/effect/floor_decal/corner/pink/bordercorner2{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"bkc" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"bkd" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/alarm{pixel_y = 23},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/pink/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"bke" = (/obj/structure/table/glass,/obj/item/weapon/cane,/obj/item/weapon/cane{pixel_x = -3; pixel_y = 2},/obj/item/weapon/storage/box/rxglasses,/obj/random/medical,/obj/random/firstaid,/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 21},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"bkf" = (/obj/machinery/vending/snack{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bkh" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bki" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bkj" = (/obj/structure/noticeboard{pixel_y = 28},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bkk" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bkl" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bkm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bko" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/navbeacon/delivery/north{location = "QM #1"},/mob/living/bot/mulebot,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bkp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Office Aft"; dir = 1; name = "security camera"},/obj/machinery/navbeacon/delivery/north{location = "QM #3"},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bkr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bkt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bkw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bkx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bkz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bkB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bkC" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bkE" = (/obj/structure/closet/hydrant{pixel_y = -32},/obj/item/clothing/glasses/meson,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"bkG" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"bkJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/industrial/warning,/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bkK" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"bkL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light,/obj/machinery/newscaster{pixel_y = -30},/obj/structure/cable/yellow{d1 = 5; d2 = 6; icon_state = "5-6"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"bkM" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"bkO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bkP" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bkR" = (/obj/structure/sign/directions/bridge{dir = 1; pixel_y = 10},/obj/structure/sign/directions/science{dir = 4},/obj/structure/sign/directions/medical{dir = 4; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/apcenter)
-"bkT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/turf/simulated/floor,/area/maintenance/apmaint)
-"bkV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/apmaint)
-"bkW" = (/turf/simulated/wall,/area/construction/seconddeck/construction1)
-"bkY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/tile/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/construction/seconddeck/construction1)
-"bkZ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bla" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"blb" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Warden"},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"blc" = (/obj/structure/table/steel_reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/hand_labeler,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bld" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"ble" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced/polarized{id = "secpro"},/turf/simulated/floor/plating,/area/security/security_processing)
-"blf" = (/obj/machinery/camera/network/security{c_tag = "SEC - Processing"; dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing)
-"blg" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing)
-"blh" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bli" = (/obj/structure/table/standard,/obj/item/device/camera,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/security/security_processing)
-"blk" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/security/main)
-"bll" = (/obj/machinery/papershredder,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"blm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"blo" = (/obj/structure/flora/ausbushes/genericbush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"blp" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"blr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"blu" = (/turf/simulated/wall,/area/maintenance/central)
-"blw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"blx" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/ascenter)
-"blB" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"blC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"blD" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"blN" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"blR" = (/obj/structure/table/reinforced,/obj/item/device/radio{anchored = 1; canhear_range = 1; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Reception Emergency Phone"; pixel_x = -5},/obj/machinery/door/window/eastleft{name = "Medical Reception"; req_access = list(5)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"blS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"blT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"blU" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"blV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/main)
-"blW" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/main)
-"blX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/security/main)
-"blY" = (/obj/structure/table/standard,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/item/device/healthanalyzer,/obj/item/stack/medical/bruise_pack{pixel_x = -4; pixel_y = 3},/obj/item/stack/medical/bruise_pack{pixel_x = 10},/obj/item/stack/medical/ointment{pixel_y = 10},/obj/random/medical/lite,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"blZ" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/item/weapon/reagent_containers/syringe/inaprovaline,/obj/item/weapon/reagent_containers/syringe/inaprovaline{pixel_x = -2; pixel_y = 5},/obj/item/weapon/reagent_containers/syringe/inaprovaline{pixel_y = 10},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"bma" = (/obj/structure/table/standard,/obj/item/device/radio/intercom/department/security{dir = 4; icon_override = "secintercom"; pixel_x = 21},/obj/item/bodybag/cryobag{pixel_x = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/machinery/camera/network/security{c_tag = "SEC - Medical Station"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"bmb" = (/turf/simulated/wall/r_wall,/area/security/aid_station)
-"bmd" = (/obj/structure/closet/bombclosetsecurity,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bme" = (/obj/structure/closet/bombclosetsecurity,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bmf" = (/obj/structure/closet/l3closet/security,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/security{c_tag = "SEC - Secondary Equipment Storage"},/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bmh" = (/obj/structure/closet/l3closet/security,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bmk" = (/obj/structure/closet/crate,/obj/random/drinkbottle,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/action_figure,/obj/random/plushie,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bml" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
-"bmm" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"bmt" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/structure/sign/warning/nosmoking_2{pixel_x = 32},/obj/effect/floor_decal/industrial/outline,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/engineering/engine_room)
-"bmw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/apmaint)
-"bmA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"bmC" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"bmD" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/construction/seconddeck/construction1)
-"bmG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bmH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bmJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bmP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bmQ" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bmT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bmX" = (/turf/simulated/wall/r_wall,/area/maintenance/central)
-"bmY" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/stairwell)
-"bmZ" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"bna" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bne" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bnf" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bni" = (/obj/structure/closet/wardrobe/orange,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{pixel_x = 28},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bnj" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/airless,/area/rnd/test_area)
-"bnk" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bnl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"bno" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bnq" = (/obj/structure/sign/warning/high_voltage{pixel_y = 32},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bnr" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{pixel_x = 3; pixel_y = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bns" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/blue/border,/obj/item/modular_computer/console/preset/medical{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bnu" = (/obj/machinery/photocopier,/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bnw" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/camera/network/medbay{c_tag = "MED - Cryogenics"; dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/computer/transhuman/resleeving{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bnx" = (/obj/machinery/door/blast/regular{id = "toxinsdriver"; name = "Toxins Launcher Bay Door"},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/rnd/test_area)
-"bny" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/airless,/area/rnd/test_area)
-"bnz" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/airless,/area/rnd/test_area)
-"bnA" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos)
-"bnB" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos)
-"bnC" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter{frequency = 1443; id = "mair_in_meter"; name = "Mixed Air Tank In"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos)
-"bnD" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter{frequency = 1443; id = "mair_out_meter"; name = "Mixed Air Tank Out"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos)
-"bnE" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/lattice,/turf/space,/area/space)
-"bnF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/space,/area/space)
-"bnG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/structure/grille,/turf/space,/area/space)
-"bnH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/structure/grille,/turf/space,/area/space)
-"bnM" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bnN" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"bnO" = (/obj/machinery/atmospherics/binary/pump/high_power{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/obj/effect/engine_setup/pump_max,/turf/simulated/floor,/area/engineering/engine_room)
-"bnP" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/engineering/engine_room)
-"bnQ" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/engineering/engine_room)
-"bnR" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/engineering/engine_room)
-"bnS" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room)
-"bnW" = (/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"bnY" = (/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"bnZ" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"bob" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/engineering/atmos)
-"boc" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor,/area/engineering/atmos)
-"bod" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/brig)
-"bof" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"bog" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"bom" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bon" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"boo" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bop" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bos" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"bou" = (/obj/structure/closet/crate,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/double,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bov" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/light,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/brig)
-"bow" = (/obj/machinery/alarm{pixel_y = 22},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"boB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"boC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"boE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/cryopod{layer = 3.3; pixel_y = -32},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/brig)
-"boF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"boH" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light{dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"boI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"boL" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = list(57)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/hop)
-"boP" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"boR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/security/brig)
-"boU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/apcenter)
-"boV" = (/obj/structure/sign/directions/evac{pixel_y = -10},/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/apcenter)
-"boY" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/hop)
-"boZ" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/apcenter)
-"bpa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/fireaxecabinet{pixel_x = -32},/obj/item/weapon/stool/padded,/obj/machinery/light{dir = 8},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"bpb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"bpc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"bpf" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36; pixel_y = -6},/obj/machinery/button/windowtint{id = "exam_window_tint"; pixel_x = 36; pixel_y = 6},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"bph" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bpi" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bpj" = (/obj/machinery/light/small,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bpk" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bpl" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bpm" = (/obj/structure/table/reinforced,/obj/item/device/radio{anchored = 1; canhear_range = 1; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Reception Emergency Phone"},/obj/machinery/door/window/eastright{name = "Medical Reception"; req_access = list(5)},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bpn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"bpo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/security/brig)
-"bpp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/brig)
-"bpq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bpr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/prison{c_tag = "SEC - Cell Hallway 2"; dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"bps" = (/obj/item/weapon/material/shard{icon_state = "medium"},/obj/item/stack/rods,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bpt" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bpy" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bpz" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bpB" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/item/weapon/material/knife,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bpD" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading,/obj/machinery/navbeacon/delivery/south{location = "Bar"},/turf/simulated/floor/tiled,/area/crew_quarters/bar)
-"bpE" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft)
-"bpF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Deck 2 Aft automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bpG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bpH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bpI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bpK" = (/obj/machinery/door/airlock{id_tag = "visitdoor"; name = "Visitation Area"; req_access = list(63)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison)
-"bpL" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bpM" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bpN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/lattice,/turf/space,/area/space)
-"bpO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bpP" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport2"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/manifold/visible/green,/turf/simulated/floor,/area/engineering/engine_room)
-"bqc" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor,/area/engineering/engine_room)
-"bqe" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"bqf" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/computer/secure_data{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bqh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/outline/grey,/obj/item/modular_computer/console/preset/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden)
-"bqi" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/warden)
-"bql" = (/obj/machinery/computer/supplycomp{dir = 4; icon_rotation = 90},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bqm" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bqn" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bqq" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/quartermaster/qm)
-"bqr" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bqu" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/table/steel,/obj/random/medical,/obj/random/medical/lite,/obj/random/medical/lite,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bqy" = (/turf/simulated/floor,/area/maintenance/bar)
-"bqz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bqC" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bqD" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bqE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bqI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bqQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/navbeacon/patrol{location = "CH7"; next_patrol = "CH8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bqR" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "secpro"},/turf/simulated/floor/plating,/area/security/security_processing)
-"bra" = (/turf/simulated/wall,/area/medical/medbay_emt_bay)
-"brb" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/obj/machinery/alarm{pixel_y = 23},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"brc" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Break Area"; dir = 4},/obj/item/weapon/tool/screwdriver,/obj/item/organ/internal/lungs/erikLungs,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"brd" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"bre" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"brf" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"brg" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"brh" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/security/security_processing)
-"bri" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing)
-"brj" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/security_processing)
-"brk" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/machinery/button/windowtint{id = "secpro"; pixel_x = -12; pixel_y = -24},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/security_processing)
-"brl" = (/obj/machinery/computer/secure_data{dir = 8},/obj/item/device/radio/intercom/department/security{dir = 4; icon_override = "secintercom"; pixel_x = 21},/obj/machinery/newscaster{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/security/security_processing)
-"brm" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/main)
-"brn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_security{name = "Briefing Room"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/main)
-"bro" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Briefing Room"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/main)
-"brp" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/main)
-"brq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"brr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"brs" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"brt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bru" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/security_ses)
-"brv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_ses)
-"brw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/security/security_ses)
-"brx" = (/turf/simulated/floor/tiled,/area/security/security_ses)
-"bry" = (/obj/structure/sign/warning/bomb_range,/turf/simulated/wall,/area/rnd/test_area)
-"brA" = (/obj/machinery/door/airlock/external{name = "Toxins Test Chamber"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/rnd/test_area)
-"brB" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/lattice,/turf/space,/area/space)
-"brC" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/structure/lattice,/turf/space,/area/space)
-"brD" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/space,/area/space)
-"brF" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/space,/area/space)
-"brG" = (/turf/simulated/wall/r_wall,/area/security/riot_control)
-"brH" = (/turf/simulated/wall,/area/security/riot_control)
-"brI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Riot Control"; req_access = list(2)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/security/riot_control)
-"brK" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"brL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"brM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"brN" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_security{name = "Solitary Confinement 1"; req_access = list(2)},/turf/simulated/floor/tiled/steel_grid,/area/security/brig)
-"brO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_security{name = "Solitary Confinement 2"; req_access = list(2)},/turf/simulated/floor/tiled/steel_grid,/area/security/brig)
-"brQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/brig)
-"brS" = (/obj/machinery/conveyor{dir = 10; id = "garbage"},/turf/simulated/floor,/area/maintenance/disposal)
-"brT" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room)
-"brU" = (/obj/machinery/light/small{dir = 1},/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor,/area/maintenance/disposal)
-"brW" = (/obj/machinery/conveyor{dir = 9; id = "garbage"},/obj/effect/landmark/teleplumb_exit,/turf/simulated/floor,/area/maintenance/disposal)
-"brY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/disposal)
-"brZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/cargo)
-"bsa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/cargo)
-"bsb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/cargo)
-"bsd" = (/obj/machinery/space_heater,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"bse" = (/turf/simulated/wall/r_wall,/area/engineering/engine_smes)
-"bsf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bsi" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"bsn" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/quartermaster/office)
-"bso" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/vending/medical,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bsp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/office)
-"bss" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bst" = (/obj/structure/closet,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bsx" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/clonepod/full,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"bsC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/medical{name = "Patient Room B"},/turf/simulated/floor/tiled/steel_grid,/area/medical/patient_b)
-"bsD" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/bar)
-"bsG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading,/obj/machinery/navbeacon/delivery/west{location = "Kitchen"},/obj/structure/plasticflaps/mining{opacity = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen)
-"bsM" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bsN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bsO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/apcenter)
-"bsP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bsQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"bsR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"bsS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"bsU" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"bsV" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bsY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/security/brig)
-"bsZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/brig)
-"bta" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"btf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bth" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bti" = (/turf/simulated/wall,/area/medical/reception)
-"btj" = (/obj/structure/bookcase/manuals/medical,/obj/item/weapon/book/manual/stasis,/obj/item/weapon/book/manual/medical_diagnostics_manual{pixel_y = 7},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"btk" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"btl" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access = list(25)},/turf/simulated/floor/tiled,/area/crew_quarters/bar)
-"btq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"btr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bts" = (/obj/structure/closet/gmcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/obj/machinery/camera/network/civilian{c_tag = "CIV - Bar Storage"},/obj/machinery/firealarm{pixel_y = 24},/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"btt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"btw" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bty" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"btE" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"btH" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"btJ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for Surgery."; id = "Surgery"; name = "Surgery"; pixel_y = 36},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"btL" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"btO" = (/obj/machinery/conveyor{id = "garbage"},/obj/structure/sign/warning/vacuum{pixel_x = -32},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/disposal)
-"btQ" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/obj/structure/biowaste_tank,/obj/structure/railing,/turf/simulated/floor,/area/maintenance/disposal)
-"btU" = (/obj/structure/closet/secure_closet/personal/patient,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"btV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/cargo)
-"btY" = (/turf/simulated/wall,/area/storage/emergency_storage/seconddeck/port_emergency)
-"bub" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/warden)
-"buc" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/warden)
-"bud" = (/turf/simulated/wall,/area/quartermaster/delivery)
-"buf" = (/obj/machinery/computer/supplycomp/control{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bug" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"buh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"buj" = (/turf/simulated/wall,/area/quartermaster/qm)
-"buk" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/lockerroom)
-"bum" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/quartermaster/lockerroom)
-"bup" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/patient_b)
-"buq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"buu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_security{name = "Warden's Office"; req_access = list(3)},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/security/warden)
-"buw" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bux" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"buy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"buz" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"buA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"buB" = (/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"buD" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/warden)
-"buE" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/security/warden)
-"buF" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"buK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"buL" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_medical{name = "Medical Reception"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/medical/reception)
-"buM" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/reception)
-"buN" = (/turf/simulated/wall/r_wall,/area/medical/reception)
-"buO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buQ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buR" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "secpro"},/turf/simulated/floor/plating,/area/security/security_processing)
-"buS" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "secpro"},/turf/simulated/floor/plating,/area/security/security_processing)
-"buT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/security{name = "Security Processing"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_processing)
-"buU" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buV" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"buZ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bva" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/aid_station)
-"bvb" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"bvc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"bvd" = (/obj/structure/bed/roller,/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"bve" = (/obj/structure/table/rack,/obj/item/weapon/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/security/security_ses)
-"bvf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/security_ses)
-"bvg" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/security_ses)
-"bvh" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/stunrevolver,/obj/item/weapon/gun/energy/stunrevolver,/obj/machinery/door/window/northleft,/turf/simulated/floor/tiled,/area/security/security_ses)
-"bvi" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/reagent_containers/spray/pepper,/obj/machinery/door/window/northright,/turf/simulated/floor/tiled,/area/security/security_ses)
-"bvj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/space)
-"bvk" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor,/area/maintenance/disposal)
-"bvl" = (/turf/simulated/floor,/area/maintenance/disposal)
-"bvn" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/maintenance/cargo)
-"bvo" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/turf/simulated/wall/r_wall,/area/engineering/atmos)
-"bvr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -26; req_access = list(50)},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvu" = (/obj/structure/table/steel,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/item/weapon/stamp/cargo,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvv" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvz" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvA" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvB" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Office Starboard"; name = "security camera"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvE" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bvF" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36; pixel_y = -6},/obj/machinery/button/windowtint{id = "quart_tint"; pixel_x = -36; pixel_y = 6},/obj/structure/flora/pottedplant/tropical,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"bvG" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"bvH" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"bvI" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"bvL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bvN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bvO" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bvP" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bvU" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/light,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bvV" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bvW" = (/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bvZ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bwa" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/apcenter)
-"bwd" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bwe" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bwg" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/light,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bwj" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/atmos)
-"bwl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bwo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bwp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bwq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bws" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bwu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bwz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_medical,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay)
-"bwB" = (/turf/simulated/wall/r_wall,/area/medical/foyer)
-"bwC" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/atmos)
-"bwG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Kitchen Delivery"; req_access = list(28)},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen)
-"bwI" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = -28; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bwJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bwK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bwL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bwP" = (/obj/random/contraband,/obj/random/contraband,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bwR" = (/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bwS" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bwU" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bwV" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bwW" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bwY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bwZ" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor,/area/engineering/engine_room)
-"bxb" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/window/reinforced,/obj/structure/plasticflaps/mining,/turf/simulated/floor,/area/maintenance/disposal)
-"bxc" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/maintenance/disposal)
-"bxd" = (/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/disposal)
-"bxe" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor,/area/maintenance/disposal)
-"bxf" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/disposal)
-"bxg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access = list(12)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/disposal)
-"bxh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/cargo)
-"bxi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/simulated/floor,/area/maintenance/cargo)
-"bxj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/cargo)
-"bxl" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bxm" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bxn" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/powercell,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bxq" = (/turf/simulated/wall/r_wall,/area/maintenance/apmaint)
-"bxr" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"bxt" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bxv" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/item/weapon/pen,/obj/item/device/retail_scanner/civilian{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bxA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bxB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; name = "QM Office"; sortType = "QM Office"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bxD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"bxI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bxL" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos)
-"bxM" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/riot_control)
-"bxP" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/apcenter)
-"bxQ" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"bxR" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/apcenter)
-"bxX" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bxY" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"bxZ" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 6"; dir = 1},/obj/structure/table/woodentable,/obj/item/device/communicator,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"bya" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"byc" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/ascenter)
-"byd" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/security/riot_control)
-"bye" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/security/brig)
-"byg" = (/obj/structure/closet/crate,/obj/item/clothing/shoes/boots/combat,/obj/item/weapon/tank/air,/obj/item/weapon/tank/air,/obj/item/weapon/tank/air,/obj/item/clothing/mask/gas,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"byj" = (/obj/structure/sign/warning/high_voltage{pixel_y = -32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bym" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"byp" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Hallway Port 1"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/goldenplaque{desc = "Done No Harm."; name = "Best Doctor 2552"; pixel_y = -32},/obj/machinery/door/airlock/glass_medical,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay)
-"byr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bys" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byv" = (/obj/machinery/computer/guestpass{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"byx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"byy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"byz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/security/brig)
-"byA" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/turf/simulated/floor/tiled,/area/security/brig)
-"byB" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/security/brig)
-"byC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Cells"; req_access = list(1)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/security/brig)
-"byD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"byF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/security_hallway)
-"byQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"byV" = (/obj/machinery/mass_driver{id = "trash"},/turf/simulated/floor/airless,/area/maintenance/disposal)
-"byW" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/maintenance/disposal)
-"byX" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Waste Disposal"; dir = 4},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/disposal)
-"byY" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/plasticflaps/mining,/turf/simulated/floor,/area/maintenance/disposal)
-"bzb" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/cargo)
-"bzc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/cargo)
-"bzd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bze" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/cargo)
-"bzf" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/random/junk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bzh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"bzj" = (/turf/simulated/wall,/area/quartermaster/foyer)
-"bzk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{c_tag = "SEC - Brig Hallway Mid"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bzm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bzn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bzp" = (/obj/machinery/photocopier,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bzt" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/storage/backpack/dufflebag,/obj/item/weapon/stamp/cargo,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"bzu" = (/obj/item/weapon/tape_roll,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/structure/table/steel,/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Stairwell"; dir = 1; name = "security camera"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/steel,/area/quartermaster/lockerroom)
-"bzv" = (/turf/simulated/wall,/area/quartermaster/lockerroom)
-"bzx" = (/obj/machinery/atmospherics/valve/shutoff{name = "Deck 2 Port automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bzy" = (/turf/simulated/wall,/area/ai_monitored/storage/emergency/eva)
-"bzz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bzA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bzB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"bzC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bzJ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"bzL" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/apcenter)
-"bzM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bzN" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bzO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bzU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bzV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bzW" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/ascenter)
-"bAc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"bAi" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/redcross{desc = "The Star of Life, a symbol of Medical Aid."; icon_state = "lifestar"; name = "Medbay"; pixel_x = -32},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"bAj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/medical/sleeper)
-"bAk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bAl" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bAm" = (/obj/structure/sign/greencross{desc = "White cross in a green field, you can get medical aid here."; name = "First-Aid"},/turf/simulated/wall,/area/security/aid_station)
-"bAn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_security{name = "Security Medical"; req_access = newlist()},/turf/simulated/floor/tiled/white,/area/security/aid_station)
-"bAq" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/security_ses)
-"bAr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/security{name = "Secondary Equipment Storage"; req_access = list(2)},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/security/security_ses)
-"bAs" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/security_ses)
-"bAt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bAu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/binary/pump{name = "N2 to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bAv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/valve/digital/open{name = "Nitrogen Outlet Valve"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bAw" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"bAx" = (/obj/structure/sign/warning/moving_parts,/turf/simulated/wall,/area/maintenance/disposal)
-"bAz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/cargo)
-"bAA" = (/obj/machinery/light/small,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bAG" = (/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"bAH" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/computer/general_air_control/large_tank_control{input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor"="Tank")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/spot{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bAM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/engine{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bAO" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bAP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bAQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bAT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBc" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bBd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bBe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bBg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/binary/pump{name = "O2 to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/valve/digital/open{name = "Oxygen Outlet Valve"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBl" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/computer/general_air_control/large_tank_control{input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor"="Tank")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBn" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBp" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"bBq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"bBr" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bBs" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"bBu" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1443; input_tag = "air_in"; name = "Mixed Air Supply Control"; output_tag = "air_out"; pressure_setting = 2000; sensors = list("air_sensor"="Tank")},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access = list(28)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/fans/hardlight/colorable{light_color = "#D7D7D7"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen)
-"bBx" = (/obj/machinery/atmospherics/valve/digital/open{name = "Mixed Air Inlet Valve"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBy" = (/obj/machinery/atmospherics/valve/digital/open{name = "Mixed Air Outlet Valve"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBz" = (/obj/machinery/atmospherics/binary/pump{name = "Air Mix to Connector"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bBC" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bBF" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Medbay Subgrid"; name_tag = "Medbay Subgrid"},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"bBG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"bBH" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/medical)
-"bBL" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/vials{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/fancy/vials,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bBN" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/techmaint,/area/medical/sleeper)
-"bBQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bBR" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/medical/sleeper)
-"bCd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bCe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bCf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bCg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bCi" = (/obj/machinery/vending/coffee{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bCj" = (/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bCl" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bCn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bCo" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bCr" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/medbay)
-"bCu" = (/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/holodeck_control)
-"bCx" = (/obj/machinery/computer/general_air_control/large_tank_control{input_tag = "waste_in"; name = "Gas Mix Tank Control"; output_tag = "waste_out"; sensors = list("waste_sensor"="Tank")},/obj/machinery/light/spot{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bCy" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bCA" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bCC" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/maintenance/disposal)
-"bCD" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/item/device/geiger/wall/north,/turf/simulated/floor,/area/maintenance/disposal)
-"bCE" = (/turf/simulated/wall/r_wall,/area/maintenance/disposal)
-"bCF" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "crg_aft_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor,/area/maintenance/cargo)
-"bCK" = (/obj/structure/disposalpipe/segment,/obj/structure/table/steel,/obj/item/weapon/storage/bag/trash{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/bag/trash,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"bCM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bCP" = (/obj/machinery/light{dir = 8},/obj/structure/table/steel,/obj/random/cigarettes,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/deck/cards,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bCU" = (/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bCV" = (/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/office)
-"bDb" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/cargo)
-"bDc" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"bDd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bDf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/computer/area_atmos/tag{scrub_id = "Brig"},/turf/simulated/floor/plating,/area/security/riot_control)
-"bDg" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/security/riot_control)
-"bDj" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/security/riot_control)
-"bDk" = (/obj/structure/table/steel,/obj/item/weapon/pen,/obj/item/weapon/paper,/obj/machinery/alarm{dir = 4; pixel_x = -23},/obj/item/device/radio/headset,/turf/simulated/floor/tiled,/area/security/brig)
-"bDl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/security/brig)
-"bDn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"bDo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bDp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bDq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"bDr" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/apcenter)
-"bDs" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/security/brig)
-"bDt" = (/obj/structure/table/steel,/obj/item/weapon/pen,/obj/item/weapon/paper,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/device/radio/headset,/turf/simulated/floor/tiled,/area/security/brig)
-"bDu" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/light,/obj/item/device/radio/headset,/turf/simulated/floor/tiled/dark,/area/security/brig)
-"bDv" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/industrial/outline/grey,/obj/item/device/radio/headset,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/security/brig)
-"bDw" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig)
-"bDx" = (/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bDy" = (/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bDE" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/cargo)
-"bDG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/structure/table/rack{dir = 8; layer = 2.6},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"bDH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bDJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bDK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{id_tag = null; name = "CMO's Quarters"; req_access = list(40)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/cmo)
-"bDL" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bDO" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bDQ" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bDT" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bDU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bDV" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bDZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEa" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/camera/network/security{c_tag = "SEC - Brig Hallway Port"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/structure/cable/green,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEt" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "crg_aft_airlock"; pixel_x = -25; req_access = null; tag_airpump = "crg_aft_pump"; tag_chamber_sensor = "crg_aft_sensor"; tag_exterior_door = "crg_aft_outer"; tag_interior_door = "crg_aft_inner"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "crg_aft_pump"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor,/area/maintenance/cargo)
-"bEw" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"bEx" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"bEy" = (/obj/structure/closet/crate/medical,/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Warehouse South"; dir = 10; name = "security camera"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"bEz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "HoS Office"; sortType = "HoS Office"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bEE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bEF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bEJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bEP" = (/turf/simulated/wall,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"bEV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/navbeacon/patrol{location = "CH5"; next_patrol = "CH6"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"bEW" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/apcenter)
-"bEZ" = (/obj/structure/table/woodentable,/obj/item/device/tape/random,/obj/machinery/light{dir = 4},/obj/item/device/starcaster_news{pixel_x = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"bFa" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"bFh" = (/turf/simulated/wall,/area/storage/emergency_storage/seconddeck/as_emergency)
-"bFi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bFj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"bFk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"bFm" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "CMO's Office"},/obj/machinery/keycard_auth{pixel_x = -26},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bFn" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bFo" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white_cmo,/obj/item/weapon/stamp/cmo,/obj/item/weapon/pen/multi,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bFq" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bFv" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/sleeper)
-"bFy" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bFD" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bFF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFI" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Security"; sortType = "Security"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(63)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/security/security_hallway)
-"bFK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFO" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFR" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bFS" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/security_hallway)
-"bFV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bFW" = (/obj/structure/kitchenspike,/obj/machinery/alarm/freezer{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bFX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bFY" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"bGa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bGb" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bGc" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bGd" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bGe" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bGg" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"bGh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"bGl" = (/turf/unsimulated/mask,/area/hallway/primary/seconddeck/port)
-"bGm" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/quartermaster/warehouse)
-"bGn" = (/turf/simulated/wall,/area/quartermaster/warehouse)
-"bGs" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bGt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southleft{name = "Cargo Desk"; req_access = list(50)},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bGw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/navbeacon/delivery/north{location = "QM #2"},/mob/living/bot/mulebot,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bGx" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/brown/bordercorner2,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bGz" = (/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/industrial/danger{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/office)
-"bGG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"bGI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bGK" = (/obj/structure/table/marble,/obj/item/weapon/material/ashtray/glass,/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.1; name = "Bar Shutters"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bGL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bGN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/mob/mouse,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bGP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bGR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bGS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bGT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"bGZ" = (/turf/simulated/wall,/area/maintenance/substation/medical)
-"bHd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36; pixel_y = -6},/obj/machinery/button/windowtint{id = "cmooffice"; pixel_x = -36; pixel_y = 6},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/structure/dogbed{name = "\improper Runtime's bed"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bHe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bHf" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "medbayquar"; name = "Medbay Emergency Lockdown Control"; pixel_x = -32; pixel_y = 36; req_access = list(5)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = -28; pixel_y = 28; req_access = list(5)},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the CMO's office."; id = "cmodoor"; name = "CMO Office Door Control"; pixel_x = -38; pixel_y = 28},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bHg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/glasses/sunglasses/medhud,/obj/item/device/radio{frequency = 1487; name = "Medbay Emergency Radio Link"},/obj/item/device/megaphone,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bHh" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced/polarized{id = "cmooffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/cmo)
-"bHo" = (/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bHp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bHq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/curtain/open/privacy,/turf/simulated/floor/tiled/steel_grid,/area/medical/cryo)
-"bHr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bHs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bHt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bHu" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/button/windowtint{id = "cryo_tint"; pixel_x = 36; pixel_y = 6},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36; pixel_y = -6},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bHv" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/cart,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"bHw" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"bHx" = (/obj/machinery/computer/arcade/clawmachine,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"bHy" = (/obj/structure/disposalpipe/segment,/obj/machinery/vending/giftvendor,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"bHz" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control)
-"bHA" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control)
-"bHC" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_y = -32},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bHD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bHE" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Patient Ward Starboard"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bHF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bHG" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bHL" = (/turf/simulated/wall,/area/maintenance/cargo)
-"bHO" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "crg_aft_outer"; locked = 1; name = "External Airlock Access"; req_access = list(13)},/turf/simulated/floor,/area/maintenance/cargo)
-"bHP" = (/obj/structure/table/rack{dir = 1},/obj/random/toy,/obj/random/tank,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bHQ" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bHR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"bHV" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bHZ" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/quartermaster/office)
-"bId" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIl" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/central)
-"bIm" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/central)
-"bIn" = (/obj/structure/catwalk,/obj/random/plushielarge,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bIp" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bIq" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/seconddeck/central_emergency)
-"bIr" = (/obj/machinery/light/small,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"bIu" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bIw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"bIx" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIy" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIz" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIA" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIC" = (/obj/random/obstruction,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bIH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Medbay Substation"; req_one_access = list(11,24,5)},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"bIJ" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/ai_status_display{pixel_x = -32},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/obj/item/device/defib_kit/compact/combat/loaded,/obj/item/weapon/cmo_disk_holder,/obj/item/device/denecrotizer/medical,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bIL" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "cmooffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/cmo)
-"bIM" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/techmaint,/area/medical/sleeper)
-"bIO" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bIP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bIQ" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/closet/secure_closet/medical_wall/pills{pixel_x = 32},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bIS" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Diagnostics"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/pink/bordercorner2,/obj/effect/floor_decal/corner/pink/bordercorner2{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bIT" = (/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_y = -32},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bIX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bIY" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bIZ" = (/obj/structure/sign/warning/nosmoking_2{pixel_x = 32},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bJa" = (/obj/machinery/atmospherics/valve,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/camera/network/security{c_tag = "SEC - Riot Control"; dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/security/riot_control)
-"bJb" = (/obj/random/trash,/turf/simulated/floor/plating,/area/security/riot_control)
-"bJc" = (/obj/machinery/atmospherics/valve,/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/security/riot_control)
-"bJd" = (/obj/structure/cryofeed{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/camera/network/prison{c_tag = "SEC - Solitary Confinement 1"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/security/brig)
-"bJe" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/security/brig)
-"bJf" = (/obj/machinery/cryopod,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/security/brig)
-"bJg" = (/obj/structure/cryofeed,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/camera/network/prison{c_tag = "SEC - Solitary Confinement 2"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/security/brig)
-"bJh" = (/turf/simulated/wall,/area/security/detectives_office)
-"bJi" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/effect/wingrille_spawn/reinforced/polarized{id = "detoffice"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/detectives_office)
-"bJj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/security{id_tag = "detdoor"; name = "Detective"; req_access = list(4)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/security/detectives_office)
-"bJk" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "detoffice"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/detectives_office)
-"bJl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/security_hallway)
-"bJm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(63)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_hallway)
-"bJn" = (/turf/simulated/wall,/area/security/lobby)
-"bJo" = (/obj/machinery/door/window/brigdoor/northleft{req_access = list(63)},/obj/machinery/light_switch{name = "light switch "; pixel_x = -34},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the brig foyer."; id = "BrigFoyer"; name = "Brig Foyer Doors"; pixel_x = -24; req_access = list(63)},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bJq" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bJs" = (/obj/machinery/door/window/brigdoor/northright{req_access = list(63)},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bJF" = (/turf/simulated/wall,/area/maintenance/emergencyeva)
-"bJG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bJJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bJR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bJY" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"bKb" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"bKf" = (/obj/structure/catwalk,/obj/item/tape/engineering,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bKg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bKh" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bKk" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bKn" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/cmo)
-"bKp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bKs" = (/obj/machinery/camera/network/medbay{c_tag = "MED - CMO"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"bKt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bKu" = (/turf/simulated/wall,/area/medical/sleeper)
-"bKF" = (/turf/simulated/wall,/area/medical/cryo)
-"bKI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(63)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_hallway)
-"bKJ" = (/turf/simulated/wall/r_wall,/area/security/security_hallway)
-"bKK" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKR" = (/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKS" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_security{id_tag = "BrigFoyer"; layer = 2.8; name = "Security Wing"; req_access = list(63)},/turf/simulated/floor/tiled/steel_grid,/area/security/security_hallway)
-"bKU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera/network/security{c_tag = "SEC - Brig Hallway Starboard"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bKY" = (/obj/structure/lattice,/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/space,/area/space)
-"bKZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bLa" = (/obj/structure/sign/warning/high_voltage{pixel_y = -32},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bLb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bLg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bLs" = (/turf/simulated/wall,/area/quartermaster/office)
-"bLu" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bLC" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bLH" = (/obj/machinery/smartfridge/drinks,/obj/machinery/light{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bLI" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full,/obj/structure/sign/double/barsign{pixel_y = 32},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bLJ" = (/obj/machinery/button/remote/blast_door{id = "bar"; name = "Bar Shutters"; pixel_x = -26; pixel_y = -6},/obj/machinery/button/holosign{id = "baropen"; name = "Open Sign"; pixel_x = -24; pixel_y = 6},/obj/machinery/light_switch{name = "light switch "; pixel_x = -32; pixel_y = 6},/obj/machinery/camera/network/civilian{c_tag = "CIV - Bar Fore"; dir = 4},/obj/structure/sink/kitchen{pixel_y = 17},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bLK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bLN" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLP" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLW" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLX" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLY" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bLZ" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/storage/toolbox/emergency,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bMb" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bMc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bMf" = (/obj/structure/closet/wardrobe/medic_white,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bMh" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/machinery/newscaster{pixel_x = 30},/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bMj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bMl" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/crew_quarters/kitchen)
-"bMn" = (/obj/machinery/media/jukebox,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bMo" = (/obj/machinery/newscaster{pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bMp" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bMq" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/security_hallway)
-"bMr" = (/obj/random/tool,/turf/space,/area/space)
-"bMs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMt" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMu" = (/obj/machinery/atmospherics/omni/mixer{active_power_usage = 7500; tag_east = 2; tag_east_con = null; tag_north = 1; tag_north_con = 0.21; tag_south_con = null; tag_west = 1; tag_west_con = 0.79},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMw" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Foyer"; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bMx" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMy" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMA" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMB" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMC" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Air Tank Bypass Pump"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bMS" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bMU" = (/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bMW" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"bNb" = (/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bNg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bNi" = (/mob/living/carbon/human/monkey/punpun,/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bNj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"bNn" = (/obj/structure/table/marble,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bNp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bNr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"bNu" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bNv" = (/obj/structure/door_assembly,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/bar)
-"bNB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNC" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/airlock{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bND" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNE" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "aft_starboard_airlock"; name = "interior access button"; pixel_x = 25; pixel_y = -26; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNF" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNH" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNJ" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/structure/loot_pile/surface/medicine_cabinet/fresh{pixel_y = 25},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bNL" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNM" = (/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNO" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNQ" = (/obj/structure/table/glass,/obj/item/device/radio{anchored = 1; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Surgery Emergency Phone"},/obj/random/medical,/obj/random/medical,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNU" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 5},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNV" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/ward)
-"bNW" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNY" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bNZ" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bOa" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bOb" = (/turf/simulated/wall,/area/medical/morgue)
-"bOc" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bOd" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bOe" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bOg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = 11},/obj/machinery/button/windowtint{id = "gamble_window_tint"; pixel_x = -24; pixel_y = -10; range = 9},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bOi" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"bOj" = (/obj/effect/floor_decal/steeldecal/monofloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artgallery)
-"bOk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"bOl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bOm" = (/obj/structure/disposalpipe/junction,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bOn" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/holodeck_control)
-"bOp" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bOq" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bOr" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/plating,/area/security/riot_control)
-"bOs" = (/turf/simulated/floor/plating,/area/security/riot_control)
-"bOt" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/item/weapon/tool/wrench,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/plating,/area/security/riot_control)
-"bOw" = (/obj/structure/table/reinforced,/obj/machinery/microscope,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bOx" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop,/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bOy" = (/obj/machinery/computer/security/wooden_tv,/obj/structure/window/reinforced{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bOz" = (/obj/structure/table/wooden_reinforced,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/machinery/button/windowtint{id = "detoffice"; pixel_x = -12; pixel_y = 24},/obj/item/weapon/handcuffs,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/item/device/tape/random,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bOA" = (/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp/green,/obj/machinery/camera/network/security{c_tag = "SEC - Detective Office"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bOB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bOC" = (/turf/simulated/floor/lino,/area/security/detectives_office)
-"bOD" = (/obj/structure/closet/wardrobe/detective,/obj/item/device/radio/intercom/department/security{dir = 4; icon_override = "secintercom"; pixel_x = 21},/obj/structure/noticeboard{pixel_y = 30},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bOE" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/lobby)
-"bOF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/lobby)
-"bOG" = (/obj/machinery/computer/security{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/lobby)
-"bOH" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby)
-"bOK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/security/lobby)
-"bOL" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/lobby)
-"bOQ" = (/turf/unsimulated/mask,/area/quartermaster/office)
-"bPb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bPd" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bPg" = (/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bPj" = (/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bPl" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/computer/secure_data{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/lobby)
-"bPp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bPs" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "aft_starboard_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bPt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/wall/r_wall,/area/maintenance/medbay)
-"bPu" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bPx" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bPy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance Access"; req_access = list(5)},/turf/simulated/floor/plating,/area/medical/ward)
-"bPz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bPA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bPC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bPG" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bPI" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/holodeck_control)
-"bPK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bPM" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"bPN" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/holodeck_control)
-"bPP" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/maintenance/medbay)
-"bPU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/security/lobby)
-"bPV" = (/obj/item/device/radio/intercom/department/security{dir = 4; icon_override = "secintercom"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby)
-"bPZ" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/hos)
-"bQa" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/hos)
-"bQb" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "hosoffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hos)
-"bQd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{id_tag = null; name = "Head of Security Quarters"; req_access = list(58)},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/hos)
-"bQe" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bQf" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "hosoffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hos)
-"bQl" = (/turf/simulated/wall/r_wall,/area/lawoffice)
-"bQn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/security_hallway)
-"bQo" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northright{name = "Security Delivery"; req_access = list(1)},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"bQq" = (/obj/item/stack/material/glass/reinforced,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bQr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Security Substation"; req_access = list(1); req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bQt" = (/obj/effect/floor_decal/corner/black/full{dir = 8},/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos)
-"bQu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"bQz" = (/turf/simulated/wall/r_wall,/area/quartermaster/office)
-"bQH" = (/obj/structure/table/marble,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.1; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"bQK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bQM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bQN" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/pink/border{dir = 9},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bQO" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"bQP" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/medbay)
-"bQY" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bQZ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bRa" = (/obj/machinery/door/firedoor/glass,/obj/machinery/vending/wallmed1{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bRb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bRf" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos)
-"bRg" = (/obj/effect/floor_decal/corner/black/full{dir = 1},/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "co2_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos)
-"bRh" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos)
-"bRi" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{dir = 4; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor"="Tank")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/black/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/black/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/binary/pump{name = "N2 to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRk" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 1; tag_north = 4; tag_south = 2; tag_west = 5},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRl" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 1; tag_north = 3; tag_west = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRm" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/binary/pump{name = "O2 to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRn" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRp" = (/obj/machinery/atmospherics/tvalve/mirrored/bypass{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRq" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bRs" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/atmos{name = "Riot Control Maintenance"; req_access = newlist(); req_one_access = list(2,12,24)},/turf/simulated/floor/plating,/area/security/riot_control)
-"bRt" = (/obj/structure/table/steel,/obj/item/device/t_scanner,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bRu" = (/obj/structure/closet/firecloset/full,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bRv" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bRw" = (/obj/machinery/disposal,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bRz" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"bRA" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"bRB" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue{pixel_y = -3},/obj/item/weapon/folder/yellow{pixel_y = -5},/obj/item/weapon/storage/box/swabs{layer = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bRE" = (/obj/structure/closet/secure_closet/detective,/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/flash,/turf/simulated/floor/lino,/area/security/detectives_office)
-"bRG" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/dark,/area/quartermaster/foyer)
-"bRJ" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Detective"},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bRK" = (/obj/structure/table/wooden_reinforced,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bRL" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bRN" = (/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bRO" = (/obj/structure/table/rack,/obj/item/weapon/storage/briefcase{pixel_x = 3},/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bRQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "detoffice"},/turf/simulated/floor/plating,/area/security/detectives_office)
-"bRU" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bRX" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bSc" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bSd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"bSf" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "aft_starboard_pump"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/airlock_sensor{id_tag = "aft_starboard_sensor"; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bSh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/medbay)
-"bSm" = (/turf/simulated/wall/r_wall,/area/medical/ward)
-"bSo" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "st1_tint"},/turf/simulated/floor/plating,/area/medical/surgery)
-"bSp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Operating Theatre 1"; req_access = list(45)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/medical/surgery)
-"bSq" = (/turf/simulated/wall,/area/medical/surgery)
-"bSt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bSu" = (/turf/simulated/wall,/area/medical/ward)
-"bSx" = (/turf/simulated/wall,/area/medical/surgery2)
-"bSB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/lobby)
-"bSC" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/lobby)
-"bSD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southleft{name = "Secure Door"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby)
-"bSF" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby)
-"bSH" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southright{name = "Secure Door"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby)
-"bSI" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/lobby)
-"bSJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/lobby)
-"bSK" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby)
-"bSL" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "hosoffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hos)
-"bSM" = (/obj/machinery/disposal,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 28},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"bSN" = (/obj/machinery/camera/network/security{c_tag = "SEC - HoS' Office"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bSO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bSR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/animal/passive/snake/python/noodle,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bSS" = (/obj/machinery/photocopier,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/machinery/keycard_auth{pixel_y = 36},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"bSV" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bSZ" = (/obj/structure/bed/chair/office/dark,/obj/machinery/button/windowtint{id = "lawyer_tint"; pixel_x = 30; pixel_y = -26; req_access = list(58)},/obj/machinery/newscaster{pixel_y = 30},/obj/effect/landmark/start{name = "Internal Affairs Agent"},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bTc" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bTd" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bTe" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bTf" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{anchored = 0; department = "Internal Affairs"},/obj/machinery/ai_status_display{pixel_x = 32},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bTh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bTk" = (/obj/machinery/vending/dinnerware{dir = 4; pixel_x = -4},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"bTl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bTo" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Aft Hallway 2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bTq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control)
-"bTu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bTv" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"bTw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/chapel)
-"bTx" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "aft_starboard_outer"; locked = 1; name = "External Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bTy" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "aft_starboard_pump"},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bTz" = (/turf/simulated/wall/r_wall,/area/maintenance/medbay)
-"bTA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access = list(1)},/turf/simulated/floor/plating,/area/security/security_hallway)
-"bTC" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/navbeacon/delivery/north{location = "Security"},/turf/simulated/floor/plating,/area/security/security_hallway)
-"bTD" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Security Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bTG" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/pink/border{dir = 9},/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bTH" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/pink/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bTI" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bTJ" = (/obj/structure/sink{pixel_y = 16},/obj/machinery/button/remote/blast_door{id = "surgeryobs"; name = "Privacy Shutters"; pixel_x = 26},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bTM" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/holosign/surgery,/obj/machinery/door/airlock/medical{id_tag = "surgery_observation"; name = "Observation Room"; req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/medical/surgeryobs)
-"bTO" = (/turf/simulated/wall,/area/medical/surgeryobs)
-"bTQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"bTR" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/machinery/button/windowtint{id = "st2_tint"; pixel_x = -11; pixel_y = 22},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/button/holosign{pixel_x = -11; pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"bTS" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/pink/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"bTT" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Security"},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bTV" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bTY" = (/obj/effect/floor_decal/corner/black/full,/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Carbon Dioxide"; dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos)
-"bUd" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fscenter)
-"bUe" = (/obj/effect/floor_decal/corner/black/full{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos)
-"bUf" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/meter,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/atmos)
-"bUg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/valve/digital{dir = 4; name = "CO2 Outlet Valve"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/black/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/black/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Port"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUj" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "CO2 to Mixing"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUl" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUm" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUn" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUq" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUr" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUs" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bUt" = (/obj/structure/sign/warning/compressed_gas,/turf/simulated/wall/r_wall,/area/engineering/atmos)
-"bUu" = (/turf/simulated/wall,/area/maintenance/security_port)
-"bUx" = (/obj/structure/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bUz" = (/obj/machinery/appliance/mixer/candy,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"bUB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bUM" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/medbay)
-"bUN" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bUP" = (/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bUQ" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bUS" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bUT" = (/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bUU" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/machinery/iv_drip,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bUX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"bUY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"bVa" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/pink/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bVb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bVc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"bVd" = (/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"bVe" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bVg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"bVh" = (/obj/structure/table/rack,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bVj" = (/obj/structure/table/woodentable,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/device/camera_film,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bVk" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bVl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bVm" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/blast/shutters{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"bVr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bVs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bVu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bVv" = (/obj/machinery/door/airlock/security{id_tag = "detdoor"; name = "Detective"; req_access = list(4)},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/security/detectives_office)
-"bVw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bVx" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bVy" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby)
-"bVz" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bVA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/guestpass{pixel_y = -30},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"bVB" = (/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bVC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bVH" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby)
-"bVI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced/polarized{id = "hosoffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hos)
-"bVJ" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"bVN" = (/obj/structure/table/marble,/obj/machinery/cash_register/civilian{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria)
-"bVO" = (/obj/structure/bed/chair/wood,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bVP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"bVT" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bVV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bWd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bWf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bWg" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bWi" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bWj" = (/obj/machinery/papershredder,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"bWl" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall,/area/medical/surgery)
-"bWm" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bWn" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bWp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"bWq" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"bWr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "surgeryobs2"; name = "Operating Theatre Privacy Shutters"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/surgeryobs)
-"bWt" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"bWu" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/camera/network/civilian{c_tag = "CIV - Recreational Lounge"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bWz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bWA" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bWB" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bWC" = (/obj/structure/table/reinforced,/obj/item/weapon/folder{pixel_x = -4},/obj/item/weapon/folder/red{pixel_y = 3},/obj/item/weapon/folder/blue{pixel_x = 5},/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/internalaffairs,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bWD" = (/obj/structure/table/reinforced,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/material/ashtray/plastic{pixel_x = 4; pixel_y = 6},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bWE" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bWF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bWG" = (/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bWJ" = (/obj/machinery/atmospherics/valve,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bWL" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen"; dir = 4},/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"bWN" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/device/starcaster_news{pixel_x = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria)
-"bWQ" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bWR" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Cafeteria Starboard"; dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bWU" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"bWW" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bWY" = (/obj/structure/sign/directions/chapel{dir = 5},/turf/simulated/wall,/area/library)
-"bWZ" = (/obj/structure/casino_table/roulette_table,/obj/effect/floor_decal/carpet{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"bXa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bXb" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/window/reinforced/tinted/frosted,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"bXg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"bXh" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/sink/countertop{pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"bXj" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"bXk" = (/turf/simulated/wall,/area/lawoffice)
-"bXq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bXr" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bXs" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"bXv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"bXA" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/dockhallway)
-"bXC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Holodeck Control"},/turf/simulated/floor/tiled/steel_grid,/area/holodeck_control)
-"bXE" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/holodeck_control)
-"bXF" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/machinery/button/windowtint{id = "st1_tint"; pixel_x = -11; pixel_y = 22},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/button/holosign{pixel_x = -11; pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bXH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/meter,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"bXI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"bXJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Security Substation"; req_one_access = list(1,11,24)},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bXK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/network/engineering{c_tag = "SUBS - Security"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bXL" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bXM" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/substation/security)
-"bXN" = (/turf/simulated/wall,/area/space)
-"bXP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "CO2 to Connector"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bXT" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bXU" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bXX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/cap/visible{color = "#ffcc00"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bXZ" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bYa" = (/obj/machinery/atmospherics/unary/heater{icon_state = "heater"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"bYc" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack{dir = 1},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bYd" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bYe" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bYf" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/random/powercell,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/bar)
-"bYh" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/library)
-"bYi" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bYk" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"bYm" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light{dir = 4; layer = 3},/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"bYq" = (/obj/item/weapon/material/ashtray/glass,/obj/structure/disposalpipe/segment,/obj/structure/closet/acloset{name = "leisure closet"},/obj/item/weapon/deck/tarot,/obj/item/weapon/deck/tarot,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/holder,/obj/item/weapon/deck/holder,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/dicecup/loaded,/obj/item/toy/eight_ball,/obj/item/toy/tennis,/obj/item/toy/tennis,/obj/item/toy/eight_ball/conch,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/cah,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"bYD" = (/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"bYF" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/standard,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/FixOVein,/obj/item/weapon/surgical/surgicaldrill,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"bYH" = (/turf/simulated/wall/r_wall,/area/medical/surgeryobs)
-"bYI" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/cups,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"bYL" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Firefighting Equipment"; req_access = list(12)},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"bYM" = (/obj/machinery/camera/network/security{c_tag = "SEC - Forensic Office"; dir = 4},/obj/structure/closet{name = "Evidence Closet"},/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/bodybags,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bYN" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"bYQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"bYR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"bYS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/window/westright{name = "Forensics Area"; req_one_access = list(4)},/turf/simulated/floor/lino,/area/security/detectives_office)
-"bYT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bYU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bYV" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bYW" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"bYZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced/polarized{id = "detoffice"},/turf/simulated/floor/plating,/area/security/detectives_office)
-"bZb" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/lobby)
-"bZd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bZi" = (/turf/simulated/wall/r_wall,/area/maintenance/cargo)
-"bZk" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/bar)
-"bZl" = (/turf/simulated/floor/tiled,/area/security/lobby)
-"bZx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby)
-"bZz" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"bZA" = (/obj/structure/bed/chair/oldsofa{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"bZD" = (/obj/machinery/atm{pixel_y = -30},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"bZF" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Holodeck Starboard"; dir = 8},/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck)
-"bZI" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/lobby)
-"bZK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/lobby)
-"bZL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"bZN" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced/polarized{id = "hosoffice"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hos)
-"bZR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"bZU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/flashlight/lamp/green{pixel_x = 10; pixel_y = 12},/obj/structure/table/reinforced,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bZV" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/reinforced,/obj/item/weapon/folder/red_hos,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/multi,/obj/item/weapon/stamp/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bZW" = (/obj/machinery/computer/skills{pixel_y = 4},/obj/structure/table/reinforced,/obj/item/device/gps/security/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"bZY" = (/obj/machinery/light{dir = 4},/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/machinery/photocopier/faxmachine{department = "Head of Security"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"caa" = (/obj/machinery/photocopier,/obj/machinery/camera/network/civilian{c_tag = "CIV - Internal Affairs"; dir = 5},/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cad" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"caf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cag" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cai" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"caj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/warning/high_voltage{pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cak" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Central"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cal" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cam" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"car" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cas" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cau" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/kitchen)
-"caw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cax" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"caz" = (/obj/structure/flora/pottedplant/bamboo{pixel_y = 10},/obj/structure/table/bench/glass,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"caC" = (/obj/machinery/vending/snack{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"caE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/computer/timeclock/premade/west,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"caF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"caG" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"caI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair/oldsofa{dir = 5},/obj/effect/landmark/start{name = "Intern"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"caJ" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"caK" = (/obj/structure/table/bench/wooden,/obj/item/weapon/deck/holder,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"caL" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Intern"},/obj/effect/floor_decal/carpet{dir = 4},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 5},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"caN" = (/obj/structure/disposalpipe/segment,/obj/structure/table/gamblingtable,/obj/item/weapon/deck/tarot,/obj/item/weapon/deck/tarot,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"caS" = (/obj/structure/closet,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/security_port)
-"caU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"caW" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"caX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"caZ" = (/obj/item/device/radio/intercom/department/medbay{pixel_y = -24},/obj/structure/table/standard,/obj/item/weapon/surgical/hemostat,/obj/item/weapon/surgical/cautery,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cba" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/security_port)
-"cbc" = (/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"cbd" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/papershredder,/turf/simulated/floor/lino,/area/security/detectives_office)
-"cbe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/security/detectives_office)
-"cbf" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/material/ashtray/bronze,/turf/simulated/floor/carpet,/area/security/detectives_office)
-"cbg" = (/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp/green,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/lino,/area/security/detectives_office)
-"cbj" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cbl" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby)
-"cbn" = (/obj/machinery/atm{pixel_y = -30},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbo" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbp" = (/obj/machinery/camera/network/security{c_tag = "SEC - Lobby"; dir = 1},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbq" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbr" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/flora/pottedplant/fern,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/security/lobby)
-"cbs" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbt" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/computer/guestpass{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/security/lobby)
-"cbu" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"cbw" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1; start_pressure = 4559.63},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/bar)
-"cbx" = (/turf/simulated/wall,/area/maintenance/bar)
-"cbA" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Kitchen"; sortType = "Kitchen"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"cbB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cbE" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/kitchen)
-"cbF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/blast/shutters{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"cbG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cbH" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{name = "light switch "; pixel_x = 38},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cbJ" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fpcenter)
-"cbN" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cbO" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cbP" = (/obj/structure/sign/directions/cryo,/obj/structure/sign/directions/recreation{dir = 5; pixel_y = 9},/obj/structure/sign/directions/library{pixel_y = -9},/turf/simulated/wall,/area/crew_quarters/coffee_shop)
-"cbQ" = (/turf/simulated/wall,/area/crew_quarters/coffee_shop)
-"cbT" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cbV" = (/obj/structure/disposalpipe/segment,/obj/structure/toilet,/obj/effect/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cbZ" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"ccb" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/button/remote/airlock{id = "HoSdoor"; name = "Office Door"; pixel_x = -36; pixel_y = 29},/obj/machinery/button/windowtint{id = "hosoffice"; pixel_x = -26; pixel_y = 30; req_access = list(58)},/obj/machinery/button/remote/blast_door{id = "security_lockdown"; name = "Brig Lockdown"; pixel_x = -36; pixel_y = 39; req_access = list(2)},/obj/effect/landmark/start{name = "Head of Security"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"ccd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hos)
-"ccf" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 30},/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/item/weapon/storage/box/snakesnackbox,/obj/item/device/megaphone,/obj/item/device/radio/off,/obj/item/device/tape/random,/obj/item/device/taperecorder,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/machinery/recharger,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"ccg" = (/obj/structure/closet/lawcloset,/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cch" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cci" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"ccj" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"ccl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"ccn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"cco" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"ccq" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ccr" = (/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/bed/chair/comfy/brown,/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"ccs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cct" = (/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"ccu" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"ccv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"ccw" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"ccx" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"ccy" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"ccz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"ccA" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"ccB" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/random/maintenance/security,/obj/random/cash,/turf/simulated/floor,/area/maintenance/security_starboard)
-"ccC" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ccD" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/maintenance/security_port)
-"ccH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office)
-"ccI" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/lino,/area/security/detectives_office)
-"ccK" = (/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"ccM" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/atm{pixel_x = 30},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"ccN" = (/turf/simulated/wall,/area/crew_quarters/cafeteria)
-"ccP" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ccQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ccS" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft)
-"ccU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria)
-"ccV" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"ccW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"ccX" = (/obj/machinery/door/airlock{name = "Unit 2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cda" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/patient_a)
-"cde" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/bed/chair,/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"cdk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/chapel)
-"cdl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"cdm" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Detective"},/turf/simulated/floor/carpet,/area/security/detectives_office)
-"cdo" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/handcuffs,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/item/device/tape/random,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/lino,/area/security/detectives_office)
-"cdp" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/door/airlock/glass_security{name = "Security Lobby"; req_one_access = null},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/security/lobby)
-"cdq" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/lobby)
-"cdr" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cds" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/door/airlock/glass_security{name = "Security Lobby"; req_one_access = null},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/security/lobby)
-"cdt" = (/obj/machinery/status_display{pixel_y = -32},/turf/simulated/wall,/area/security/lobby)
-"cdu" = (/obj/structure/filingcabinet,/obj/item/device/radio/intercom/department/security{dir = 8; icon_override = "secintercom"; pixel_x = -21},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = -32},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorblack{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"cdv" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/obj/item/modular_computer/console/preset/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"cdw" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/obj/machinery/computer/secure_data{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"cdx" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/newscaster/security_unit{pixel_y = -30},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"cdy" = (/obj/machinery/status_display{pixel_x = 32; pixel_y = -32},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/obj/structure/closet/secure_closet/hos2,/obj/item/weapon/cell/device,/obj/item/device/holowarrant,/obj/item/weapon/rig/ch/pursuit/equipped,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hos)
-"cdz" = (/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/item/device/camera{pixel_x = 3; pixel_y = -4},/obj/item/device/flash,/obj/item/device/flash,/obj/item/weapon/storage/secure/briefcase,/obj/structure/closet,/obj/item/weapon/storage/secure/briefcase,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/item/device/camera{pixel_x = 3; pixel_y = -4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cdA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cdB" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cdC" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/button/windowtint{id = "lawyer_tint"; pixel_x = -26; pixel_y = 30; req_access = list(58)},/obj/machinery/newscaster{pixel_x = 30},/obj/effect/landmark/start{name = "Internal Affairs Agent"},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cdD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/valve/shutoff{name = "Security automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cdE" = (/obj/machinery/atmospherics/valve/digital/open,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cdF" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cdG" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cdH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/obj/machinery/meter,/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/random/maintenance/research,/obj/random/maintenance/cargo,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cdI" = (/obj/effect/floor_decal/corner/white/diagonal{dir = 4},/obj/effect/floor_decal/corner/red{dir = 1},/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Nitrous Oxide"; dir = 4},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos)
-"cdJ" = (/turf/simulated/floor/reinforced/n20,/area/engineering/atmos)
-"cdK" = (/obj/effect/floor_decal/corner/white{dir = 4},/obj/effect/floor_decal/corner/red/diagonal,/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "n2o_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos)
-"cdL" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cdM" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cdN" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cdO" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cdQ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/firecloset,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cdR" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/security_port)
-"cdT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cdU" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Botanist"},/obj/structure/sink/kitchen{pixel_y = 17},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cdX" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"cdY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"cdZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria)
-"cea" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ceb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cec" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cee" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cef" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ceh" = (/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"cei" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cej" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cel" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cem" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cex" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/luminol,/obj/item/device/uv_light,/obj/item/clothing/gloves/sterile/latex,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -30},/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"ceA" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/obj/item/weapon/forensics/sample_kit,/turf/simulated/floor/tiled/freezer,/area/security/detectives_office)
-"ceC" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -26},/turf/simulated/floor/lino,/area/security/detectives_office)
-"ceD" = (/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/flash,/turf/simulated/floor/lino,/area/security/detectives_office)
-"ceE" = (/obj/machinery/computer/security/wooden_tv,/turf/simulated/floor/lino,/area/security/detectives_office)
-"ceF" = (/obj/item/weapon/bedsheet/ian,/obj/item/clothing/suit/ianshirt,/turf/simulated/floor/plating,/area/security/lobby)
-"ceG" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/fore)
-"ceH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/maintenance/bar)
-"ceI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/bar)
-"ceK" = (/obj/machinery/appliance/mixer/cereal,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"ceM" = (/obj/structure/bed/chair/wood,/obj/effect/landmark/start{name = "Intern"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"ceN" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"ceP" = (/obj/structure/bed/chair/wood,/obj/effect/landmark/start{name = "Intern"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"ceQ" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Recreational Lounge"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop)
-"ceS" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"ceT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/bar)
-"cfb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cfd" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -19},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cfe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/cafeteria)
-"cff" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"cfg" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cfh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"cfi" = (/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Central Access"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"cfj" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cfk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/navbeacon/patrol{location = "CIV"; next_patrol = "CH7"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"cfm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cfn" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cfo" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cfp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cfq" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/barrestroom)
-"cfr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cfs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cft" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cfF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"cfH" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/structure/sign/warning/secure_area{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"cfI" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"cfJ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "security_lockdown"; name = "Security Blast Door"; opacity = 0},/obj/structure/sign/warning/secure_area{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"cfN" = (/obj/structure/sign/deck/second,/turf/simulated/wall,/area/security/lobby)
-"cfO" = (/obj/machinery/optable,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cfP" = (/obj/machinery/computer/operating{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cfQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id = "surgeryobs"; name = "Operating Theatre Privacy Shutters"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/surgeryobs)
-"cfR" = (/turf/simulated/wall,/area/crew_quarters/heads/sc/hos)
-"cfS" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/obj/item/weapon/storage/briefcase{pixel_x = 3},/obj/machinery/status_display{pixel_x = -32},/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cfT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cfU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloorblack/corner,/obj/effect/floor_decal/corner/blue/bordercorner,/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cfV" = (/obj/machinery/papershredder,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cfW" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cfX" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/lawoffice)
-"cfY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cfZ" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/firstaid,/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cga" = (/obj/structure/closet,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/clothing/suit/storage/hazardvest/green,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor,/area/maintenance/security_starboard)
-"cgb" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"cgc" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/white{dir = 8},/obj/effect/floor_decal/corner/red/diagonal,/turf/simulated/floor/reinforced/n20,/area/engineering/atmos)
-"cgd" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cge" = (/obj/effect/floor_decal/corner/white/diagonal{dir = 4},/obj/effect/floor_decal/corner/red,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos)
-"cgf" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cgg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"cgk" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lime/bordercorner,/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Starboard"; dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cgn" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"cgo" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"cgq" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cgs" = (/obj/structure/stairs/spawner/east,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/aft)
-"cgy" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cgC" = (/obj/structure/table/standard,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/structure/cable/green,/obj/random/soap,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cgD" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/structure/disposalpipe/segment,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cgI" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cgK" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cgL" = (/obj/structure/sign/warning/high_voltage{pixel_x = -32},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"cgM" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cgO" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cgP" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/secondary/eva_hallway)
-"cgQ" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cgR" = (/obj/structure/railing,/turf/simulated/open,/area/hallway/secondary/eva_hallway)
-"cgS" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cgT" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cgU" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/eva_hallway)
-"cgV" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/eva_hallway)
-"cgW" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/eva_hallway)
-"cgX" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "lawyer_tint"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/lawoffice)
-"cgY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Internal Affairs"; req_access = list(38)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/lawoffice)
-"cgZ" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "lawyer_tint"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/lawoffice)
-"cha" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"chb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall,/area/maintenance/security_starboard)
-"chc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall,/area/hallway/secondary/eva_hallway)
-"chd" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/wall,/area/hallway/secondary/eva_hallway)
-"che" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/wall,/area/hallway/secondary/eva_hallway)
-"chf" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/eva_hallway)
-"chg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"chh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/mob/mouse,/turf/simulated/floor,/area/maintenance/engineering)
-"chi" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/airless,/area/maintenance/security_port)
-"chj" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "eva_port_outer"; locked = 1; name = "External Airlock Access"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/maintenance/security_port)
-"chk" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "eva_port_pump"},/obj/machinery/airlock_sensor{id_tag = "eva_port_sensor"; pixel_y = 25},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"chl" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "eva_port_pump"},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"chm" = (/obj/machinery/suit_cycler/medical,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chp" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"chq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"chs" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Gallery"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 8},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery)
-"cht" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery)
-"chy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft)
-"chz" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"chE" = (/obj/structure/noticeboard/airlock,/turf/simulated/wall,/area/crew_quarters/barrestroom)
-"chG" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/crew_quarters/barrestroom)
-"chI" = (/obj/machinery/suit_cycler/security,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/command{c_tag = "EVA - Port"},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chJ" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/gps,/obj/item/device/gps,/obj/item/device/gps,/obj/item/device/gps,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chK" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chL" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chM" = (/obj/structure/table/reinforced,/obj/item/stack/material/plasteel{amount = 10},/obj/machinery/camera/network/command{c_tag = "EVA - Starboard"},/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chN" = (/obj/structure/table/reinforced,/obj/fiftyspawner/rglass,/obj/fiftyspawner/rods,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chO" = (/obj/structure/table/reinforced,/obj/machinery/requests_console{department = "EVA"; pixel_y = 26},/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"chQ" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/ai_monitored/storage/eva)
-"chR" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"chS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"chT" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/item/device/radio/beacon,/obj/machinery/navbeacon/patrol{location = "SEC"; next_patrol = "CH1"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore)
-"chU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"chW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"chX" = (/obj/structure/table/woodentable,/obj/item/device/radio/subspace{desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!"; name = "Bar subspace radio"; pixel_y = 5},/obj/item/weapon/deck/cards{pixel_x = -5; pixel_y = -2},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"chY" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"chZ" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/table/bench/wooden,/obj/item/device/starcaster_news,/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"cif" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/eva_hallway)
-"cig" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cih" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cij" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cil" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cim" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cin" = (/obj/machinery/button/windowtint{id = "Gallery"; pixel_x = 10; pixel_y = 24; range = 12},/obj/machinery/light_switch{pixel_x = -11; pixel_y = 26},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cip" = (/obj/structure/easel,/obj/item/canvas/twentyfour_twentyfour,/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"cir" = (/obj/structure/easel,/obj/item/canvas/twentythree_twentythree,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"cis" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"ciu" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"civ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cix" = (/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"ciy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"ciB" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Fore"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/chapel/main)
-"ciC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/wall,/area/maintenance/substation/civilian)
-"ciD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Civilian Substation"; req_one_access = list(11,24)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"ciF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/eva_hallway)
-"ciM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Starboard Hallway 2"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"ciU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cjg" = (/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"cjh" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"cji" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cjp" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/chapel/main)
-"cjq" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eva_starboard_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cjr" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "eva_starboard_pump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cjs" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "eva_starboard_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "eva_starboard_airlock"; pixel_y = 26; req_access = null; tag_airpump = "eva_starboard_pump"; tag_chamber_sensor = "eva_starboard_sensor"; tag_exterior_door = "eva_starboard_outer"; tag_interior_door = "eva_starboard_inner"},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cjt" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "eva_starboard_outer"; locked = 1; name = "External Airlock Access"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/eva_hallway)
-"cju" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eva_starboard_airlock"; name = "exterior access button"; pixel_x = -26; pixel_y = 25; req_access = null},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/hallway/secondary/eva_hallway)
-"cjv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/space)
-"cjw" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cjx" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/obj/machinery/meter,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cjy" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cjz" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cjA" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/obj/machinery/meter,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cjB" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cjC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"cjD" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/substation/atmospherics)
-"cjH" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/biogenerator,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cjL" = (/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cjN" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cjO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cjP" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"cjQ" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"cjR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cjV" = (/obj/structure/cable,/obj/machinery/power/terminal{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/camera/network/engineering{c_tag = "SUBS - Civilian"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"ckd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"ckf" = (/obj/structure/sign/painting/public,/turf/simulated/wall/wood,/area/crew_quarters/seconddeck/artgallery)
-"ckg" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"ckj" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/aft)
-"ckk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ckn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"cko" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/chapel/main)
-"ckp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"ckq" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/bar)
-"ckr" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lime/border{dir = 6},/obj/machinery/honey_extractor,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cks" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hydroponics)
-"ckt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"ckv" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{layer = 3},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cky" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ckB" = (/turf/simulated/wall,/area/maintenance/substation/atmospherics)
-"ckC" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/turf/simulated/floor,/area/maintenance/engineering)
-"ckE" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ckJ" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/maintenance/bar)
-"ckO" = (/obj/structure/bed/chair/sofa/brown{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/artgallery)
-"ckP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/maintenance/engineering)
-"ckQ" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"ckR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/maintenance/engineering)
-"ckV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ckX" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eva_port_airlock"; name = "exterior access button"; pixel_y = -26; req_access = null},/turf/simulated/floor/airless,/area/maintenance/security_port)
-"clg" = (/turf/simulated/wall,/area/crew_quarters/bar)
-"clh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cli" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"clj" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria)
-"clm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cln" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"clr" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"clt" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"clv" = (/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"clx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/chapel/main)
-"cly" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/chapel/main)
-"clA" = (/obj/structure/table/rack{dir = 1},/obj/item/weapon/extinguisher,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"clJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"clL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"clO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eva_port_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/tiled/dark,/area/maintenance/security_port)
-"clQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"clT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"clW" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "chapel"},/turf/simulated/floor/plating,/area/chapel/main)
-"clY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Chapel"},/obj/structure/curtain/bed,/turf/simulated/floor/tiled/techmaint,/area/chapel/main)
-"clZ" = (/obj/structure/curtain/bed,/turf/simulated/floor/tiled/techmaint,/area/chapel/main)
-"cma" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cmc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cme" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/obj/item/clothing/suit/storage/apron/white{pixel_x = -6; pixel_y = 7},/obj/item/clothing/suit/storage/apron/white{pixel_x = 7; pixel_y = 7},/obj/item/clothing/suit/storage/apron/white{pixel_y = 6},/obj/item/clothing/glasses/regular/hipster{pixel_x = 4; pixel_y = -2},/obj/item/clothing/mask/smokable/pipe/cobpipe{pixel_x = -4; pixel_y = 3},/obj/item/clothing/head/beret{pixel_x = 5; pixel_y = 11},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cmg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"cmh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artsupplies)
-"cmj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = list(18); req_one_access = list(18)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/ai_monitored/storage/eva)
-"cmk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artsupplies)
-"cml" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cmm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cmn" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cmp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/civilian{c_tag = "CIV - Art Storage"; dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"cms" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cmt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cmu" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cmx" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/table/marble,/obj/item/device/daredevice,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cmA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cmB" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cmC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"cmD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -20},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cmE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/camera/network/civilian{c_tag = "CIV - Gallery Bow"; dir = 10},/obj/machinery/newscaster{pixel_y = -30},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cmF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"cmH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cmO" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_r"},/turf/simulated/floor/airless,/area/shuttle/cryo/station)
-"cmP" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cmQ" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"cmT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies)
-"cna" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gallery"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery)
-"cnb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cnc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"cnd" = (/obj/item/stack/rods,/obj/structure/lattice,/turf/space,/area/space)
-"cnf" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "tabletop_window_tint"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/library)
-"cnm" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"cnq" = (/obj/structure/table/woodentable,/obj/structure/noticeboard{pixel_y = 27},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/item/weapon/paper_bin{pixel_x = 7; pixel_y = 8},/obj/item/weapon/tape_roll,/obj/item/weapon/pen/fountain5,/obj/item/weapon/pen/fountain6{pixel_y = 7},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"cns" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"cnt" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"cny" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"cnC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"cnD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/docking_hallway2)
-"cnE" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cnF" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria)
-"cnI" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cnJ" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/landmark/start{name = "Intern"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cnL" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9},/obj/machinery/button/windowtint{id = "tabletop_window_tint"; pixel_x = 12; pixel_y = 25},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/library)
-"cnM" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/library)
-"cnN" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/library)
-"cnP" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Library"; sortType = "Library"},/turf/simulated/floor/tiled,/area/library)
-"cnR" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/bookbinder,/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/turf/simulated/floor/tiled,/area/library)
-"cod" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"coe" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/landmark/start{name = "Intern"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cog" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "gamble_window_tint"},/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop)
-"coh" = (/obj/structure/bed/chair/oldsofa/left{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop)
-"cok" = (/obj/machinery/status_display{pixel_y = -32},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"col" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "tabletop_window_tint"},/turf/simulated/floor/plating,/area/library)
-"com" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/turf/simulated/floor/carpet,/area/library)
-"con" = (/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 4},/obj/effect/floor_decal/carpet{dir = 5},/turf/simulated/floor/carpet,/area/library)
-"cos" = (/obj/effect/floor_decal/carpet,/obj/effect/floor_decal/carpet{dir = 4},/obj/effect/floor_decal/carpet{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library)
-"cot" = (/obj/item/weapon/dice,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/library)
-"cou" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"cow" = (/obj/structure/table/gamblingtable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/carpet{dir = 4},/obj/effect/floor_decal/carpet,/obj/effect/floor_decal/carpet{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"cox" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"coy" = (/obj/structure/table/marble,/obj/item/weapon/hand_labeler{pixel_x = -7; pixel_y = 8},/obj/effect/floor_decal/corner/brown/diagonal,/obj/item/weapon/reagent_containers/food/condiment/sugar{pixel_x = 6; pixel_y = 2},/obj/item/weapon/reagent_containers/food/condiment/sugar{pixel_x = 10; pixel_y = 2},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/item/weapon/reagent_containers/food/condiment/carton/flour{pixel_x = -5; pixel_y = -2},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"coJ" = (/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"coN" = (/obj/structure/table/marble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner/brown/diagonal,/obj/item/weapon/storage/box/donkpockets{pixel_x = 7; pixel_y = -3},/obj/item/weapon/storage/box/donkpockets{pixel_x = -7; pixel_y = -3},/obj/item/weapon/storage/box/donut{pixel_x = 3; pixel_y = 11},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"coR" = (/obj/structure/bed/chair/sofa/brown{layer = 2.9},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"coT" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/photocopier,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/library)
-"coU" = (/obj/structure/bed/chair/sofa/corner/brown{layer = 2.9},/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"coZ" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"cpd" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/dockhallway)
-"cpg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cpi" = (/obj/structure/bed/chair/sofa/left/brown{dir = 8; layer = 2.9},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"cpj" = (/obj/machinery/door/airlock/glass_command{name = "E.V.A."; req_one_access = list(18)},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/ai_monitored/storage/eva)
-"cpl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/plating,/area/maintenance/bar)
-"cpm" = (/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/bee_smoker,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/bee_pack,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cpw" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cpx" = (/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Janitor Closet"; sortType = "Janitor Closet"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cpy" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"cpB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cpL" = (/obj/structure/table/glass,/obj/item/device/starcaster_news{pixel_x = 8},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/aft)
-"cpM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cpN" = (/turf/simulated/wall/r_wall,/area/medical/surgery)
-"cpO" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/pink/border{dir = 10},/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/retractor,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cpP" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Operating Theatre 1"; dir = 1},/obj/machinery/vending/wallmed1{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/standard,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/surgical/bonegel,/obj/item/weapon/surgical/bioregen,/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cpQ" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/network/medbay{c_tag = "MED - Surgery Observation"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"cpT" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/machinery/chemical_analyzer,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"cpW" = (/obj/structure/table/steel,/obj/effect/floor_decal/industrial/warning/corner,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"cqf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Central Access"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/eva_hallway)
-"cqg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cql" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Starboard Hallway 1"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/eva_hallway)
-"cqq" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqu" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqw" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eva_starboard_airlock"; name = "interior access button"; pixel_x = 26; pixel_y = -25; req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqx" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "eva_starboard_pump"},/obj/machinery/airlock_sensor{id_tag = "eva_starboard_sensor"; pixel_y = -26},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"cqy" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/hallway/secondary/eva_hallway)
-"cqz" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light/small,/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/research)
-"cqA" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/research)
-"cqM" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "fore_starboard_airlock"; name = "exterior access button"; pixel_x = 26; pixel_y = -25; req_one_access = null},/obj/effect/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/research)
-"cqN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/research)
-"cqO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/airless,/area/maintenance/research)
-"cqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"cqR" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"cqS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"cqT" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/maintenance/security_port)
-"cqU" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cqV" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cqW" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cqX" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cqY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva)
-"cqZ" = (/obj/structure/cable,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/ai_monitored/storage/eva)
-"cra" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cri" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue)
-"crk" = (/turf/simulated/floor/tiled,/area/storage/primary)
-"crl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore)
-"crm" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"crn" = (/obj/structure/sign/greencross{desc = "White cross in a green field, you can get medical aid here."; name = "First-Aid"},/turf/simulated/wall/r_wall,/area/hallway/secondary/eva_hallway)
-"crp" = (/turf/simulated/wall,/area/crew_quarters/kitchen)
-"crq" = (/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"crs" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"crt" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"crB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"crC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"crD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/eva_hallway)
-"crE" = (/turf/simulated/wall,/area/janitor)
-"crH" = (/obj/structure/noticeboard{pixel_x = -32},/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/northleft{name = "Janitorial Desk"},/obj/machinery/door/window/southright{name = "Janitorial Desk"; req_access = list(26)},/obj/machinery/door/blast/shutters{id = "janitor_blast"; layer = 3.1; name = "Janitorial Shutters"},/turf/simulated/floor/tiled,/area/janitor)
-"crI" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access = list(26)},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/janitor)
-"crJ" = (/turf/simulated/wall,/area/storage/auxillary)
-"crK" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/storage/auxillary)
-"crU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Auxiliary Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/storage/auxillary)
-"crV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/eva_hallway)
-"crW" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/eva_hallway)
-"crX" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/wall,/area/hallway/secondary/eva_hallway)
-"crY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall,/area/hallway/secondary/eva_hallway)
-"crZ" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "fore_starboard_outer"; locked = 1; name = "External Airlock Access"; req_access = list(13)},/turf/simulated/floor/airless,/area/maintenance/research)
-"csa" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/research)
-"csb" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/research)
-"csc" = (/obj/effect/floor_decal/corner/orange/full{dir = 8},/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"},/obj/machinery/camera/network/engineering{c_tag = "ATMTK - Phoron"; dir = 4},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos)
-"cse" = (/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos)
-"csf" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "tox_in"; pixel_y = 1; use_power = 1},/obj/effect/floor_decal/corner/purple/diagonal,/obj/effect/floor_decal/corner/orange{dir = 4},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos)
-"csg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"csh" = (/obj/structure/table/steel,/obj/item/clothing/head/orangebandana,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/engineering)
-"csj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/ai_monitored/storage/eva)
-"csk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{name = "Security Hardsuits"; req_access = list(1)},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/eva)
-"csm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medical Hardsuits"},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/eva)
-"csn" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cso" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"csp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore)
-"csq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway 2"; dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"csw" = (/turf/simulated/wall,/area/medical/first_aid_station/seconddeck/fore)
-"csx" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/first_aid_station/seconddeck/fore)
-"csy" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_medical{name = "First-Aid Station"; req_access = newlist(); req_one_access = newlist()},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"csz" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Janitor"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled,/area/janitor)
-"csA" = (/obj/machinery/button/remote/blast_door{id = "janitor_blast"; name = "Privacy Shutters"; pixel_y = 26},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/janitor)
-"csB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/janitor)
-"csC" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/janitor)
-"csD" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_y = 28},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/newscaster{pixel_x = 30},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled,/area/janitor)
-"csE" = (/obj/structure/table/steel,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"csF" = (/turf/simulated/wall/r_wall,/area/maintenance/security_port)
-"csG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"csH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"csI" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"csJ" = (/obj/structure/table/steel,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"csK" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/maintenance/research)
-"csL" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research)
-"csM" = (/obj/structure/closet/firecloset/full,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/firstaid,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/research)
-"csN" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/research)
-"csY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"csZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"cta" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/storage/primary)
-"ctb" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"ctc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/research)
-"ctd" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "fore_starboard_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "fore_starboard_airlock"; pixel_x = -25; req_access = null; tag_airpump = "fore_starboard_pump"; tag_chamber_sensor = "fore_starboard_sensor"; tag_exterior_door = "fore_starboard_outer"; tag_interior_door = "fore_starboard_inner"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cte" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "fore_starboard_pump"},/obj/machinery/airlock_sensor{id_tag = "fore_starboard_sensor"; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/research)
-"ctf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/maintenance/research)
-"ctg" = (/obj/machinery/atmospherics/pipe/tank/air{start_pressure = 4559.63},/turf/simulated/floor/plating,/area/maintenance/research)
-"cth" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/double,/obj/random/tank,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/research)
-"cti" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/research)
-"ctj" = (/turf/simulated/floor/reinforced/airless,/area/space)
-"ctl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/bar)
-"ctm" = (/obj/machinery/vending/coffee{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"ctu" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/corner/purple/diagonal,/obj/effect/floor_decal/corner/orange{dir = 8},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos)
-"ctv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"ctx" = (/obj/effect/floor_decal/corner/orange/full{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; frequency = 1441; icon_state = "map_vent_in"; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/phoron,/area/engineering/atmos)
-"ctG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/cap/visible{color = "#00ff00"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ctJ" = (/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ctK" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ctL" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ctM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"ctN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"ctP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/monitoring)
-"ctQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/meter,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"ctR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"ctS" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/rig/eva/equipped,/obj/machinery/door/window/westright{name = "Engineering Hardsuits"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"ctT" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security,/obj/machinery/door/window/westright{name = "Security Hardsuits"; req_one_access = list(1)},/obj/item/clothing/head/helmet/space/void/security,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"ctU" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/westright{name = "Medical Hardsuits"; req_one_access = list(5)},/obj/item/clothing/head/helmet/space/void/medical,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"ctV" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"ctW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"ctX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore)
-"ctY" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"ctZ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = -25},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cua" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cub" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cuc" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/janitor)
-"cud" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/janitor)
-"cue" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor)
-"cuf" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/janitor)
-"cug" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/camera/network/civilian{c_tag = "CIV - Custodial Closet"; dir = 9},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/janitor)
-"cuh" = (/obj/structure/closet/toolcloset,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cui" = (/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cuj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cum" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cun" = (/obj/structure/table/steel,/obj/item/device/camera_film{pixel_x = 2; pixel_y = 2},/obj/item/device/camera_film{pixel_x = -2; pixel_y = -2},/obj/item/device/camera,/obj/item/device/camera{pixel_x = 3; pixel_y = -4},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cuo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cuq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cur" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cus" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cuu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/dockhallway)
-"cux" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cuy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"cuC" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/research)
-"cuD" = (/obj/structure/table/steel,/obj/random/powercell,/obj/random/maintenance/research,/obj/random/tool,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/research)
-"cuE" = (/turf/simulated/floor/plating,/area/maintenance/research)
-"cuG" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/research)
-"cuH" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/maintenance/research)
-"cuI" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "fore_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cuJ" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "fore_starboard_pump"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cuK" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/maintenance/research)
-"cuL" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/research)
-"cuM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/research)
-"cuN" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/maintenance/research)
-"cuO" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/structure/closet/wardrobe/white,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/technology_scanner,/turf/simulated/floor/plating,/area/maintenance/research)
-"cuP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cuQ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/research)
-"cuR" = (/obj/structure/lattice,/obj/item/stack/rods,/turf/space,/area/space)
-"cuS" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/maintenance/research)
-"cuT" = (/turf/simulated/wall/r_wall,/area/rnd/research)
-"cuU" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/cafeteria)
-"cuV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"cvb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/computer/timeclock/premade/south,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cvc" = (/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/dockhallway)
-"cvd" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cve" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cvf" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cvg" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cvh" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atm{pixel_y = -30},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cvi" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock Hallway 2"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cvr" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"cvs" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/research)
-"cvt" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/space)
-"cvw" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/space)
-"cvy" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/airless,/area/space)
-"cvz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/airless,/area/space)
-"cvG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/dockhallway)
-"cvJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space)
-"cvK" = (/obj/machinery/light/small,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cvL" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "toxins_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -22; req_one_access = list(8,13,65)},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cvM" = (/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cvN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cvO" = (/obj/structure/table/standard,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/belt/utility/atmostech,/obj/item/weapon/storage/belt/utility/atmostech,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Aft Port"; dir = 1},/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cvP" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"cvQ" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/machinery/computer/shutoff_monitor{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring)
-"cvR" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cvT" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cvU" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/network/engineering{c_tag = "SUBS - Engineering"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/engineering)
-"cvV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor,/area/maintenance/engineering)
-"cvW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/engineering)
-"cvX" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"cvY" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/machinery/door/window/westleft{name = "Engineering Hardsuits"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"cvZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security,/obj/machinery/door/window/westleft{name = "Security Hardsuits"; req_one_access = list(1)},/obj/item/clothing/head/helmet/space/void/security,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"cwa" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/machinery/door/window/westleft{name = "Medical Staff Only"; req_one_access = list(5)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/head/helmet/space/void/medical,/turf/simulated/floor/tiled/dark,/area/ai_monitored/storage/eva)
-"cwb" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fore)
-"cwc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cwd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore)
-"cwe" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cwf" = (/obj/machinery/newscaster{pixel_x = -28; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/bed/roller,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cwh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cwj" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cwk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cwn" = (/obj/structure/closet/jcloset,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/janitor)
-"cwp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/janitor)
-"cwq" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/monotile,/area/janitor)
-"cwr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/janitor)
-"cws" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/janitor)
-"cwt" = (/obj/structure/closet/toolcloset,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cwu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cwv" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/machinery/camera/network/civilian{c_tag = "CIV - Auxiliary Storage"; dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/item/weapon/storage/fancy/markers,/obj/item/weapon/storage/fancy/markers,/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cww" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/meter,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwx" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Firefighting Equipment"; req_access = null; req_one_access = list(12,47)},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwy" = (/obj/random/mob/mouse,/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwz" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwA" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwB" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwC" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/wall/r_wall,/area/maintenance/research)
-"cwD" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "fore_starboard_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwF" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwG" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwH" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Research automatic shutoff valve"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwI" = (/obj/random/mob/mouse,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwJ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/research)
-"cwK" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/research)
-"cwM" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cwN" = (/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cwT" = (/turf/simulated/wall/r_wall,/area/rnd/toxins_launch)
-"cwV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D1)
-"cwZ" = (/obj/machinery/door/blast/regular{id = "toxinsdriver"; name = "Toxins Launcher Bay Door"},/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cxc" = (/obj/structure/sign/warning/bomb_range,/turf/simulated/wall/r_wall,/area/rnd/toxins_launch)
-"cxd" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/toxins_launch)
-"cxe" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/rnd/toxins_launch)
-"cxh" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cxi" = (/obj/structure/railing,/turf/simulated/open,/area/hallway/primary/seconddeck/aft)
-"cxm" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "toxins_outer"; locked = 1; name = "Toxins External Access"; req_access = list(8,10,13)},/turf/simulated/floor/tiled/dark,/area/rnd/toxins_launch)
-"cxn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos)
-"cxo" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/engineering/atmos/monitoring)
-"cxp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/monitoring)
-"cxq" = (/obj/structure/table/steel,/obj/random/powercell,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/alarm{pixel_y = 22},/obj/random/tool/powermaint,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cxr" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fore)
-"cxs" = (/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cxu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore)
-"cxw" = (/obj/structure/closet/emcloset,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cxz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"cxA" = (/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/random/medical/lite,/obj/machinery/camera/network/medbay{c_tag = "MED - FA Station Fore"; dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cxI" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/closet/medical_wall{pixel_y = -31},/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/pill_bottle/spaceacillin,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cxK" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/closet/secure_closet/medical_wall{name = "defibrillator closet"; pixel_y = -31},/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore)
-"cxL" = (/obj/structure/closet/jcloset,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/janitor)
-"cxM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/janitor)
-"cxN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/janitor)
-"cxO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/janitor)
-"cxP" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled,/area/janitor)
-"cxQ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cxR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cxS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cxT" = (/obj/structure/table/steel,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cxU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cxV" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research)
-"cxW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/research)
-"cxX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"cyc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cyj" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"cyk" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cym" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyn" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyo" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "fore_starboard_airlock"; name = "interior access button"; pixel_x = -26; pixel_y = 25; req_one_access = null},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyp" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyq" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/sign/warning/airlock{pixel_y = 32},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/research)
-"cys" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"cyt" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyu" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/tvalve{dir = 8},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"cyv" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/research)
-"cyx" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/research)
-"cyy" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Research Maintenance Access"; req_one_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/rnd/research)
-"cyz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cyA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cyB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cyD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cyF" = (/turf/simulated/wall,/area/rnd/toxins_launch)
-"cyN" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/warning/vacuum{pixel_x = -32},/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cyO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/doppler_array,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/dark,/area/rnd/toxins_launch)
-"cyP" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins Test Area"); pixel_y = 32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cyQ" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins Test Area"); pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/bed/chair{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cyS" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins Test Area"); pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/chair{dir = 1},/obj/machinery/button/remote/driver{id = "toxinsdriver"; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cyT" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "toxins_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "toxins_airlock"; pixel_x = -25; tag_airpump = "toxins_pump"; tag_chamber_sensor = "toxins_sensor"; tag_exterior_door = "toxins_outer"; tag_interior_door = "toxins_inner"},/obj/machinery/light/small{dir = 4},/obj/machinery/airlock_sensor{id_tag = "toxins_sensor"; pixel_x = 25},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cyU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cyV" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cyW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cyX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cyY" = (/obj/structure/sign/warning/high_voltage{pixel_y = 32},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cyZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cza" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/bar)
-"czb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"czc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"czd" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"czq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock 1 Fore"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"czt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"czu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/inflatable/door/torn,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"czx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"czI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"czJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"czK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"czO" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"czV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"czY" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore)
-"czZ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/window/eastright{name = "Janitorial Delivery"; req_one_access = list(26)},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor/tiled,/area/janitor)
-"cAb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/janitor)
-"cAc" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/janitorialcart,/turf/simulated/floor/tiled,/area/janitor)
-"cAq" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/bar)
-"cAu" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/janitor)
-"cAv" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled,/area/janitor)
-"cAw" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos)
-"cAx" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cAy" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cAz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cAB" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cAC" = (/obj/structure/table/steel,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/device/taperecorder,/obj/item/device/taperecorder,/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/storage/auxillary)
-"cAJ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/research)
-"cAK" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/research)
-"cAM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/research)
-"cAN" = (/obj/structure/closet,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research)
-"cAO" = (/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/plating,/area/maintenance/research)
-"cAP" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/hor)
-"cAQ" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/research)
-"cAV" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/turf/simulated/floor/plating,/area/maintenance/research)
-"cAW" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cAX" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/research)
-"cAY" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/research)
-"cAZ" = (/turf/simulated/wall,/area/rnd/research_lockerroom)
-"cBa" = (/turf/simulated/wall,/area/rnd/research_restroom_sc)
-"cBe" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cBf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cBg" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cBh" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/bar)
-"cBi" = (/turf/simulated/wall/r_wall,/area/rnd/storage)
-"cBj" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/airlock_sensor{pixel_x = -25},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cBk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/window/westleft{name = "Toxins Launcher"; req_access = list(8)},/obj/machinery/door/window/eastleft{name = "Toxins Launcher"; req_access = list(8)},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/rnd/toxins_launch)
-"cBl" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cBp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cBs" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cBt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "toxins_inner"; locked = 1; name = "Toxins External Access"},/turf/simulated/floor/tiled/dark,/area/rnd/toxins_launch)
-"cBu" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_port_airlock"; name = "exterior access button"; pixel_y = -25; req_one_access = list(11,24)},/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light/small,/turf/simulated/floor/airless,/area/engineering/drone_fabrication)
-"cBv" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/engineering/drone_fabrication)
-"cBw" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/obj/machinery/light/small{dir = 4},/obj/structure/sign/warning/engineering_access{pixel_x = 32},/turf/simulated/floor/airless,/area/engineering/drone_fabrication)
-"cBx" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"cBy" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/storage)
-"cBz" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{c_tag = "ENG - Hard Storage"},/turf/simulated/floor,/area/engineering/storage)
-"cBD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cBG" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cBH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cBI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cBJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Hallway 1"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cBK" = (/obj/random/toolbox,/obj/machinery/light/small,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cBL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/meter,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cBM" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/maintenance/engineering)
-"cBN" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting Equipment"; req_access = list(12)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cBO" = (/obj/structure/closet,/obj/item/clothing/head/ushanka,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cBX" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cBY" = (/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Deck 2 Fore automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cCa" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fore)
-"cCb" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore)
-"cCe" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fore)
-"cCf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cCh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria)
-"cCl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cCm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"cCo" = (/obj/structure/closet/crate/freezer/rations,/obj/random/action_figure,/turf/simulated/floor/plating,/area/maintenance/research)
-"cCp" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon/delivery/north{location = "Janitor"},/turf/simulated/floor/tiled,/area/janitor)
-"cCs" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access = list(26)},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/janitor)
-"cCv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cCw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/storage/auxillary)
-"cCy" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/research)
-"cCC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/research)
-"cCF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/research)
-"cCG" = (/obj/structure/table,/obj/item/stack/material/plastic,/obj/item/weapon/tool/wrench,/obj/item/weapon/weldingtool/hugetank,/turf/simulated/floor/plating,/area/maintenance/research)
-"cCH" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/research)
-"cCI" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/research)
-"cCJ" = (/obj/item/weapon/rig/hazmat/equipped,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/door/window/southright{name = "RD Suit"; req_one_access = list(30)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cCK" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/random_multi/single_item/hand_tele,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cCL" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/obj/machinery/keycard_auth{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cCM" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/button/remote/blast_door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -6; pixel_y = 24; req_access = list(47)},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the cargo doors."; id = "researchdoor"; name = "Research door control"; pixel_x = 6; pixel_y = 24; req_access = list(30)},/obj/machinery/button/windowtint{id = "rdoffice"; pixel_x = -16; pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cCO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cCP" = (/obj/structure/table/reinforced,/obj/item/weapon/circuitboard/teleporter,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/cartridge/signal/science,/obj/item/weapon/cartridge/signal/science{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/science{pixel_x = 4; pixel_y = 6},/obj/item/device/megaphone,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = 30; pixel_y = -2},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cCR" = (/turf/simulated/wall,/area/rnd/research)
-"cCS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Research Maintenance Access"; req_one_access = list(47)},/turf/simulated/floor/plating,/area/rnd/research)
-"cCT" = (/obj/structure/closet/secure_closet/scientist,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/item/device/gps/science,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cCU" = (/obj/machinery/alarm{pixel_y = 25},/obj/machinery/camera/network/research{c_tag = "SCI - Locker Room"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cCV" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/structure/closet/secure_closet/scientist,/obj/item/device/gps/science,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cCW" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cCX" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cCY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cCZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cDa" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cDb" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cDc" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cDd" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cDe" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/warning/nosmoking_2{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cDf" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cDg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cDh" = (/obj/machinery/mass_driver{dir = 1; id = "toxinsdriver"},/turf/simulated/floor/airless,/area/rnd/toxins_launch)
-"cDk" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cDm" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/turf/simulated/floor/plating,/area/rnd/toxins_launch)
-"cDn" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cDo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cDp" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Launch Room"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cDr" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; target_pressure = 200},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "toxins_airlock"; name = "interior access button"; pixel_y = 22; req_one_access = list(8,13,65)},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cDs" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/plating,/area/rnd/toxins_launch)
-"cDt" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/warning/airlock{pixel_y = 32},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/rnd/toxins_launch)
-"cDu" = (/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_port_outer"; locked = 1; name = "Engineering External Access"; req_access = list(13)},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"cDv" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning,/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/stack/cable_coil/orange,/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"cDw" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/foyer)
-"cDx" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineer_eva)
-"cDy" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engineer_eva)
-"cDz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cDA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"cDB" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"cDC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"cDD" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"cDE" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"cDF" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"cDH" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"cDI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom)
-"cDP" = (/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cDQ" = (/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/research)
-"cDR" = (/obj/structure/grille/broken,/obj/item/stack/rods,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/research)
-"cDS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/research)
-"cDW" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/research)
-"cDX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cDY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cDZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cEa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cEb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/research)
-"cEc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cEd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"cEe" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cEf" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/research)
-"cEg" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cEh" = (/mob/living/simple_mob/slime/xenobio/rainbow/kendrick,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cEi" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Research Director"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cEj" = (/obj/structure/table/reinforced,/obj/item/device/paicard{pixel_x = 4},/obj/item/device/tape,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/weapon/reagent_containers/food/drinks/jar,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cEk" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/rnd/research)
-"cEl" = (/turf/simulated/floor/wood,/area/rnd/research)
-"cEm" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/rnd/research)
-"cEn" = (/obj/machinery/disposal,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/rnd/research)
-"cEo" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/obj/item/device/gps/science,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cEp" = (/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cEq" = (/obj/structure/closet/wardrobe/science_white,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/obj/item/weapon/storage/box/gloves,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cEr" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cEs" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cEt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Fore"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cEu" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cEz" = (/obj/structure/sign/warning/compressed_gas,/turf/simulated/wall/r_wall,/area/rnd/storage)
-"cEA" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cEB" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cEC" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cED" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cEE" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cEH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera/network/medbay{c_tag = "MED - Equipment Storage"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"cEI" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"cEJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access = list(7)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/toxins_launch)
-"cEK" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "eng_port_pump"},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/airlock_sensor{id_tag = "eng_port_sensor"; pixel_x = -24},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"cEM" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"cEN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "eng_port_pump"},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"cEO" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"cEP" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/techmaint,/area/engineering/hallway/atmos_hallway)
-"cEQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"cER" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"cEX" = (/obj/structure/disposalpipe/segment,/obj/machinery/status_display{layer = 4; pixel_x = 32},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Aft Hallway 1"; dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"cEZ" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cFa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cFb" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/hydroponics,/obj/item/device/multitool,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cFi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cFj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"cFk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"cFt" = (/turf/simulated/wall,/area/crew_quarters/barrestroom)
-"cFF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/holodeck_control)
-"cFG" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/holodeck_control)
-"cFH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/techfloor,/area/holodeck_control)
-"cFI" = (/turf/simulated/wall,/area/holodeck_control)
-"cFM" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"cFN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"cFO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/research)
-"cFP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"cFU" = (/turf/simulated/wall/r_wall,/area/engineering/atmos)
-"cFV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cFW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/maintenance/research)
-"cFX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/research)
-"cFY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"cFZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/research)
-"cGa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/meter,/obj/structure/closet/toolcloset,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/research)
-"cGd" = (/turf/simulated/wall,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"cGe" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/research)
-"cGf" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/sign/warning/high_voltage{pixel_x = 32},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"cGm" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Research"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"cGn" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/alarm{pixel_y = 23},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/stack/cable_coil,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"cGo" = (/obj/machinery/computer/aifixer{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hor)
-"cGp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cGq" = (/obj/structure/flora/pottedplant/mysterious,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cGw" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/item/device/gps/science/rd,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cGx" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white_rd,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/item/clothing/glasses/welding/superior,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cGy" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen/multi,/obj/item/weapon/paper/monitorkey,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("Research","Toxins Test Area","Robots","Anomaly Isolation","Research Outpost"); pixel_x = 32; pixel_y = -4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"cGD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/rnd/research)
-"cGE" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/rnd/research)
-"cGF" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/wood,/area/rnd/research)
-"cGH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/research{name = "Research Locker Room"; req_access = list(47)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research_lockerroom)
-"cGK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cGL" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cGO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"cGP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Research Restroom"; req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research_restroom_sc)
-"cGQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cGR" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light{dir = 1},/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/obj/item/weapon/soap/nanotrasen,/obj/random/soap,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cGT" = (/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cGU" = (/obj/structure/window/basic,/obj/structure/undies_wardrobe,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"cGW" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w1_e_airlock"; landmark_tag = "d2_w1_e"; name = "Deck 2, Dock 1-E"},/turf/space,/area/space)
-"cGY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cHs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"cHR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access = list(8)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/storage)
-"cIl" = (/turf/simulated/floor/grass,/area/hydroponics)
-"cIn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/rnd/storage)
-"cIo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/storage)
-"cIQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"cJn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/storage)
-"cJL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/storage)
-"cKs" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"cKu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/storage)
-"cMi" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/rnd/storage)
-"cMz" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"cNa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access = list(8)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/storage)
-"cNk" = (/obj/machinery/newscaster{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cNB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cND" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"cNV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access = list(25)},/turf/simulated/floor/plating,/area/crew_quarters/bar)
-"cPg" = (/obj/effect/landmark/start{name = "Bartender"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"cPv" = (/obj/machinery/atmospherics/pipe/cap/visible{color = "#444444"; dir = 1},/turf/simulated/floor,/area/engineering/engine_waste)
-"cQJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cQM" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock{name = "Coffee Shop"; req_one_access = list(25,28)},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"cRd" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"cRi" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cSb" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"cSi" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Lab 1"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cSC" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"cSF" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cSR" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cTb" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"cTj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cTz" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 1; frequency = 1380; id_tag = "d2_w3_d_airlock"; pixel_y = -27; req_one_access = list(13)},/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"cUx" = (/obj/item/stack/material/phoron{amount = 5},/obj/structure/table/glass,/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/beige/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"cUR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"cUT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"cVi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Office"; req_access = list(27)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/chapel/office)
-"cVs" = (/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay)
-"cVG" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"cVH" = (/obj/machinery/chem_master,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"cVI" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"cWj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"cWk" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"cWU" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "dock3_south_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"cXd" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"cXz" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"cXB" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/spline/fancy/wood,/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/library)
-"cXZ" = (/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"cYh" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"cZy" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"cZS" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"dar" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "eng_port_pump"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "eng_port_airlock"; pixel_x = -25; req_access = list(13); req_one_access = null; tag_airpump = "eng_port_pump"; tag_chamber_sensor = "eng_port_sensor"; tag_exterior_door = "eng_port_outer"; tag_interior_door = "eng_port_inner"},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"day" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"dbg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop)
-"dbK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"dck" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineWasteViewport1"; name = "Engine Waste Viewport Shutter"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engine_waste)
-"dcS" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/drone_fabrication)
-"ddf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Firefighting Equipment"; req_access = newlist(); req_one_access = list(12,25,27,28,35)},/turf/simulated/floor/plating,/area/maintenance/bar)
-"ddH" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "eng_port_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"ddO" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"den" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"deQ" = (/obj/structure/table/steel,/obj/item/weapon/gun/launcher/syringe,/obj/item/weapon/storage/box/syringegun,/obj/random/medical,/obj/random/medical,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"dfc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"dgM" = (/obj/structure/sign/examroom{pixel_x = 32; pixel_y = 32},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"dgU" = (/turf/simulated/wall/r_wall,/area/holodeck_control)
-"dgY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage)
-"dhP" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/floor_decal/carpet{dir = 4},/turf/simulated/floor/carpet,/area/library)
-"dhR" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"djg" = (/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"djr" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"dkb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"dln" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineWasteViewport1"; name = "Engine Waste Blast Doors"; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_waste)
-"dlt" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "holodeck_tint"},/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/holodeck_control)
-"dlx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"dlB" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/storage/box/nifsofts_medical,/obj/item/weapon/backup_implanter{pixel_y = -6},/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter{pixel_y = 6},/obj/item/weapon/backup_implanter{pixel_y = 12},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"dlP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"dlW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Civilian Hallway 1"; dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"dmm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineer_eva)
-"dmt" = (/obj/structure/bed/chair/comfy/purp,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"doj" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/simulated/floor,/area/maintenance/engineering)
-"doR" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/foyer)
-"dpN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"dpO" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/fscenter)
-"dpP" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/standard,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/FixOVein,/obj/item/weapon/surgical/surgicaldrill,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"dpQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/ai_status_display{pixel_x = -32},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"dqc" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"dqp" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_y = -32},/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"dqr" = (/turf/simulated/wall/r_wall,/area/medical/cryo/autoresleeve)
-"dqF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"drD" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"drJ" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced/polarized{id = "pr1_window_tint"},/turf/simulated/floor/plating,/area/medical/patient_a)
-"dsj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"dso" = (/obj/machinery/status_display{layer = 4; pixel_x = 32},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"dtI" = (/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"dtN" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"duc" = (/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/light/small{dir = 1},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/technology_scanner,/obj/structure/catwalk,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"duE" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon/delivery/west{location = "Hydroponics"},/turf/simulated/floor/tiled,/area/hydroponics)
-"duK" = (/obj/machinery/floodlight,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"duU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/research)
-"dve" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"dvr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar)
-"dvz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"dvB" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"dvT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"dwh" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "cryostorage_shuttle"; name = "cryostorage controller"; pixel_x = -26; req_access = list(19); tag_door = "cryostorage_shuttle_hatch"},/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"dwx" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"dwP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"dwV" = (/obj/machinery/computer/robotics{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hor)
-"dwY" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/blast/shutters{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"dxa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"dxh" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"dxR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"dyd" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"dyw" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/sc/hor)
-"dyy" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"dyK" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/ai_monitored/storage/emergency/eva)
-"dyN" = (/obj/machinery/papershredder,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"dyX" = (/obj/machinery/conveyor{id = "recycler"},/obj/machinery/recycling/sorter,/obj/structure/sign/warning/moving_parts{pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"dzb" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "rdoffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor)
-"dzi" = (/obj/structure/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Xenobiologist"},/turf/simulated/floor/wood,/area/rnd/research)
-"dzl" = (/obj/machinery/libraryscanner,/obj/machinery/camera/network/civilian{c_tag = "CIV - Arrivals Lounge"; dir = 1},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"dzN" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/rnd/research)
-"dzX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"dBF" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 7"; dir = 1},/obj/structure/table/woodentable,/obj/item/device/starcaster_news,/obj/item/clothing/accessory/scarf/christmas,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/apcenter)
-"dBK" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/hallway/primary/seconddeck/stairwell)
-"dCb" = (/obj/structure/bed/chair{dir = 8},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/wood,/area/rnd/research)
-"dCe" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/locker)
-"dCy" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth (Chaplain)"; req_access = list(22)},/turf/simulated/floor/tiled/techmaint,/area/chapel/main)
-"dCH" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/research)
-"dCI" = (/turf/simulated/floor/tiled,/area/medical/morgue)
-"dDw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"dEa" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/landmark/start{name = "Barista"},/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"dEc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"dEo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"dEU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"dEZ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"dGs" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/structure/cable/green,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"dGB" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/storage/primary)
-"dGC" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research_lockerroom)
-"dGE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"dHp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"dHR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"dHU" = (/obj/machinery/conveyor_switch/oneway{id = "garbage"; name = "disposal coveyor"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/button/remote/driver{id = "trash"; pixel_x = -26; pixel_y = -6},/turf/simulated/floor,/area/maintenance/disposal)
-"dIm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"dIq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"dIu" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1; pixel_y = -10},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"dIx" = (/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/machinery/door/window/westright{name = "Shower"},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"dJJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/foyer)
-"dJN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"dJS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"dKV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "SUBS - Cargo Second Deck"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"dLg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"dLA" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"dLF" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"dMl" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/storage)
-"dMp" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"dMF" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/item/device/flashlight/lamp/green,/obj/machinery/door/blast/shutters{dir = 8; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"dNr" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"dNI" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"dOF" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/storage)
-"dPi" = (/obj/machinery/light/small{dir = 4},/obj/random/junk,/turf/simulated/floor,/area/maintenance/bar)
-"dPW" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"dQc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/storage)
-"dRO" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/structure/fans/tiny,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"dSc" = (/obj/effect/floor_decal/carpet{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"dSt" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/firecloset,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage)
-"dSY" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"dTh" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"dTv" = (/turf/simulated/floor/tiled/steel_grid,/area/library)
-"dTG" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"dTN" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"dUc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"dUe" = (/obj/structure/sign/warning/compressed_gas,/turf/simulated/wall,/area/rnd/storage)
-"dUz" = (/obj/machinery/vending/phoronresearch{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"dUH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"dUK" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineWasteViewport1"; name = "Engine Waste Viewport Shutter"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/engine_waste)
-"dVl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"dVq" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CIV - Cafeteria Port"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"dVM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"dVT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"dWe" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/plasticflaps/mining,/obj/structure/sign/deathsposal{icon_state = "falling"; pixel_y = 32},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"dWl" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet,/obj/effect/floor_decal/carpet{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Port"; dir = 4},/turf/simulated/floor/carpet,/area/library)
-"dWp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"dWC" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"dWG" = (/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Heated to Waste"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"dWM" = (/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/binary/pump{name = "Waste to Scrubbers"},/turf/simulated/floor/plating,/area/rnd/mixing)
-"dXD" = (/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"dXI" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/powered/pump,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"dYg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"dYC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"dYS" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/beige/border{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"dYT" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1445; id = "engine_exhaust_output"; name = "Engine Exhaust"; power_rating = 30000; use_power = 1; volume_rate = 700},/obj/structure/railing/grey{dir = 4},/obj/structure/railing/grey{dir = 1},/obj/structure/railing/grey{dir = 8},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/air_sensor{frequency = 1445; id_tag = "engine_exhaust_sensor"},/turf/simulated/floor/airless,/area/engineering/engine_waste)
-"dZA" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/docking_hallway2)
-"dZD" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_waste)
-"dZU" = (/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Heater to Waste"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"eae" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"eaB" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"eaF" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"eaJ" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"ebf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"ebw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"ebA" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"ebS" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"ecb" = (/obj/structure/bed/chair/sofa/left/brown{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/artgallery)
-"ecy" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/mixing)
-"ecT" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"edR" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"eeQ" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/tool/crowbar,/obj/item/weapon/pen,/obj/item/device/flash,/obj/machinery/camera/network/security{c_tag = "SEC - Arrival Checkpoint"; dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"efb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"efl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"efz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"efB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"efH" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_port_inner"; locked = 1; name = "Engineering Internal Access"; req_access = list(13)},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"egb" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock{name = "Medical Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/medical/medical_restroom)
-"ego" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"egG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"egH" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_port_inner"; locked = 1; name = "Engineering Internal Access"; req_access = list(13)},/turf/simulated/floor,/area/engineering/drone_fabrication)
-"ehE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/thermoregulator,/turf/simulated/floor,/area/engineering/storage)
-"eia" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/bar)
-"eiA" = (/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"eiB" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"eiG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"eiI" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"ejk" = (/obj/machinery/door/window/southright{name = "Bar"; req_access = list(25)},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"ejl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"ejD" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/engineering/storage)
-"ejP" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"eke" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"ekk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"ekq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/vending/wallmed1{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"ekL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"ekT" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room)
-"eli" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/carpet/oracarpet,/area/library)
-"elC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"emk" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"emn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway)
-"emv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"emI" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"emX" = (/obj/structure/table/wooden_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/flashlight/lamp{pixel_y = 10},/turf/simulated/floor/lino,/area/chapel/office)
-"enc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/medical/sleeper)
-"end" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fp_emergency)
-"enG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fscenter)
-"enR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"eov" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"eow" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"eoK" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"epn" = (/obj/item/device/geiger/wall/west,/turf/simulated/floor,/area/maintenance/apmaint)
-"eqB" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/pen/multi,/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"eqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/bodyscanner,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"eqL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"eqR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/holodeck_control)
-"erh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"erE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"erJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"esc" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/transhuman/resleever,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"esm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"esJ" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_waste)
-"ets" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance Access"; req_access = list(5)},/turf/simulated/floor/plating,/area/medical/medbay)
-"etv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"etA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"etF" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"eup" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"euB" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"euY" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"eva" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycling Process"; pixel_y = 5},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"evb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"evM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/medical{name = "Patient Room A"},/turf/simulated/floor/tiled/steel_grid,/area/medical/patient_a)
-"evZ" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/grass,/area/hydroponics)
-"ewQ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/table/standard,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"ewV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"exb" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/junk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research)
-"eyb" = (/obj/structure/table/woodentable,/obj/item/toy/plushie/therapy/blue,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"eyV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"eAf" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"eBi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"eBm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"eBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"eCc" = (/obj/structure/table/bench/wooden,/obj/item/device/flashlight/lamp/clown{pixel_y = 5},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/oracarpet,/area/library)
-"eCo" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera/network/engineering{c_tag = "SUBS- Research"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"eCW" = (/turf/simulated/wall/r_wall,/area/medical/chemistry)
-"eDi" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/navbeacon/delivery/south{location = "Tool Storage"},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/storage/primary)
-"eDx" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"eEj" = (/obj/structure/sink{pixel_y = 16},/obj/machinery/button/remote/blast_door{id = "surgeryobs2"; name = "Privacy Shutters"; pixel_x = -26},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"eEy" = (/obj/structure/closet/coffin,/obj/machinery/door/window/northleft{name = "Coffin Storage"; req_access = list(27)},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"eEQ" = (/obj/structure/bed/chair,/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"eEU" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/primary)
-"eEX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"eFj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westright{name = "EVA Suit Storage"; req_access = list(5)},/obj/item/device/suit_cooling_unit,/obj/structure/table/rack{dir = 8; layer = 2.6},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"eFx" = (/obj/machinery/computer/mecha{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/sc/hor)
-"eFW" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"eGp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - RD's Office"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"eGr" = (/obj/item/device/radio/intercom/locked/confessional{pixel_y = -21},/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"eGF" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"eGO" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"eHa" = (/obj/structure/closet/crate,/obj/random/toy,/obj/random/plushie,/obj/random/plushie,/obj/random/action_figure,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"eHi" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "crg_aft_pump"},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor,/area/maintenance/cargo)
-"eHo" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/blue/bordercorner,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"eHw" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/hor)
-"eHG" = (/obj/structure/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/wood,/area/rnd/research)
-"eHK" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"eHU" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian"; name_tag = "Civilian Subgrid"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"eHV" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor/wood,/area/rnd/research)
-"eHX" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Xenobiologist"},/turf/simulated/floor/wood,/area/rnd/research)
-"eHY" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"eIu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/newscaster{pixel_x = 30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/research)
-"eIM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"eIX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"eIY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"eIZ" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"eJf" = (/obj/machinery/door/window/westleft{name = "Shower"},/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/rnd/research_restroom_sc)
-"eKe" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small,/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"eKp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"eKs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"eKB" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"eKZ" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artsupplies)
-"eLa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall,/area/maintenance/substation/civilian)
-"eLe" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge{scrub_id = "Toxins"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"eLf" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"eLk" = (/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Gas Storage"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"eLs" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/apcenter)
-"eLH" = (/obj/machinery/status_display{pixel_y = -32},/obj/machinery/organ_printer/flesh/full,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"eLI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"eMc" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8},/obj/machinery/airlock_sensor{dir = 4; frequency = 1380; id_tag = null; pixel_x = -27},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"eMm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"eMv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/computer/area_atmos/tag{dir = 1; scrub_id = "Toxins"},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"eMF" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/storage/primary)
-"eMV" = (/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"eNj" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/rnd/storage)
-"eNs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/maintenance/bar)
-"eNz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Patient Ward"; req_access = list(5)},/turf/simulated/floor/tiled/steel_grid,/area/medical/ward)
-"eNJ" = (/turf/simulated/wall,/area/rnd/storage)
-"eNU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"eOl" = (/obj/machinery/optable,/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/medical/morgue)
-"eOG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"eOJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/table/standard,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/screwdriver{pixel_y = 10},/obj/item/weapon/tool/crowbar,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"ePp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"eQy" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning/cee{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"eQz" = (/obj/machinery/atmospherics/pipe/manifold/visible/purple,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"eQK" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/atmospherics/pipe/simple/visible/purple{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"eRd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"eRm" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"eRK" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/steel,/area/rnd/mixing)
-"eRO" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/tiled/steel,/area/rnd/mixing)
-"eSn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"eSw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Chemistry Laboratory"; req_access = list(33)},/turf/simulated/floor/tiled/steel_grid,/area/medical/chemistry)
-"eSF" = (/obj/machinery/atmospherics/pipe/manifold/visible/purple{dir = 4},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"eSJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"eTf" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/rnd/mixing)
-"eTt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"eTM" = (/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"eUR" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"eVw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"eVz" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/cargo)
-"eWt" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"eXe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"eXg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"eXp" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"eXq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"eXs" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/newscaster{pixel_x = 30},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/beige/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"eXF" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"eXP" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2_w1_a_airlock"; pixel_y = 27; req_one_access = list(13)},/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"eYn" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/warning/airlock{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"eYr" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/medical_lockerroom)
-"eYu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"eYX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"eZp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"eZt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"eZS" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"fbc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar)
-"fbN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"fbP" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_port_airlock"; name = "interior access button"; pixel_y = 25; req_one_access = list(11,24)},/obj/structure/table/steel,/obj/item/weapon/storage/fancy/cigarettes,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/structure/extinguisher_cabinet{pixel_x = 28},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"fbR" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"fbZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"fce" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage)
-"fcO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"fcX" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D3)
-"fdh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"fdB" = (/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"fdE" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/plasticflaps/mining,/obj/structure/sign/deathsposal{icon_state = "falling"; pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"fdK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"fdL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"fdO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"fee" = (/obj/structure/sign/department/shield,/turf/simulated/wall/r_wall,/area/engineering/hallway/atmos_hallway)
-"feh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/atmos_hallway)
-"fek" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"ffB" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_y = 30},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"ffZ" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"fge" = (/obj/structure/table,/turf/simulated/floor/tiled/yellow,/area/maintenance/engineering)
-"fgg" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"fgJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"fgL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"fgN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"fhn" = (/obj/machinery/smartfridge/produce,/turf/simulated/wall/r_wall,/area/hydroponics)
-"fhH" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"fhU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"fhX" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Public Office"; req_one_access = newlist()},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"fia" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"fid" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "aft_starboard_airlock"; name = "exterior access button"; pixel_x = 25; pixel_y = 26; req_one_access = null},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/medbay)
-"fil" = (/obj/machinery/appliance/cooker/grill,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"fiw" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"fix" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"fiG" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"fjp" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"fjv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"fjy" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"fjz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"fjA" = (/obj/structure/closet/hydrant{pixel_x = 32},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/fs_emergency)
-"fld" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/research)
-"flB" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_access = list(47); req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/substation/research)
-"flC" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced/polarized{id = "rdoffice"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor)
-"flL" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/status_display{pixel_x = 30},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/pink/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"fma" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/structure/closet/secure_closet/medical_wall/pills{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"fmH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"fno" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/locker)
-"fnp" = (/turf/simulated/wall,/area/maintenance/chapel)
-"fnG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"foc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{id_tag = null; name = "Research Director Quarters"; req_access = list(30)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/hor)
-"foi" = (/obj/structure/morgue/crematorium{dir = 1; id = "Chapelburn"},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"foz" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"foF" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "rdoffice"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor)
-"foG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"foZ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/storage/primary)
-"fpc" = (/obj/structure/table/marble,/obj/machinery/cash_register/civilian{dir = 4},/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/door/blast/shutters{dir = 8; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"fpA" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/wood,/area/rnd/research)
-"fql" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/rnd/research)
-"frT" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/research)
-"frZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"fsh" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"fsn" = (/obj/machinery/smartfridge/secure/medbay{req_one_access = list(33,66)},/turf/simulated/wall/r_wall,/area/medical/chemistry)
-"fsr" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2_w3_c_airlock"; pixel_y = 27; req_one_access = list(13)},/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"fsC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"ftm" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"ftv" = (/turf/simulated/floor/tiled/steel_grid,/area/rnd/research)
-"ftz" = (/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/stack/tile/floor,/turf/simulated/floor/plating,/area/construction/seconddeck/construction1)
-"fub" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/delivery)
-"fur" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"fuP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"fuU" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"fva" = (/obj/structure/railing,/turf/simulated/open,/area/rnd/research)
-"fvE" = (/obj/structure/table/woodentable,/obj/item/weapon/tape_roll,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"fvH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Research Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research_restroom_sc)
-"fvK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; dir = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"fvS" = (/obj/item/weapon/deck/cards,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/library)
-"fwZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main)
-"fxl" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/engineering/engine_room)
-"fxZ" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "crg_aft_airlock"; name = "exterior access button"; pixel_y = 25; req_one_access = null},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/cargo)
-"fya" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"fyo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/sign/dock/two,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"fyD" = (/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"fyL" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"fyN" = (/obj/effect/floor_decal/corner/brown/diagonal,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"fzk" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"fzR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/bombcloset,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/nosmoking_2{pixel_x = -32},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"fAl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"fAD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"fAH" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"fAL" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"fBa" = (/obj/machinery/smartfridge/produce,/turf/simulated/wall,/area/crew_quarters/coffee_shop)
-"fBz" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"fBJ" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"fBN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"fBW" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "escape_dock_snorth_airlock"; master_tag = "escape_dock"; pixel_y = 27; req_one_access = list(13); tag_airlock_mech_sensor = null; tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null; tag_shuttle_mech_sensor = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"fCl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/locker)
-"fCw" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"fCA" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"fCI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"fDf" = (/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 5},/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"fDv" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"fDD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"fDG" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/engineering/engine_waste)
-"fEi" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"fEE" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"fEU" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"fFh" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"fFv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/bar)
-"fFx" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/plating,/area/medical/virology)
-"fFA" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"fFD" = (/obj/structure/table/woodentable,/obj/structure/flora/pottedplant/stoutbush{pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"fFG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/purple{dir = 1},/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"fGb" = (/obj/structure/table/woodentable,/obj/machinery/recharger,/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Aft"; dir = 1},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"fGl" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; locked = 1; name = "Dock One Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"fGG" = (/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 10},/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"fGW" = (/obj/structure/sign/warning/fire,/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"fHf" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{dir = 4; name = "interior access button"; pixel_x = 7; pixel_y = -27; req_one_access = null},/obj/effect/map_helper/airlock/button/int_button,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"fHh" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"fHv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"fHP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"fHQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"fHV" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"fIx" = (/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"fIL" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"fIO" = (/mob/living/simple_mob/animal/sif/fluffy,/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"fIX" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"fJb" = (/obj/machinery/power/smes/buildable{RCon_tag = "Engine - ShieldGen"; cur_coils = 4; input_level = 750000; output_level = 750000},/obj/structure/cable/orange{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/engineering/hallway/engineer_hallway)
-"fJl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "CE Office"; sortType = "CE Office"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"fJr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"fJy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/chapel)
-"fJF" = (/obj/structure/bed/psych,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"fJX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"fKl" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/engineering/hallway/engineer_hallway)
-"fLN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -5},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"fLS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"fMc" = (/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"fMC" = (/obj/structure/table/marble,/obj/item/toy/plushie/face_hugger,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"fMG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"fMS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering Locker Room"; req_one_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/locker_room)
-"fMV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"fNB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"fON" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/passive_gate{dir = 8; regulate_mode = 0; target_pressure = 4500; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"fOV" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "coffeeshop"; name = "Cafe Shutters"; pixel_y = -26; req_one_access = list(25,28)},/obj/machinery/button/neonsign{id = "cafeopen"; name = "Cafe Sign Switch"; pixel_x = 11; pixel_y = -27},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"fPb" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"fPk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"fPE" = (/obj/random/toolbox,/turf/simulated/floor/tiled/steel,/area/maintenance/engineering)
-"fPU" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room)
-"fPV" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics)
-"fQL" = (/obj/structure/sign/directions/cryo{pixel_y = -10},/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fscenter)
-"fRK" = (/obj/machinery/vending/coffee{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"fRL" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway 1"; dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"fRS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"fSb" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"fSk" = (/obj/structure/table/standard,/obj/item/toy/plushie/box,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control)
-"fSQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"fSY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"fTt" = (/obj/structure/sign/directions/evac{pixel_y = -10},/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fscenter)
-"fUQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"fVj" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"fVu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"fVv" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/navbeacon/delivery/east{location = "Research Division"},/turf/simulated/floor/tiled,/area/rnd/research)
-"fVA" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Research Division Delivery"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/research)
-"fVP" = (/obj/effect/landmark{name = "carpspawn"},/obj/structure/lattice,/obj/machinery/shield_diffuser,/turf/space,/area/space)
-"fWd" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"fWj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"fWS" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/machinery/firealarm{pixel_y = 24},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"fXq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"fYw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"fYH" = (/obj/structure/sign/warning/high_voltage{pixel_y = 32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"fYN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"fZr" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"fZN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor,/area/engineering/engine_waste)
-"fZU" = (/turf/simulated/wall,/area/medical/psych)
-"gar" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"gaL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"gbd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gbs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gbB" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gbG" = (/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"gbW" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor/carpet,/area/library)
-"gcc" = (/obj/structure/table/glass,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"gcd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Port 1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gch" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"gcj" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"gck" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"gcB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "RD Office"; sortType = "RD Office"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gdd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/machinery/door/airlock/glass_research,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gdI" = (/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/lime/border{dir = 6},/obj/structure/bed/double,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"gdV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gel" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"geo" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"gew" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/item/device/geiger/wall/west,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gex" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"geI" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/pink/border{dir = 5},/obj/machinery/vending/blood,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"gfQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Research"; sortType = "Research"},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"ggi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"ggA" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor,/area/engineering/engine_waste)
-"ggV" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"gho" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/holodeck_control)
-"ghX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"gil" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"git" = (/obj/machinery/photocopier,/turf/simulated/floor/lino,/area/chapel/office)
-"giQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"giY" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/effect/landmark/start{name = "Chef"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"gjb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gjl" = (/obj/machinery/chem_master,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/beige/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"gjr" = (/obj/structure/morgue{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue)
-"gju" = (/obj/machinery/door/airlock/glass{name = "Cryogenic Storage"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor,/area/hallway/secondary/docking_hallway2)
-"gjJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"gkh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gkl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Cargo Bay"; sortType = "Cargo Bay"},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"gkn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/locker)
-"gkO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gkY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Cargo Maintenance"; req_access = list(50)},/turf/simulated/floor/plating,/area/quartermaster/lockerroom)
-"gkZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D1)
-"glE" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"gmm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"gmp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"gmI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gmX" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"got" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"goF" = (/obj/machinery/vending/tool{dir = 8; pixel_x = 5},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"gpB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/door/airlock/glass_research,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gpG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gpI" = (/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"gqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gqp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gro" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/medical_lockerroom)
-"grM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"gsP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gsX" = (/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"gtd" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/locker)
-"gtw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gtA" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Starboard"},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"guk" = (/turf/simulated/wall,/area/medical/medical_lockerroom)
-"guC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gvv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"gvF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"gwp" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Starboard"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westright{name = "Particle Accelerator door"; req_access = list(7)},/turf/simulated/floor/tiled/white,/area/rnd/research/particleaccelerator)
-"gxV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"gyf" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"gyw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/stairs/spawner/east,/obj/structure/cable/green{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/up,/obj/structure/sign/warning/radioactive{pixel_y = 32},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/rnd/research/particleaccelerator)
-"gyA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/emcloset,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"gyD" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"gyT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"gzN" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"gzP" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/machinery/airlock_sensor{dir = 8; id_tag = null; pixel_x = 27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"gAD" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"gAK" = (/obj/structure/table/woodentable,/obj/machinery/librarycomp,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"gAX" = (/obj/machinery/atmospherics/tvalve/bypass{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "tox_airlock_control"; pixel_x = 24; tag_airpump = "tox_airlock_pump"; tag_chamber_sensor = "tox_airlock_sensor"; tag_exterior_door = "tox_airlock_exterior"; tag_interior_door = "tox_airlock_interior"},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"gBn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"gBs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"gCo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"gCy" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1443; id = "air_in"; use_power = 1},/obj/machinery/sparker{id = "mixingsparker"; pixel_x = -22},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"gCE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"gCH" = (/obj/machinery/door/blast/regular{id = "mixvent"; name = "Mixer Room Vent"},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/mixing)
-"gCT" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"gDg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"gDr" = (/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor,/area/engineering/engine_waste)
-"gDA" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"gDC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay2)
-"gDF" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/dna_scannernew,/obj/machinery/light,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"gDI" = (/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/random/medical/lite,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"gDU" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Engine Waste Handling"; req_one_access = list(10,24)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/engineering/engine_waste)
-"gEj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"gEM" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D1)
-"gFD" = (/obj/structure/table/wooden_reinforced,/obj/structure/flora/pottedplant/thinbush{pixel_y = 10},/turf/simulated/floor/lino,/area/chapel/office)
-"gFH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"gFO" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/nullrod,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/button/windowtint{id = "chapeloffice"; pixel_x = -11; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/lino,/area/chapel/office)
-"gGj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"gGE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"gHy" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"gIc" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Hallway Port 2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"gIM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"gJr" = (/turf/simulated/wall/r_wall,/area/engineering/hallway/engineer_hallway)
-"gJB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"gJR" = (/obj/machinery/neonsign/cafe{id = "cafeopen"},/turf/simulated/wall,/area/library)
-"gJV" = (/obj/structure/closet,/obj/item/weapon/lipstick/purple,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/locker)
-"gKx" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"gKC" = (/obj/structure/table/wooden_reinforced,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/item/weapon/storage/fancy/markers,/turf/simulated/floor/lino,/area/chapel/office)
-"gKU" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"gLd" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gLq" = (/obj/random/obstruction,/turf/simulated/floor,/area/maintenance/cargo)
-"gLw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gLD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/engineer_hallway)
-"gLO" = (/obj/machinery/status_display,/turf/simulated/shuttle/wall/no_join,/area/shuttle/cryo/station)
-"gMa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gMr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"gMz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artgallery)
-"gNb" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"gNy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"gNI" = (/obj/item/weapon/dice/d20,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/library)
-"gOj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gOu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gOI" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"gPc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"gPh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d2 = 10; icon_state = "0-10"},/obj/machinery/power/terminal{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gPA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"gPC" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; locked = 1; name = "Dock One Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"gPG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gQh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/locker)
-"gQu" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"gQv" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"gQR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/engineer_hallway)
-"gQT" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/morgue{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue)
-"gRF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/marble,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"gRL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"gRP" = (/obj/structure/sign/poster,/turf/simulated/wall,/area/quartermaster/delivery)
-"gSn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/westleft{name = "EVA Suit Storage"; req_access = list(5)},/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/medical,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/item/weapon/tank/oxygen,/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/medical,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/item/weapon/tank/oxygen,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"gSJ" = (/obj/machinery/conveyor{id = "recycler"},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"gSR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"gTh" = (/obj/item/stack/tile/floor/yellow,/obj/item/frame/light,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"gTx" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"gTM" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"gUd" = (/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "arrivals_dock_north_airlock"; master_tag = "arrivals_dock"; pixel_y = 27; req_one_access = list(13); tag_airlock_mech_sensor = null; tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null; tag_shuttle_mech_sensor = null},/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"gUj" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 12"},/obj/structure/table/woodentable,/obj/item/device/communicator,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"gUk" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"gUm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"gUV" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"gVl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"gVm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"gVw" = (/turf/simulated/wall/r_wall,/area/medical/patient_a)
-"gWf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"gWC" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/maintenance/bar)
-"gWL" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"gWZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 8; name = "interior access button"; pixel_x = -7; pixel_y = -27},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"gXB" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"gYl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"gYm" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/green/border{dir = 10},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"gZj" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/closet/emcloset,/obj/item/weapon/tool/crowbar/red,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"gZm" = (/obj/structure/sign/directions/bridge{pixel_y = 10},/obj/structure/sign/directions/science{dir = 4},/obj/structure/sign/directions/medical{dir = 4; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/fscenter)
-"gZF" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"had" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"hai" = (/obj/structure/table/glass,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/soap/nanotrasen,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"hax" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"hay" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/fscenter)
-"haC" = (/obj/structure/easel,/obj/item/canvas/nineteen_nineteen,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"haO" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"hcg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/tiled,/area/medical/morgue)
-"hcA" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"hcP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"hdb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"hdd" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fscenter)
-"hdj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"hdI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"hdV" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 1"},/obj/structure/table/woodentable,/obj/item/device/paicard,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fscenter)
-"hen" = (/obj/effect/floor_decal/chapel,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"heo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"hex" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fscenter)
-"heB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"hff" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "cmooffice"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/cmo)
-"hft" = (/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = 21},/obj/machinery/vending/wallmed1{pixel_x = 25},/obj/structure/flora/pottedplant/flower,/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"hgn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research)
-"hgv" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"hgz" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hgO" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southright{dir = 4; name = "Hydroponics"},/obj/machinery/door/window/northleft{dir = 8; name = "Hydroponics"; req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics)
-"hhw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"hhQ" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"hiu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"hiK" = (/obj/structure/closet/wardrobe/chaplain_black,/turf/simulated/floor/lino,/area/chapel/office)
-"hjA" = (/obj/machinery/light,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hjH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"hkr" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/lino,/area/chapel/office)
-"hkO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"hkW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Port 2"; dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hlb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hlo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"hlC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"hlN" = (/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/structure/closet/crate{name = "Grenade Crate"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"hlX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hmD" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"hmH" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"hny" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hnG" = (/turf/simulated/wall,/area/medical/medbay2)
-"hnS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hoa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"hoK" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"hpn" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"hpA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hpC" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"hqq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"hqB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hqU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"hru" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hrz" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room)
-"hsI" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w1_a_airlock"; landmark_tag = "d2_w1_a"; name = "Deck 2, Dock 1-A"},/turf/space,/area/space)
-"hsP" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"hsW" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"hti" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/door/airlock/glass_research,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"htI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"hua" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"hul" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hut" = (/obj/random/junk,/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/simulated/floor,/area/maintenance/disposal)
-"hvb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hvG" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hwF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"hwH" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/carpet,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library)
-"hwJ" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/medical/medbay_emt_bay)
-"hwR" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/bar)
-"hxj" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"hxs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hxA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hyf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Mid"; dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hyq" = (/obj/structure/disposalpipe/segment,/obj/machinery/vending/medical,/turf/simulated/wall,/area/medical/medbay_primary_storage)
-"hzq" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Hallway Starboard 3"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"hzr" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"hzy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"hzE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hzO" = (/turf/simulated/wall,/area/medical/biostorage)
-"hzX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hBg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"hBo" = (/turf/simulated/wall/r_wall,/area/medical/patient_wing)
-"hBq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hBt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hBM" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "medbayrecquar"; name = "Medbay Emergency Quarantine Shutters"; opacity = 0},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/corner_steel_grid{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"hBX" = (/obj/structure/closet/secure_closet/paramedic,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/ai_status_display{pixel_x = -32},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"hCW" = (/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 1; frequency = 1380; id_tag = "arrivals_dock_south_airlock"; master_tag = "arrivals_dock"; pixel_y = -27; req_one_access = list(13); tag_airlock_mech_sensor = null; tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null; tag_shuttle_mech_sensor = null},/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"hCX" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/storage/box/pillbottles,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"hDc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hDe" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"hDz" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/cryopod{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"hDI" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"hEr" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"hEv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hEC" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"hEU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hGd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"hGu" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"hGX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"hHj" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"hHG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hIn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/storage/primary)
-"hIE" = (/turf/simulated/wall,/area/maintenance/medbay)
-"hIK" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"hIR" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"hJg" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = -27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"hJo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hJw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = list(28)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/hydroponics)
-"hJC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"hJU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Toxins Lab"; req_access = list(7)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/mixing)
-"hJX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"hKa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"hKF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"hKV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"hLg" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "tox_airlock_interior"; locked = 1; name = "Mixing Room Interior Airlock"; req_access = list(7)},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/mixing)
-"hLi" = (/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{frequency = 1379; id = "tox_airlock_pump"},/obj/machinery/air_sensor{frequency = 1430; id_tag = "toxins_mixing_interior"; output = 63; pixel_x = -8; pixel_y = -18},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"hLS" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; locked = 1; name = "Mixing Room Exterior Airlock"; req_access = list(7)},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/mixing)
-"hMr" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/sign/dock/two,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"hMv" = (/obj/machinery/air_sensor{frequency = 1430; id_tag = "toxins_mixing_exterior"; output = 63},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"hMB" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"hMG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"hMM" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"hMR" = (/obj/machinery/door/blast/regular{id = "mixvent"; name = "Mixer Room Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/mixing)
-"hNm" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor,/area/engineering/engine_waste)
-"hNv" = (/turf/simulated/wall,/area/storage/primary)
-"hNJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor,/area/engineering/engine_waste)
-"hNK" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/drone_fabricator/unify,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"hOi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"hOj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"hOu" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"hOK" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "lounge_window_tint"},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge)
-"hPl" = (/obj/machinery/lapvend{dir = 8; pixel_x = 5},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"hPt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/chapel/main)
-"hPC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"hPQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/drone_fabrication)
-"hPS" = (/obj/structure/table/standard,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"hPV" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"hPZ" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"hQg" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"hQJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/engineer_hallway)
-"hQY" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"hRr" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced/polarized{id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hop)
-"hRv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 10; icon_state = "4-10"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/engineer_hallway)
-"hSp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"hSM" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plating,/area/maintenance/locker)
-"hSQ" = (/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Medbay"; sortType = "Medbay"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"hTs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"hTu" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/effect/floor_decal/carpet/blue{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"hTx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"hTF" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 1; master_tag = null; name = "interior access button"; pixel_x = 27; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"hUh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"hUM" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"hUO" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = -27; req_one_access = null},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/button/ext_button,/obj/effect/map_helper/airlock/door/ext_door,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"hUT" = (/obj/structure/table/marble,/obj/machinery/cash_register/civilian{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.1; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"hVh" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fscenter)
-"hVN" = (/obj/item/weapon/tool/wrench,/obj/structure/table/glass,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/item/device/sleevemate,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/medical/cryo)
-"hVT" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/dockhallway)
-"hWv" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"hWw" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 2; d2 = 4; dir = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"hWE" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"hWO" = (/obj/structure/sink{pixel_y = 16},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"hXo" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/medical/virology)
-"hXA" = (/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"hXY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"hYp" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"hYq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"hYG" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"hYM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/research)
-"hYU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"hYY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Lounge"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/docking_lounge)
-"hZr" = (/turf/simulated/wall,/area/crew_quarters/seconddeck/artsupplies)
-"hZu" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"hZZ" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/bar)
-"iah" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/research)
-"ibt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/research)
-"ibC" = (/obj/structure/closet/crate/plastic,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/bar)
-"ibQ" = (/turf/simulated/floor/tiled,/area/holodeck_control)
-"ibY" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/patient_wing)
-"ich" = (/turf/simulated/wall,/area/rnd/lab)
-"icB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"idF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"idI" = (/turf/simulated/wall,/area/maintenance/substation/cargo)
-"idM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"idP" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"idT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"ief" = (/obj/structure/table/glass,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"iej" = (/turf/simulated/wall,/area/assembly/robotics)
-"ieG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/beacon,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"ifd" = (/turf/simulated/wall/r_wall,/area/assembly/robotics)
-"ifw" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/pink/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"ifD" = (/obj/structure/bed/chair/sofa/left/blue{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/vending/wallmed1{pixel_y = -30},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"ifO" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/rnd/misc_lab)
-"igH" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/floodlight,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"igN" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Miscellaneous Reseach Room"; req_access = list(); req_one_access = list(7,29)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/rnd/misc_lab)
-"ihl" = (/obj/machinery/cryopod{dir = 2},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"iho" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"ihz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ihG" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/circular_saw{pixel_y = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"ihH" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"iih" = (/turf/simulated/wall/r_wall,/area/rnd/misc_lab)
-"iio" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Server Room"; req_access = list(30)},/turf/simulated/floor/tiled/techmaint,/area/server)
-"iis" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w2_e_airlock"; landmark_tag = "d2_w2_e"; name = "Deck 2, Dock 2-E"},/turf/space,/area/space)
-"iiA" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"iiG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Sorting Office"; sortType = "Sorting Office"},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"iiQ" = (/obj/structure/sign/warning/server_room,/turf/simulated/wall/r_wall,/area/server)
-"ijc" = (/turf/simulated/wall/r_wall,/area/server)
-"ijr" = (/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ijz" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/hidden/universal{color = "#00ff00"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"ijR" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"ijU" = (/obj/random/trash,/turf/simulated/floor,/area/maintenance/bar)
-"ijW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"ikD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"ikG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ikX" = (/obj/machinery/vending/fitness,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay2)
-"ilk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"ilr" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/techmaint,/area/medical/cryo)
-"ily" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/structure/closet/radiation{anchored = 1; starts_with = list(/obj/item/clothing/suit/radiation=4,/obj/item/clothing/head/radiation=4,/obj/item/device/geiger=4)},/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"ilQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"ini" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"inE" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"ioL" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"ipd" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hydroponics)
-"ipq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"ipy" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"ipN" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"iqf" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = 25; pixel_y = -5},/obj/machinery/button/remote/blast_door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = 25; pixel_y = 5; req_access = list(7)},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"iqj" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/grey{dir = 8},/obj/structure/sign/deathsposal{icon_state = "falling"; pixel_y = -32},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"iqu" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"iqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"irj" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume{id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"irx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"irO" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/sparker{id = "mixingsparker"; pixel_x = -22},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"isq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"isR" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "Gallery"},/turf/simulated/floor/plating,/area/hydroponics)
-"itj" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/reinforced/airless,/area/rnd/mixing)
-"itK" = (/obj/machinery/atmospherics/pipe/cap/visible{color = "#444444"; dir = 1},/obj/machinery/atmospherics/pipe/cap/visible{color = "#ffcc00"; dir = 8},/turf/simulated/floor,/area/engineering/engine_waste)
-"iuA" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"iuX" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/computer/security/engineering{dir = 4; name = "Drone Monitoring Cameras"; network = list("Engineering")},/obj/machinery/camera/network/engineering{c_tag = "ENG - Drone Fabrication"; dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"ive" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"ivx" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"ivF" = (/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/dockhallway)
-"ivH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"iwp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/locker)
-"iwC" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"ixj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"ixU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"iya" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"izn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/structure/cable/yellow{d1 = 5; d2 = 10; icon_state = "5-10"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"izw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/machinery/iv_drip,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"izx" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"izS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering Workshop"; req_one_access = list(11,24)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop)
-"iAw" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/engineering/break_room)
-"iAD" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/machinery/ai_status_display{layer = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"iBu" = (/obj/structure/sink/puddle,/turf/simulated/floor/grass,/area/hydroponics)
-"iCs" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"iCy" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"iCB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/warehouse)
-"iCL" = (/turf/simulated/wall,/area/security/checkpoint2)
-"iCX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"iDz" = (/obj/machinery/conveyor{id = "recycler"},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"iEe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"iEr" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fscenter)
-"iEH" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iES" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iEX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iFy" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iFC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"iGf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iHF" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"iHG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"iHR" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hydroponics)
-"iIm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iIA" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/docking_hallway2)
-"iIG" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"iJh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"iJx" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iJG" = (/turf/simulated/floor/carpet/bcarpet,/area/library)
-"iJP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"iJT" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"iJY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/wall,/area/maintenance/substation/civilian)
-"iKa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/research)
-"iKg" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"iKn" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/smartfridge/sheets{density = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"iKA" = (/obj/machinery/autolathe,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"iKC" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"iKM" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/window/eastright,/obj/item/clothing/suit/space,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"iLb" = (/obj/structure/table/standard,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/steel{amount = 50},/obj/item/clothing/glasses/welding,/obj/machinery/camera/network/research{c_tag = "SCI - R&D Lab Fore"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/status_display{pixel_y = 32},/obj/item/stack/material/copper{amount = 25},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"iLw" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"iLA" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = -5},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 7},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"iMc" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/table/standard,/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/item/weapon/storage/belt/utility,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"iMo" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"iNa" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 8; name = "interior access button"; pixel_x = -7; pixel_y = -27},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"iNs" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"iOA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"iOI" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"iOS" = (/obj/machinery/vending/medical,/turf/simulated/floor/tiled/dark,/area/medical/medbay2)
-"iOW" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"iPq" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/lab)
-"iPs" = (/obj/structure/table/woodentable,/obj/machinery/atm{pixel_y = 30},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"iQe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"iQL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"iRP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/vending/hydronutrients{dir = 4; pixel_x = -5},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"iSo" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w3_c_airlock"; landmark_tag = "d2_w3_c"; name = "Deck 2, Dock 3-C"},/turf/space,/area/space)
-"iSq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"iSG" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; locked = 1; name = "Dock One Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{dir = 8; master_tag = null; name = "interior access button"; pixel_x = -7; pixel_y = -27},/obj/effect/map_helper/airlock/button/int_button,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"iSH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary)
-"iSR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/docking_hallway2)
-"iSS" = (/obj/structure/bed/chair/sofa/blue{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light{layer = 3},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"iUH" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/effect/landmark{name = "lightsout"},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"iUU" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_waste)
-"iVk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"iVx" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/assembly/robotics)
-"iVF" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"iVP" = (/obj/structure/closet{name = "materials"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/plasteel{amount = 10},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/item/stack/material/plastic{max_amount = 25},/obj/item/stack/material/plastic{max_amount = 25},/obj/item/stack/material/copper{amount = 25},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"iWj" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"iXo" = (/obj/structure/table/bench/glass,/obj/item/device/starcaster_news,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"iXv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"iXY" = (/obj/machinery/autolathe,/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"iYb" = (/obj/effect/floor_decal/sign/dock/three,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"iYs" = (/obj/machinery/computer/rdconsole/robotics,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"iYD" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"iYP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"iYZ" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"iZh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Central Access"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/docking_hallway2)
-"iZI" = (/obj/structure/closet/l3closet/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"iZV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"jaC" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"jaH" = (/obj/structure/table/standard,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"jaX" = (/obj/structure/table/standard,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/item/weapon/weldingtool/largetank,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"jbN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"jcd" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 30; pixel_y = -1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"jci" = (/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"jcM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"jdc" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/disposal)
-"jdw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"jdC" = (/obj/machinery/optable{name = "Robotics Operating Table"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"jeg" = (/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 1},/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/secondary/entry/D2)
-"jew" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"jeH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"jeI" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/computer/transhuman/resleeving,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"jfz" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/locker)
-"jfT" = (/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"jfW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"jgq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/remote/blast_door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_x = 6; pixel_y = 26; req_access = list(47)},/obj/machinery/button/ignition{id = "Xenobio"; pixel_x = -6; pixel_y = 26},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"jgt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"jgx" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/airless,/area/medical/genetics)
-"jgy" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47); state = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/rnd/misc_lab)
-"jgG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"jgH" = (/obj/structure/table/standard,/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/sparker{dir = 4; id = "Xenobio"; pixel_x = -25},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"jhW" = (/obj/structure/table/standard,/obj/item/device/assembly/igniter,/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"jim" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"jiH" = (/obj/structure/table/standard,/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"jiL" = (/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/server)
-"jiS" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/machinery/camera/network/research{c_tag = "SCI - Server Room"},/turf/simulated/floor/tiled/dark,/area/server)
-"jjH" = (/turf/simulated/wall,/area/medical/medical_restroom)
-"jjL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"jjV" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"jkg" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"jko" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/maintenance/cargo)
-"jkU" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft)
-"jlu" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"jlD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"jlK" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/rnd/mixing)
-"jlQ" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/office)
-"jmh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"jmu" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1430; name = "Mixing Chamber Monitor"; sensors = list("toxins_mixing_exterior"="Mixing Chamber - Exterior","toxins_mixing_interior"="Mixing Chamber - Interior")},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"jmx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"jmU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"jnc" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"jnl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/rnd/mixing)
-"jnp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"jnL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/medical{name = "Autoresleeving Bay"; req_one_access = null},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"jnX" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor,/area/engineering/engine_waste)
-"jow" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor,/area/maintenance/apmaint)
-"joH" = (/obj/machinery/door/airlock/research{name = "Genetics Isolation Room"; req_one_access = list(5,47)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/medical/genetics)
-"jpF" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor,/area/engineering/engine_waste)
-"jpG" = (/obj/machinery/door/blast/regular{id = "trash"; name = "disposal mass driver"},/turf/simulated/floor/airless,/area/maintenance/disposal)
-"jpX" = (/turf/simulated/wall/r_wall,/area/medical/medbay_primary_storage)
-"jqd" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/engine_waste)
-"jqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"jqu" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"jqw" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small{dir = 4},/obj/item/device/geiger/wall/east,/obj/machinery/atmospherics/binary/passive_gate/on{dir = 1; name = "Hot Loop Waste Gas pressure regulator"; regulate_mode = 1; target_pressure = 1500},/turf/simulated/floor,/area/engineering/engine_waste)
-"jqz" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D2)
-"jqO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/sign/dock/one,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock Hallway 1"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"jrE" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/drone_fabricator/unify,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"jrF" = (/obj/structure/bed/chair/comfy/black,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"jrS" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"jsn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"jsG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"jtu" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"jtC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Holodeck"},/turf/simulated/floor/tiled/steel_grid,/area/holodeck_control)
-"jtM" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"juu" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/circular_saw{pixel_y = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"jvl" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/engineer_hallway)
-"jvu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/chapel/office)
-"jwx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 5; d2 = 10; icon_state = "5-10"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/hallway/engineer_hallway)
-"jwC" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = 27; req_one_access = null},/obj/effect/map_helper/airlock/button/ext_button,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"jwD" = (/obj/structure/bed/chair/wheelchair,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"jwJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hazardvest,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/locker)
-"jwK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"jwT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"jxe" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/airlock_sensor{id_tag = null; pixel_y = 27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"jxs" = (/turf/simulated/wall,/area/crew_quarters/seconddeck/artgallery)
-"jxN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"jyb" = (/turf/simulated/wall,/area/medical/surgery_storage)
-"jyp" = (/obj/item/device/radio/intercom/department/medbay{pixel_y = -24},/obj/structure/table/standard,/obj/item/weapon/surgical/hemostat,/obj/item/weapon/surgical/cautery,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"jyC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/workshop)
-"jyK" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/candle_box,/turf/simulated/floor/carpet,/area/chapel/main)
-"jzf" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"jzA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"jzV" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/noticeboard{pixel_x = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"jAh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"jAm" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet,/obj/effect/floor_decal/carpet{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"jAR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"jAY" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"jBP" = (/obj/structure/closet/crate/hydroponics,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/bar)
-"jBV" = (/obj/structure/lattice,/obj/machinery/camera/network/engine{c_tag = "ENG - Waste Handling Exterior 1"; dir = 1},/turf/space,/area/space)
-"jCe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/reagent_dispensers/peppertank{pixel_y = -30},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = 32; pixel_y = -30},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"jCR" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"jDi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"jDs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"jDw" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/westright{name = "EVA Suit Storage"; req_access = newlist(); req_one_access = list(5,18)},/obj/item/weapon/rig/medical/equipped,/obj/structure/window/reinforced{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.6},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"jEc" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fscenter)
-"jEf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"jEj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"jEl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/stool,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"jEm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"jEn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"jFB" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"jFL" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"jGd" = (/obj/structure/table/marble,/obj/item/device/retail_scanner/civilian{dir = 1},/obj/machinery/door/blast/shutters{dir = 8; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/obj/effect/floor_decal/corner/brown/diagonal,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"jGK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/quartermaster/delivery)
-"jGV" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/locker)
-"jHa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"jHm" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"jHn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fscenter)
-"jHH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"jHO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"jIM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"jIY" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/docking_hallway2)
-"jJf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"jJi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"jJH" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CIV - Hydroponics Fore"},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"jKa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"jKf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"jKu" = (/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"jKM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue)
-"jKO" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"jLa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/research)
-"jLI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/computer/id_restorer{pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"jMa" = (/obj/structure/table/standard,/obj/random/toolbox,/obj/random/cigarettes,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tool,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/research)
-"jMb" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/machinery/button/windowtint{id = "chapel"; pixel_x = -11; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"jMe" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"jMn" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"jMO" = (/obj/structure/table/standard,/obj/random/tool,/obj/random/tool,/obj/item/frame,/turf/simulated/floor/plating,/area/maintenance/research)
-"jMS" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/apcenter)
-"jMY" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"jOR" = (/obj/structure/bedsheetbin,/obj/structure/table/steel,/obj/random/firstaid,/obj/random/firstaid,/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"jPg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"jPh" = (/obj/machinery/door/window/eastright{name = "Medical Reception"; req_access = list(5)},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"jPi" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"jPB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/computer/timeclock/premade/south,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"jPU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"jQa" = (/obj/structure/closet/secure_closet/security,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"jQo" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"jRr" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"jRN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"jRW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"jSi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"jSo" = (/obj/structure/closet/lasertag/red,/obj/item/stack/flag/red,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control)
-"jSL" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Hallway Starboard 2"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"jTu" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; locked = 1; name = "Dock One Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 1; master_tag = null; name = "interior access button"; pixel_x = -27; pixel_y = 7},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"jTH" = (/obj/structure/flora/pottedplant,/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"jUv" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/apmaint)
-"jUw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"jUx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/lab)
-"jUJ" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 9; name = "Reinforced Window Nugget"},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"jVI" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"jVL" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"jXa" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"jXg" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"jXw" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_y = -6},/obj/item/device/camera{name = "Autopsy Camera"; pixel_x = -2; pixel_y = 7},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = -9},/obj/item/weapon/pen/blue{pixel_x = 3; pixel_y = -5},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/turf/simulated/floor/tiled,/area/medical/morgue)
-"jXU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"jYe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"jYf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/airlock_sensor{id_tag = null; pixel_y = 27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "dock3_south_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"jYj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics)
-"jYp" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"jYr" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"jYC" = (/obj/structure/disposalpipe/segment,/obj/machinery/ai_status_display{pixel_x = 32},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"jYZ" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/ascenter)
-"jZo" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"jZp" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall,/area/medical/surgery2)
-"jZy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"jZL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artsupplies)
-"jZO" = (/obj/machinery/cryopod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"kal" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"kay" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/ai_status_display{pixel_x = -32},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"kaM" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kcc" = (/obj/structure/filingcabinet/chestdrawer{desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue)
-"kdg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/library)
-"kdq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kdL" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"ker" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"keQ" = (/obj/structure/table/standard,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"keY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"kff" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"kfI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"kfJ" = (/obj/structure/table/standard,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/storage/box/bodybags{pixel_x = -1; pixel_y = -2},/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/defib_kit/jumper_kit/loaded,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kfN" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"kfT" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"kfY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kgi" = (/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kgk" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"kgw" = (/obj/machinery/light,/obj/structure/sign/deck/second{pixel_y = -32},/obj/structure/window/reinforced{dir = 8; health = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"kgG" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
-"kha" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/table/gamblingtable,/obj/item/weapon/storage/dicecup/loaded,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"khr" = (/obj/machinery/camera/network/research{c_tag = "SCI - Robotics Starboard"; dir = 8},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"khA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"khW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/table/reinforced,/obj/item/clothing/glasses/science,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"kis" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"kiG" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"kjb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"kjI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/docking_hallway2)
-"kke" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"klh" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"klK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"klO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"klR" = (/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/stairwell)
-"kmi" = (/obj/structure/closet/crate/medical,/obj/item/weapon/surgical/surgicaldrill,/obj/item/weapon/surgical/FixOVein,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/scalpel,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/hemostat,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/surgical/bonegel,/obj/item/stack/nanopaste,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"kmj" = (/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/rnd/misc_lab)
-"kml" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"knz" = (/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/cargo)
-"knE" = (/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"knP" = (/obj/structure/table/glass,/obj/item/roller,/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"kot" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/server)
-"kow" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/server)
-"koD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"koF" = (/obj/machinery/computer/rdservercontrol{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/dark,/area/server)
-"kpx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"kqp" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"kqH" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/lino,/area/chapel/office)
-"kqI" = (/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = -6},/obj/item/paint_palette{pixel_x = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -4; pixel_y = -5},/obj/item/paint_brush{pixel_x = -6; pixel_y = -1},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"krH" = (/obj/structure/dispenser,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"krQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"krZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"ksd" = (/obj/structure/bed/chair/sofa/blue{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/medical/medbay2)
-"kse" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"kst" = (/obj/structure/dogbed,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"ktt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"ktK" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"kux" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"kuT" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"kvq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"kwy" = (/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"kwC" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Hydroponics"; sortType = "Hydroponics"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"kwY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"kxM" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"kyt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"kzp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/obj/structure/flora/pottedplant/orientaltree,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"kzs" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"kzz" = (/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"kzA" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/blast/regular{id = "EngineEmitterPortWest"; layer = 3.3; name = "Engine Waste Handling Access"},/turf/simulated/floor,/area/engineering/engine_room)
-"kzO" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"kzX" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/computer/drone_control{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"kAh" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/computer/cryopod/robot{pixel_x = 30},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"kAo" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/yellow{d1 = 2; d2 = 5; icon_state = "2-5"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"kAw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"kBX" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"kCe" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"kCp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access = list(5)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/medical/foyer)
-"kCx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"kDd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"kDj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"kDy" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/quartermaster/delivery)
-"kDK" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/BMinus,/obj/item/weapon/reagent_containers/blood/BPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"kEp" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"kEy" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/structure/fans/tiny,/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 4; name = "exterior access button"; pixel_x = 7; pixel_y = 27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"kEz" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced/polarized{id = "chapeloffice"},/turf/simulated/floor/plating,/area/chapel/office)
-"kFC" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 1; frequency = 1380; id_tag = "escape_dock_south_airlock"; master_tag = "escape_dock"; pixel_y = -27; req_one_access = list(13); tag_airlock_mech_sensor = null; tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null; tag_shuttle_mech_sensor = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/machinery/atmospherics/unary/vent_pump/high_volume,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"kFH" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"kFY" = (/obj/structure/table/steel,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"kGf" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"kGU" = (/obj/structure/sign/directions/recreation{pixel_y = 2},/turf/simulated/wall,/area/crew_quarters/seconddeck/artgallery)
-"kGV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"kHj" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"kHl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"kHv" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"kHB" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w3_e_airlock"; landmark_tag = "d2_w3_e"; name = "Deck 2, Dock 3-E"},/turf/space,/area/space)
-"kHE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"kHG" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"kIt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"kII" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning/high_voltage{pixel_y = -32},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"kJg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/station_map{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"kJY" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/light/small,/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/machinery/atmospherics/unary/vent_pump/high_volume,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"kKp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"kKF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/fscenter)
-"kLg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"kLl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/navbeacon/patrol{location = "CH1"; next_patrol = "CH2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kLo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kLv" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Aft Hallway 3"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"kLB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/navbeacon/patrol{location = "CH12"; next_patrol = "SEC"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kLD" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kLG" = (/obj/machinery/turretid/stun{check_records = 0; control_area = "\improper Teleporter"; name = "Teleporter turret control"; pixel_y = -24; req_access = list(17)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kLW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kMi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"kMj" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/machinery/status_display{pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kMw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kNS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"kOl" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"kOM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kOQ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"kOS" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"kPk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Civilian Substation"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"kPr" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/navbeacon/patrol{location = "CH11"; next_patrol = "CH12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"kPH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Hallway Starboard 1"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"kPK" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"kPL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/research)
-"kQG" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/research)
-"kQH" = (/obj/machinery/r_n_d/protolathe,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/acid{pixel_x = -30},/turf/simulated/floor/tiled,/area/rnd/lab)
-"kQV" = (/turf/simulated/floor/tiled,/area/rnd/lab)
-"kRu" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/lab)
-"kRR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/meter,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"kSs" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"kSu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"kSM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"kTh" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/rnd/lab)
-"kTo" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"kTt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"kTw" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"kTR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"kTT" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/item/device/flash,/obj/item/device/flash,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/machinery/camera/network/research{c_tag = "SCI - Robotics Port"; dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kUt" = (/obj/structure/bed/chair/sofa/left/blue{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"kUD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kVv" = (/turf/simulated/floor/tiled,/area/assembly/robotics)
-"kVy" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"kVB" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock 2 Fore"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"kVF" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics)
-"kVL" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kWB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"kXd" = (/obj/machinery/chemical_dispenser/full,/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/beige/border{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"kXk" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/storage/primary)
-"kXm" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kYA" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kYN" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/disposal)
-"kZv" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"kZG" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"lal" = (/obj/random/trash,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"las" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light{dir = 4},/obj/machinery/transhuman/resleever,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"laQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/junk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/cargo)
-"lbd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/closet/crate,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar/red,/obj/machinery/computer/security/telescreen{desc = "Used to monitor the proceedings inside the test chamber."; name = "Test Chamber Monitor"; network = list("Miscellaneous Reseach"); pixel_x = -32; pixel_y = -4},/obj/machinery/camera/network/research{c_tag = "SCI - Miscellaneous Research"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"lbo" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"lbI" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"lbW" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/door/window/westright{name = "Test Chamber"; req_one_access = list(7,29)},/obj/machinery/door/window/eastleft{name = "Test Chamber"; req_one_access = list(7,29)},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/rnd/misc_lab)
-"lbX" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"lce" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"lci" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/camera/network/research{c_tag = "SCI - Miscellaneous Test Chamber"; dir = 8; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"ldX" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/dark,/area/server)
-"lfa" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/server)
-"lfq" = (/obj/machinery/computer/message_monitor{dir = 8},/turf/simulated/floor/tiled/dark,/area/server)
-"lgj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"lgm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"lgv" = (/obj/effect/landmark/start{name = "Intern"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/storage/primary)
-"lhc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue)
-"lhG" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge{scrub_id = "Toxins"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/rnd/mixing)
-"lhH" = (/turf/simulated/shuttle/wall/no_join{base_state = "orange"; icon = 'icons/turf/shuttle_orange.dmi'; icon_state = "orange"},/area/shuttle/cryo/station)
-"lhV" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"liq" = (/turf/simulated/floor/tiled,/area/rnd/mixing)
-"liI" = (/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/docking_hallway2)
-"ljh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/beige/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"ljr" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"lju" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"ljE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Locker Room"; req_access = list(5)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/medical/medical_lockerroom)
-"ljU" = (/obj/machinery/portable_atmospherics/canister,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"lki" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room)
-"lks" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"lkw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = list(1)},/turf/simulated/floor/tiled/steel_grid,/area/security/checkpoint2)
-"lkA" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/valve/digital/open{name = "Hot Loop Waste Gas Management Switch"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 32; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_room)
-"lkC" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"lkD" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/valve/digital{dir = 4; name = "secondary TEG valve"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"lkL" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"lkQ" = (/obj/machinery/door/airlock{name = "Library Office"; req_access = list(37)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/library)
-"llb" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"llk" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"llv" = (/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/obj/machinery/clonepod/transhuman/full,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"llH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"lnf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Cargo Access"},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/foyer)
-"lnq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"lns" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/drone_fabrication)
-"lnx" = (/obj/machinery/disease2/diseaseanalyser,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"lnJ" = (/obj/structure/table/steel,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/cautery,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/morgue)
-"lnN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Drone Fabrication"; sortType = "Drone Fabrication"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"lod" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/structure/table/glass,/obj/item/roller,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"lox" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"lpd" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"lpo" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"lrp" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"lrE" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor,/area/maintenance/bar)
-"lrG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Aft"; dir = 4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"lsm" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/steel,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/device/floor_painter,/obj/item/device/multitool{pixel_x = 5},/obj/item/device/t_scanner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/workshop)
-"lsH" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"lsM" = (/obj/machinery/computer/security{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"lte" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"ltg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ltX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access = list(56)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/chief)
-"luv" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/engineering/foyer)
-"lux" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/evac,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"luQ" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; frequency = 1380; id_tag = "d2_w2_e_airlock"; pixel_x = -27; req_one_access = list(13)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"luY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"lvy" = (/obj/item/weapon/cane,/obj/item/weapon/cane{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cane{pixel_x = -6; pixel_y = 4},/obj/structure/table/steel,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/rxglasses,/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"lvF" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/obj/structure/morgue{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue)
-"lvX" = (/obj/machinery/pointdefense{id_tag = "PD Main"},/turf/simulated/floor/airless,/area/space)
-"lwA" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/item/device/radio/headset/headset_med,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/item/weapon/storage/box/pillbottles,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/beige/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"lxe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"lxR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineeringatmos{name = "Engineering Break Room"; req_one_access = list(10)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room)
-"lxX" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"lxY" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; locked = 1; name = "Dock One Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{dir = 8; master_tag = null; name = "interior access button"; pixel_x = -7; pixel_y = 27},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"lyb" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/engineering/break_room)
-"lyB" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"lyG" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/structure/filingcabinet,/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/library)
-"lzd" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"lAh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"lAv" = (/turf/simulated/wall,/area/maintenance/substation/central)
-"lAW" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"lBG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"lCW" = (/obj/structure/sign/department/cargo,/turf/simulated/wall/r_wall,/area/maintenance/cargo)
-"lEm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 8; frequency = 1380; id_tag = "d2_w1_e_airlock"; pixel_x = 27; req_one_access = list(13)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"lFC" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"lFN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Central Substation"; req_one_access = list(11,19,24)},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"lFS" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"lGf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"lGm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"lGR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"lHu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/aft)
-"lIk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"lIC" = (/obj/machinery/computer/timeclock/premade/south,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"lIY" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"lJh" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/chair/sofa/right/brown{layer = 2.9},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"lJn" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"lJs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"lKa" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter)
-"lKh" = (/turf/simulated/wall,/area/hallway/secondary/entry/docking_lounge)
-"lKi" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2_w1_c_airlock"; pixel_y = 27; req_one_access = list(13)},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"lKy" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hydroponics)
-"lLj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access = list(17); req_one_access = list(17)},/turf/simulated/floor/tiled/steel_grid,/area/teleporter)
-"lLl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_medical{name = "First-Aid Station"; req_access = newlist(); req_one_access = newlist()},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/first_aid_station/seconddeck/port)
-"lLD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/turf/simulated/floor/lino,/area/chapel/office)
-"lMb" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"lMf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"lMn" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 2"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"lMw" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light{dir = 4},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"lMA" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Cargo"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"lNm" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"lNx" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"lNS" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"lOw" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/research)
-"lOW" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/lab)
-"lPn" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"lPq" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/monotile,/area/rnd/lab)
-"lPI" = (/obj/machinery/computer/rdconsole/core{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/lab)
-"lQm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"lQC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"lRj" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 1},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"lRy" = (/obj/structure/closet/wardrobe/medic_white,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"lRD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"lRF" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"lRG" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research)
-"lRJ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"lRO" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria)
-"lSA" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen Cold Room"; dir = 1},/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"lTp" = (/obj/machinery/vending/cola{dir = 1},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"lTu" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"lTw" = (/obj/structure/table/glass,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"lTy" = (/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"lTB" = (/obj/machinery/mecha_part_fabricator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/assembly/robotics)
-"lTI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"lTM" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"lUp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/steel_reinforced,/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/obj/item/device/mmi/digital/robot,/turf/simulated/floor/tiled,/area/assembly/robotics)
-"lUr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"lUA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair/office/light,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"lUC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"lUX" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"lUZ" = (/obj/machinery/mecha_part_fabricator/pros,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/assembly/robotics)
-"lVd" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"lVs" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"lVD" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/structure/closet/emcloset,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"lVX" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"lWH" = (/turf/simulated/wall/r_wall,/area/medical/surgery2)
-"lWR" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/flora/pottedplant/smallcactus,/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"lXn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"lXu" = (/obj/structure/table/reinforced,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"lXK" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/standard,/obj/item/weapon/storage/box/backup_kit,/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics)
-"lYj" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/light/small{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"lYK" = (/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/medical/virology)
-"lYO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics)
-"lZV" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/structure/morgue,/turf/simulated/floor/tiled,/area/medical/morgue)
-"maC" = (/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics)
-"maU" = (/obj/machinery/transhuman/synthprinter,/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics)
-"mbl" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"mby" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"mbG" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"mbH" = (/obj/effect/floor_decal/industrial/warning/cee,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/door/window/westleft{name = "Test Chamber"; req_one_access = list(7,29)},/obj/machinery/door/window/eastright{name = "Test Chamber"; req_one_access = list(7,29)},/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/rnd/misc_lab)
-"mco" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/medical/medbay2)
-"mcs" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "n2_in"; use_power = 1},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"mcw" = (/obj/structure/closet/crate,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/medical,/obj/random/medical,/obj/structure/loot_pile/surface/medicine_cabinet{pixel_y = 25},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"mcI" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Intern"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/storage/primary)
-"mdj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"},/turf/simulated/floor/tiled/steel_grid,/area/medical/patient_wing)
-"mdq" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"men" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"mfe" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/junk,/turf/simulated/floor,/area/engineering/engine_room)
-"mff" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"mfz" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/aft)
-"mfB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/morgue)
-"mga" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"mgb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/server_room{pixel_x = -32},/turf/simulated/floor/plating,/area/server)
-"mgk" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"mgO" = (/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/door/window/northright{name = "Server Room"; req_access = list(30)},/obj/machinery/door/window/southleft{name = "Server Room"; req_access = list(30)},/turf/simulated/floor/tiled/dark,/area/server)
-"mhd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/locker)
-"mhL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"mif" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/server)
-"mij" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"miQ" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge{scrub_id = "Toxins"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/rnd/mixing)
-"miS" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"miZ" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westleft{name = "Security Checkpoint"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"mjw" = (/obj/structure/closet/l3closet/medical,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"mjR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue)
-"mkd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"mkf" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"mkW" = (/obj/structure/closet/secure_closet/psych,/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"mkX" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light/small{dir = 1},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"mlF" = (/obj/machinery/atmospherics/omni/mixer{tag_east = 2; tag_east_con = null; tag_north = 1; tag_north_con = 0.5; tag_south_con = null; tag_west = 1; tag_west_con = 0.5; use_power = 0},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"mma" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/obj/machinery/camera/network/research{c_tag = "SCI - Toxins Lab 2"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"mmn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/pink/border{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"mmq" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 6; tag_west = 1; use_power = 0},/turf/simulated/floor/tiled,/area/rnd/mixing)
-"mmE" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"mmQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"mnf" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/mixing)
-"mnu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/effect/floor_decal/corner_steel_grid{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"mnB" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Quartermaster"},/obj/machinery/button/remote/blast_door{id = "crglockdown"; name = "Cargo Lockdown"; pixel_x = -24; pixel_y = -26; req_access = list()},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"mnK" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/pipe/cap/visible{color = "#00ff00"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"mnN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/light/small,/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"mol" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_x = -28},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"mor" = (/obj/machinery/holosign/bar{id = "baropen"},/turf/simulated/wall,/area/crew_quarters/cafeteria)
-"mou" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor,/area/engineering/engine_room)
-"moG" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_north = 2; tag_south = 4; tag_west = 1; use_power = 0},/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/sign/warning/nosmoking_2{pixel_x = 32},/obj/effect/engine_setup/atmo_filter,/turf/simulated/floor/plating,/area/engineering/engine_room)
-"moH" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/item/device/geiger/wall/west,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"mpx" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"mqa" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/drone_fabrication)
-"mqh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"mqZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera/network/engineering{c_tag = "ENG - Engineering Hallway 2"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"mre" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36; pixel_y = -6},/obj/machinery/button/windowtint{id = "pr2_window_tint"; pixel_x = 36; pixel_y = 6},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"mrF" = (/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; layer = 2.8},/obj/machinery/airlock_sensor{pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/sign/warning/vacuum{pixel_y = -32},/turf/simulated/floor/airless,/area/chapel/main)
-"mrU" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "Filtered Waste-to-Canister pump"},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/engineering/engine_waste)
-"mss" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"msv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/chapel/office)
-"msX" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"mti" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/machinery/light{dir = 4},/obj/machinery/ai_status_display{pixel_x = 32},/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"mtC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/construction/seconddeck/construction1)
-"mut" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"muM" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/engineering/foyer)
-"muO" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"mvC" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"myc" = (/obj/machinery/camera/network/engine{c_tag = "ENG - Waste Handling Exterior 2"; dir = 8},/turf/space,/area/space)
-"myg" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2_w3_b_airlock"; pixel_y = 27; req_one_access = list(13)},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"myp" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"myq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"myv" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"myw" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/cargo)
-"myK" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"myX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{pixel_y = 23},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"mza" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"mzG" = (/obj/structure/curtain/open/shower/engineering,/obj/machinery/door/window/westleft{name = "Shower"},/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/turf/simulated/floor/tiled/freezer,/area/engineering/engi_restroom)
-"mAe" = (/obj/structure/table/woodentable,/obj/item/device/paicard,/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"mAg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"mAU" = (/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"mAZ" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"mBH" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"mCf" = (/obj/machinery/chemical_dispenser/full,/obj/machinery/status_display{pixel_y = 32},/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/beige/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"mDJ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"mDM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/central)
-"mDZ" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Central Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/central)
-"mEe" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"mEp" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/central)
-"mEB" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/chemistry)
-"mEJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance Access"; req_one_access = list(12,19)},/turf/simulated/floor/plating,/area/maintenance/central)
-"mES" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/teleporter)
-"mFk" = (/obj/machinery/vending/loadout,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"mFN" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"mFY" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"mGz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"mHl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"mHY" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar/red,/obj/machinery/camera/network/command{c_tag = "COM - Teleporter"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/teleporter)
-"mId" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/bar)
-"mIz" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/chapel/main)
-"mJB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_medical{name = "Chemistry Laboratory"; req_access = list(33)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/medical/chemistry)
-"mKm" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/table/standard,/obj/item/device/radio/beacon,/obj/item/device/radio/beacon,/obj/random_multi/single_item/hand_tele,/turf/simulated/floor/tiled,/area/teleporter)
-"mKo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"mKr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"mKs" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"mKw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/locker)
-"mKx" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"mLK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"mLP" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D2)
-"mMD" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"mNf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/research)
-"mNt" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/research)
-"mNL" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"mNU" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/tool/powermaint,/turf/simulated/floor/plating,/area/maintenance/research)
-"mOo" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"mOp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "cryostorage_shuttle_berth"; name = "cryostorage shuttle berth controller"; pixel_x = -26; req_access = list(19); tag_door = "cryostorage_shuttle_berth_hatch"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"mOr" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"mOu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"mOG" = (/turf/simulated/wall,/area/hydroponics)
-"mOZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"mPt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"mPD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"mQg" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"mQY" = (/turf/simulated/wall/r_wall,/area/medical/medbay)
-"mRD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"mRM" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"mSd" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"mSi" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"mSD" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"mTb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"mTn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"mTv" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"mTy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"mTO" = (/obj/machinery/computer/HolodeckControl{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
-"mTP" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/floor_decal/spline/fancy/wood/cee,/turf/simulated/floor/carpet/oracarpet,/area/library)
-"mTV" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"mUi" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"mVe" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"mVk" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"mVG" = (/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/beehive,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hydroponics)
-"mWi" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"mWD" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/storage/primary)
-"mWH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"mWR" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/assembly/robotics)
-"mXo" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/newscaster{pixel_x = 30},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"mXK" = (/turf/simulated/wall,/area/assembly/chargebay)
-"mYK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_research{name = "Mech Bay"; req_access = list(29)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"mYL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Mech Bay"; req_access = list(29)},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"mYU" = (/turf/simulated/wall/r_wall,/area/assembly/chargebay)
-"mZe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"mZG" = (/obj/structure/closet/bombcloset,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"mZR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"mZU" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = 27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"naj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/construction/seconddeck/construction1)
-"nak" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"naz" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"naC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"naX" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/rnd/misc_lab)
-"nbk" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"nby" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay2)
-"nbA" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "medbayrecquar"; name = "Medbay Emergency Quarantine Shutters"; opacity = 0},/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"ncb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"ncm" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server)
-"ncv" = (/turf/simulated/floor/tiled/dark{nitrogen = 500; oxygen = 0; temperature = 80},/area/server)
-"ncQ" = (/obj/item/toy/eight_ball,/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"ncU" = (/obj/structure/sign/directions/library{dir = 5},/obj/structure/sign/directions/chapel{dir = 1; pixel_y = 10},/turf/simulated/wall,/area/library)
-"nev" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server)
-"neW" = (/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 32; pixel_y = 4},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"ngb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"ngi" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Medbay Equipment"; req_access = list(5)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_primary_storage)
-"ngt" = (/turf/simulated/floor/airless,/area/medical/virology)
-"nhc" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/engineering/engine_room)
-"nhd" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; use_power = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/medical/virology)
-"nhE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"niK" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"njG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "holodeck_tint"},/turf/simulated/floor/plating,/area/holodeck_control)
-"nke" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/marble,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"nkI" = (/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/engineering/workshop)
-"nkN" = (/obj/machinery/computer/security/telescreen{desc = "Used to monitor the engine room."; layer = 3.3; name = "Engine Monitor"; network = list("Engine"); pixel_y = -34},/obj/machinery/computer/atmos_alert{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"nmN" = (/obj/structure/cryofeed{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"nns" = (/obj/structure/sign/directions/cryo{dir = 8},/turf/simulated/wall/r_wall,/area/hallway/secondary/docking_hallway2)
-"nnD" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/t_scanner,/obj/structure/closet/hydrant{pixel_y = -32},/turf/simulated/floor/plating,/area/maintenance/locker)
-"nnG" = (/obj/structure/lattice,/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"nnN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"noj" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Chief Engineer's Office"; dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = -44; specialfunctions = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = -44},/obj/machinery/keycard_auth{pixel_y = -24},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -34; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = -34; req_access = list(10)},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"nom" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"nor" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"nou" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Office"},/obj/machinery/newscaster{pixel_x = 30},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/button/windowtint{id = "library_window_tint"; pixel_x = -14; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/closet/secure_closet{anchored = 1; desc = "It's an immobile card-locked storage unit. A note on the door reads: It's dangerous to go alone. This should help a little bit."; name = "Press Locker"; req_one_access = list(21,37)},/obj/item/clothing/shoes/boots/combat{desc = "A pair of steel-toed synthleather boots. The tag indicates this pair belongs to the Librarian."; name = "press combat boots"},/obj/item/clothing/shoes/boots/combat{desc = "A pair of steel-toed synthleather boots. The tag indicates this pair belongs to the Librarian."; name = "press combat boots"},/obj/item/clothing/under/suit_jacket/navy/skirt,/obj/item/clothing/under/suit_jacket/navy,/obj/item/clothing/gloves/swat{desc = "These tactical gloves are somewhat fire and impact-resistant. The tag within indicates that this pair belongs to the Librarian."; name = "press gloves"},/obj/item/clothing/gloves/swat{desc = "These tactical gloves are somewhat fire and impact-resistant. The tag within indicates that this pair belongs to the Librarian."; name = "press gloves"},/obj/item/clothing/suit/storage/vest/press,/obj/item/clothing/suit/storage/vest/press,/obj/item/clothing/head/helmet{desc = "Standard issue gear for frontline press. Protects the head from impacts."; name = "press helmet"},/obj/item/clothing/head/helmet{desc = "Standard issue gear for frontline press. Protects the head from impacts."; name = "press helmet"},/obj/item/clothing/accessory/armor/helmcover/navy,/obj/item/clothing/accessory/armor/helmcover/navy,/turf/simulated/floor/carpet,/area/library)
-"noZ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/chief)
-"npa" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/button/remote/blast_door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = 26; req_access = list(28)},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36; pixel_y = -6},/obj/machinery/button/holosign{id = "baropen"; name = "Open Sign"; pixel_x = 36; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"npf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/effect/wingrille_spawn/reinforced/polarized{id = "ceoffice"},/turf/simulated/floor,/area/crew_quarters/heads/sc/chief)
-"npg" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/engineering/break_room)
-"nql" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"nqs" = (/obj/structure/sign/warning/docking_area,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"nqK" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fpcenter)
-"nqY" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"nrg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"nrm" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Central Subgrid"; name_tag = "Central Subgrid"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"nsS" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ntH" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/central)
-"ntX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies)
-"nuH" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Central"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/central)
-"nuJ" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"nve" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar)
-"nvr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/medical{name = "Operating Theatre Storage"; req_access = list(45)},/obj/structure/fans/hardlight/colorable{light_color = "#D7D7D7"},/turf/simulated/floor/tiled/steel_grid,/area/medical/surgery_storage)
-"nvX" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood/cee{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"nwc" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/table/glass,/obj/structure/backup_implanter_ch{pixel_y = 8},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"nwl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"nwn" = (/obj/effect/floor_decal/carpet{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"nws" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"nxC" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/window/southright{name = "Hydroponics Delivery"; req_access = list(35)},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics)
-"nxR" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/obj/machinery/button/remote/blast_door{id = "chemcounter"; name = "Pharmacy Counter Lockdown Control"; pixel_x = 10; pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "chemwindow"; name = "Pharmacy Window Shutter Control"; pixel_x = -10; pixel_y = 30},/obj/machinery/chemical_dispenser/biochemistry/full,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"nxW" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/docking_hallway2)
-"nyl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{pixel_x = 36},/obj/structure/cable/green,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"nyy" = (/obj/machinery/atmospherics/pipe/tank/air{start_pressure = 4559.63},/turf/simulated/floor/plating,/area/maintenance/central)
-"nyM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics)
-"nyO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"nzm" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 1; frequency = 1380; id_tag = "escape_dock_ssouth_airlock"; master_tag = "escape_dock"; pixel_y = -27; req_one_access = list(13); tag_airlock_mech_sensor = null; tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null; tag_shuttle_mech_sensor = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"nAI" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/central)
-"nAW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"nBr" = (/obj/structure/firedoor_assembly,/obj/item/tape/engineering,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"nBE" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"nCC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"nCH" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/medical/cryo)
-"nCU" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"nDk" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/teleporter)
-"nDA" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/teleporter)
-"nDH" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/teleporter)
-"nDN" = (/turf/simulated/wall,/area/medical/patient_a)
-"nDS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/teleporter)
-"nEh" = (/obj/machinery/bluespace_beacon,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/teleporter)
-"nEo" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/teleporter)
-"nES" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 4; name = "interior access button"; pixel_x = 7; pixel_y = -27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"nFa" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/teleporter)
-"nFo" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/table/marble,/obj/item/weapon/storage/box/glasses/coffeecup{pixel_x = -6; pixel_y = 1},/obj/item/weapon/storage/box/glasses/coffeemug{pixel_x = -6; pixel_y = 12},/obj/item/weapon/storage/box/glasses/square{pixel_x = 9; pixel_y = 1},/obj/item/weapon/storage/box/buns{pixel_x = 9; pixel_y = 12},/obj/item/weapon/storage/box/buns{pixel_x = 9; pixel_y = 12},/obj/machinery/light,/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/beige/border{dir = 6},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"nFz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"nFE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"nFF" = (/turf/simulated/wall/r_wall,/area/medical/medical_restroom)
-"nGq" = (/turf/simulated/floor/plating,/area/maintenance/bar)
-"nGr" = (/turf/simulated/wall/r_wall,/area/medical/patient_b)
-"nGH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"nHe" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/construction/seconddeck/construction1)
-"nHi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"nHJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"nHS" = (/obj/machinery/computer/secure_data{dir = 4},/obj/item/device/radio/intercom/department/security{dir = 8; icon_override = "secintercom"; pixel_x = -21},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"nHY" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/oracarpet,/area/library)
-"nId" = (/obj/structure/morgue,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue)
-"nIS" = (/obj/structure/table/standard,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box{pixel_y = 11},/obj/item/weapon/storage/box{pixel_y = 11},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -22},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"nIT" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"nIW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/holodeck_control)
-"nIX" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/flame/lighter/zippo,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"nJh" = (/turf/simulated/floor/tiled,/area/engineering/locker_room)
-"nJW" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"nKk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"nKE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"nKR" = (/obj/random/obstruction,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/research)
-"nLg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/landmark{name = "Observer-Start"},/obj/effect/landmark/start,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"nMj" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall,/area/crew_quarters/seconddeck/artgallery)
-"nMm" = (/obj/structure/table/woodentable,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/tool/screwdriver,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{desc = "Talk... lisssssten through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"nMn" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"nMv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/effect/wingrille_spawn/reinforced/polarized{id = "lounge_window_tint"},/turf/simulated/floor/plating,/area/hallway/secondary/entry/docking_lounge)
-"nNE" = (/obj/structure/bed/chair/office/light,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"nNL" = (/obj/structure/table/steel,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/device/gps/medical{pixel_x = -8},/obj/item/device/gps/medical{pixel_x = -4},/obj/item/device/gps/medical,/obj/item/device/gps/medical{pixel_x = 4},/obj/item/device/gps/medical{pixel_x = 8},/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled,/area/medical/medbay_emt_bay)
-"nPc" = (/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"nPL" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"nPX" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"nQk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/lockerroom)
-"nQn" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"nRd" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westleft{name = "Research and Development Desk"; req_access = list(7)},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"nRC" = (/obj/structure/closet/lasertag/blue,/obj/item/stack/flag/blue,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control)
-"nSd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"nSe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"nSo" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"nSw" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/industrial/outline/grey,/obj/item/device/radio/beacon,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"nSC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"nSF" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westright{name = "Chemistry Desk"},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access = list(33)},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "chemcounter"; name = "Pharmacy Counter Shutters"; opacity = 0},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"nSJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"nST" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"nTb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"nTF" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastleft{name = "Robotics Desk"; req_access = list(29)},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"nUb" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/locker)
-"nUh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"nVx" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"nVA" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light{dir = 8},/turf/simulated/floor/grass,/area/hydroponics)
-"nVE" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"nVW" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"nWH" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "quart_tint"},/turf/simulated/floor/plating,/area/quartermaster/qm)
-"nWL" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"nWN" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/assembly/chargebay)
-"nXl" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/cell_charger,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"nYb" = (/obj/structure/table/standard,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/item/weapon/tool/crowbar,/turf/simulated/floor/plating,/area/maintenance/bar)
-"nYj" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"nYo" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"nYu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/assembly/chargebay)
-"nYw" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"nYz" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/holodeck_control)
-"nYH" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"nYU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/assembly/chargebay)
-"nZq" = (/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"nZx" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"nZy" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"nZA" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"nZD" = (/obj/structure/bed/chair/sofa/blue{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"nZE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall,/area/quartermaster/delivery)
-"nZM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab)
-"nZY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"oaL" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Gallery Starboard"; dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"obf" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47); state = 1},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "misclab"; name = "Test Chamber Blast Doors"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/rnd/misc_lab)
-"obg" = (/obj/structure/closet/emcloset,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/item/weapon/tool/crowbar/red,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"obp" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"obG" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"obI" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"obR" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"oce" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"oct" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/reinforced,/area/rnd/misc_lab)
-"ocw" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/holodeck_control)
-"ode" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Delivery Office"; dir = 8; name = "security camera"},/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"odi" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/computer/cloning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"odS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"oev" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server)
-"oew" = (/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"ofv" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/dark{nitrogen = 500; oxygen = 0; temperature = 80},/area/server)
-"ofD" = (/obj/machinery/door/blast/regular{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/chapel/main)
-"ogH" = (/obj/structure/bed/chair/wheelchair,/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"ogN" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"oht" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"ohF" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server)
-"ohP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"ohV" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"oie" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"oip" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"oiA" = (/turf/simulated/wall/r_wall,/area/rnd/workshop)
-"oiQ" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"ojj" = (/obj/machinery/computer/rdconsole/core,/obj/effect/floor_decal/borderfloorblack{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"ojk" = (/obj/structure/table/steel,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"ojP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/vending/wallmed1{pixel_x = 25},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"okh" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/pipe/cap/visible{color = "#00ff00"; dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"okq" = (/obj/structure/table/bench/wooden,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/oracarpet,/area/library)
-"okt" = (/obj/machinery/iv_drip,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"oku" = (/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/corner/green/border{dir = 5},/obj/structure/sign/poster{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"okO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/wall,/area/maintenance/locker)
-"okR" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/tiled,/area/library)
-"okZ" = (/turf/simulated/wall,/area/rnd/workshop)
-"olj" = (/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"olr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"olH" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/structure/fans/tiny,/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 4; name = "exterior access button"; pixel_x = 7; pixel_y = -27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"omq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/warehouse)
-"omu" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"onb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"ond" = (/obj/structure/table/glass,/obj/machinery/light{dir = 1},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"ooC" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"ooQ" = (/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"ooT" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/seconddeck/research_medical)
-"ooY" = (/obj/machinery/light{dir = 4},/obj/machinery/status_display/supply_display{pixel_x = 32},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"opg" = (/obj/item/weapon/material/ashtray/glass,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"opo" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/packageWrap,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"opM" = (/turf/simulated/wall/r_wall,/area/medical/virology)
-"opU" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"oqh" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"oqz" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/virology)
-"oqA" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"oqS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Medical Restroom"; req_access = list(5)},/turf/simulated/floor/tiled/steel_grid,/area/medical/medical_restroom)
-"oqY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"oqZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"orf" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"orq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"orB" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/obj/machinery/camera/network/civilian{c_tag = "CIV - Holodeck Control"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
-"orP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"osg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"osw" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/security/checkpoint2)
-"osH" = (/obj/machinery/computer/med_data/laptop,/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"otn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ots" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"otO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"ouo" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"ouA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Central Substation"; req_one_access = list(11,19,24)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/central)
-"ouT" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/central)
-"ovw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/central)
-"owy" = (/obj/machinery/atmospherics/valve{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/maintenance/central)
-"owO" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"owQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"oxg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"oxE" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"oxN" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"oxO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter)
-"oyi" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/item/weapon/packageWrap,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"oyA" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "crg_aft_pump"},/obj/machinery/airlock_sensor{id_tag = "crg_aft_sensor"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor,/area/maintenance/cargo)
-"oyS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter)
-"ozl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/teleporter)
-"ozL" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"oAV" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/freezer{name = "Kitchen cold room"; req_access = list(28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/fans/hardlight/colorable{light_color = "#D7D7D7"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/kitchen)
-"oBh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter)
-"oBy" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/teleporter)
-"oBX" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"oCh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fscenter)
-"oCj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Delivery Office Maintenance"; req_access = list(50)},/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"oCL" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"oDg" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"oDE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"oEb" = (/obj/structure/closet/crate,/obj/item/clothing/gloves/boxing/green,/obj/item/clothing/gloves/boxing,/turf/simulated/floor/plating,/area/maintenance/bar)
-"oEk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access = list(32)},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/construction/seconddeck/construction1)
-"oEU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"oFM" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 3"; dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"oGb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/research)
-"oGx" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth"},/turf/simulated/floor/tiled/techmaint,/area/chapel/main)
-"oHb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"oHE" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/research)
-"oHO" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"oHP" = (/obj/structure/closet/crate,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/powercell,/obj/random/powercell,/obj/random/powercell,/turf/simulated/floor/plating,/area/maintenance/research)
-"oIc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"oIs" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"oIX" = (/obj/item/weapon/folder/white,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/camera/network/research{c_tag = "SCI - R&D Lab Aft"; dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"oJi" = (/obj/machinery/recharger,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/machinery/ai_status_display{pixel_y = -32},/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"oJo" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/lab)
-"oJW" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"oKd" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"oKu" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"oKT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"oMg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"oNr" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"oNJ" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/turf/simulated/floor,/area/engineering/engine_room)
-"oOz" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"oOB" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Foyer"; dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Robotics"; sortType = "Robotics"},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"oPy" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"oPJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/cargo)
-"oQj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"oQz" = (/obj/machinery/computer/guestpass{pixel_y = -30},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/turf/simulated/floor/tiled/white,/area/rnd/research_foyer)
-"oRM" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/assembly/robotics)
-"oRX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"oSr" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"oSv" = (/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"oTe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"oTP" = (/obj/structure/table/standard,/obj/structure/reagent_dispensers/acid{pixel_y = -30},/obj/machinery/recharger,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"oTS" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/lime/bordercorner,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"oTZ" = (/obj/structure/closet/hydrant{pixel_x = -32},/obj/item/clothing/glasses/meson,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"oUx" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"oUC" = (/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet{name = "welding equipment"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"oUG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 4; name = "interior access button"; pixel_x = 7; pixel_y = 27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"oVc" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"oVe" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/machinery/camera/network/civilian{c_tag = "CIV - Gallery Port"; dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"oVk" = (/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet{name = "robotics parts"},/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"oVE" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/assembly/robotics)
-"oVW" = (/obj/machinery/mech_recharger,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"oWK" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/assembly/chargebay)
-"oWW" = (/turf/simulated/floor/tiled/techfloor,/area/assembly/chargebay)
-"oXt" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Coffee Shop"; dir = 9},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"oXN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/cargo)
-"oYz" = (/obj/machinery/mech_recharger,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"oZp" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 21},/obj/machinery/newscaster{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"oZL" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Research Maintenance Access"; req_one_access = list(7,29)},/turf/simulated/floor/plating,/area/rnd/misc_lab)
-"oZN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"oZU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"pac" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"paJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/locker)
-"pbb" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"pbd" = (/obj/structure/bookcase/bookcart,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"pbh" = (/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"pbi" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/pen/multi,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"pbP" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"pce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"pcD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"pcG" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"pcH" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"pda" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/apcenter)
-"pdw" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"pdU" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"pdX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"pes" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/machinery/newscaster{pixel_x = 30},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"pex" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"peA" = (/obj/item/stack/rods,/obj/structure/lattice,/obj/structure/grille/broken,/turf/space,/area/space)
-"peJ" = (/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"peT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock 3 Fore"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"pft" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/wood,/area/crew_quarters/bar)
-"pfB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"pfJ" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Autoresleeving Bay"; dir = 4},/obj/machinery/atm{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"pfT" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"pfY" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pfZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"pgN" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pgW" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"pgX" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/extinguisher,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"phg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Chemistry"; sortType = "Chemistry"},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"pho" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"phA" = (/obj/structure/table/glass,/obj/item/roller,/obj/machinery/light{dir = 4},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pix" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/newscaster{pixel_x = -36},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"piE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"piG" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 4; name = "exterior access button"; pixel_x = 7; pixel_y = -27; req_one_access = null},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"piO" = (/obj/structure/table/woodentable,/obj/item/device/paicard,/obj/effect/floor_decal/carpet/blue{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"pjG" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"pjT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"pkK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"pli" = (/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Gallery"; sortType = "Gallery"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"plk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"plu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"plF" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/airlock_sensor{dir = 1; frequency = 1380; id_tag = "escape_dock_north_sensor"; pixel_y = -27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"plL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/central)
-"pmd" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"pmh" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Teleport Access"; req_access = list(17)},/turf/simulated/floor/plating,/area/teleporter)
-"pmo" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"pmJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Utility Down"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"pnz" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "escape_dock_south_sensor"; pixel_y = 27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"pnB" = (/obj/structure/flora/ausbushes/palebush,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"pnQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"pnY" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"pog" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"pov" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/machinery/power/smes/batteryrack/mapped,/turf/simulated/floor/airless,/area/space)
-"poy" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"poC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"poL" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"ppc" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay)
-"ppW" = (/obj/machinery/atmospherics/valve/shutoff{name = "Deck 2 Starboard automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/research)
-"pqw" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/lockerroom)
-"pqA" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"pqG" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/research)
-"pru" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/maintenance/research)
-"psn" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"pss" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"psR" = (/turf/simulated/wall/r_wall,/area/rnd/research_foyer)
-"ptE" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"pux" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"puy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Research Access"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research_foyer)
-"puG" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorblack{dir = 9},/obj/effect/floor_decal/corner/beige/border{dir = 9},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"puL" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor,/area/engineering/engine_waste)
-"puY" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/research_foyer)
-"pvD" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay)
-"pvH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/recharge_station,/obj/machinery/button/remote/blast_door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_y = -26; req_access = list(29)},/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"pwf" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 4; name = "exterior access button"; pixel_x = 7; pixel_y = 27; req_one_access = null},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"pwV" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"pwY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/assembly/chargebay)
-"pxb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"pxc" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/recharge_station,/obj/machinery/camera/network/research{c_tag = "SCI - Mech Bay"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"pxs" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"pxL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"pyN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"pyR" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pzf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"pzi" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"pzF" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"pzW" = (/turf/simulated/wall/r_wall,/area/maintenance/research_medical)
-"pAj" = (/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/locker)
-"pAz" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"pAG" = (/obj/structure/closet/crate,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/item/stack/tile/floor/white,/obj/random/powercell,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pAQ" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pBm" = (/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pBr" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/item/stack/cable_coil,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pBw" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pBE" = (/obj/machinery/papershredder,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"pBG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"pCO" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/meter,/turf/simulated/floor,/area/maintenance/cargo)
-"pCR" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pDg" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/button/windowtint{id = "psyco_tint"; pixel_x = 11; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -11; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"pDh" = (/obj/structure/closet/crate,/obj/random/bomb_supply,/obj/random/bomb_supply,/obj/random/bomb_supply,/obj/random/tech_supply,/obj/random/technology_scanner,/obj/random/tool,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"pDo" = (/obj/machinery/door/firedoor/border_only,/obj/structure/lattice,/obj/structure/cable/green{d1 = 32; d2 = 8; icon_state = "32-8"},/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 8},/obj/structure/catwalk,/turf/simulated/open,/area/maintenance/research_medical)
-"pDF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"pEa" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"pEj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"pEF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"pEH" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/evac,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"pFu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"pFE" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westright{name = "Mailing Room"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"pFH" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Aft"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"pFV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"pFW" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"pGf" = (/obj/machinery/conveyor{id = "garbage"},/turf/simulated/floor,/area/maintenance/disposal)
-"pGs" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"pGB" = (/obj/structure/sign/warning/server_room,/turf/simulated/wall/r_wall,/area/rnd/workshop)
-"pHl" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"pHx" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorblack/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"pHZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"pIi" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/airlock_sensor{dir = 4; id_tag = null; pixel_x = -27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"pIm" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"pIs" = (/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/stairwell)
-"pIG" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room)
-"pIK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"pIS" = (/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/obj/structure/reagent_dispensers/acid{pixel_x = 30},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"pJD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"pLC" = (/obj/machinery/door/window/westleft{name = "Shower"},/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/structure/curtain/open/shower/medical,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"pMt" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"pMu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"pMv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"pMy" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"pMF" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/cash,/turf/simulated/floor,/area/maintenance/cargo)
-"pMH" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"pMI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"pMR" = (/obj/structure/sign/deck/second,/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/dockhallway)
-"pMZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/techmaint,/area/medical/cryo)
-"pNa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"pNf" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pNL" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"pOe" = (/obj/machinery/vending/loadout/uniform,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"pOh" = (/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pOp" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/dockhallway)
-"pOA" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/obj/structure/cable/orange{d1 = 2; d2 = 5; icon_state = "2-5"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway)
-"pOD" = (/obj/machinery/smartfridge/secure/virology,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pOM" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pOQ" = (/obj/machinery/iv_drip,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"pOW" = (/obj/structure/table/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool,/obj/machinery/camera/network/cargo{c_tag = "CRG - Cargo Office Port"; name = "security camera"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"pPc" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/bed/double,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pPd" = (/obj/item/device/geiger/wall/south,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"pPn" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "aft_starboard_pump"},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"pPq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"pPG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"pPU" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room)
-"pQe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"pQo" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue)
-"pQD" = (/obj/machinery/computer/diseasesplicer{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"pQK" = (/obj/machinery/light,/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"pRA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"pRG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"pRJ" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = -27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"pSe" = (/obj/structure/table/gamblingtable,/obj/effect/floor_decal/carpet{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"pTK" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"pTR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor,/area/engineering/engine_room)
-"pUi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D1)
-"pUo" = (/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -1; pixel_y = 17},/obj/effect/floor_decal/corner/brown/diagonal,/obj/item/weapon/storage/box/donut{pixel_x = 3; pixel_y = -4},/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"pUs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"pUA" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"pUX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"pVe" = (/obj/structure/closet/secure_closet/paramedic,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"pVG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; id_tag = "engine_airlock_interior"; name = "Engine Airlock Interior"; req_access = list(11)},/turf/simulated/floor,/area/engineering/engine_airlock)
-"pVZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"pWn" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"pWr" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_airlock)
-"pWH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; id_tag = "engine_airlock_exterior"; name = "Engine Airlock Exterior"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock)
-"pWU" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"pXi" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"pXr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"pXv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/lockerroom)
-"pXH" = (/obj/machinery/door/window/westleft{name = "Engineering Delivery"; req_access = list(10)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"pXX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"pYE" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/door/blast/shutters{dir = 8; id = "coffeeshop"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"pZY" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/machinery/navbeacon/delivery/west{location = "Engineering"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"qaC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"qbq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"qbw" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"qbR" = (/obj/machinery/access_button{master_tag = null; name = "exterior access button"; pixel_x = 27; pixel_y = -7},/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"qbZ" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"qcm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"qcn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/cap/visible{color = "#00ff00"; dir = 1},/turf/simulated/floor,/area/engineering/engine_room)
-"qco" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock Hallway 4"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"qcZ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"qdU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"qev" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Utility Down"; req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"qeI" = (/obj/structure/closet/crate/plastic,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"qeJ" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"qfA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Dock"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D1)
-"qgb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/shield_diffuser,/obj/structure/sign/department/medbay{pixel_x = -32},/turf/simulated/floor/airless,/area/maintenance/medbay)
-"qgm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"qim" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"qiq" = (/obj/machinery/autolathe,/obj/machinery/alarm{pixel_y = 23},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"qjH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/trash,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"qjZ" = (/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"qkk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"qkB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fpcenter)
-"qkD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/dockhallway)
-"qkK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"qkP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"qkR" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/bar)
-"qkT" = (/obj/structure/table/steel,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"qkX" = (/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/railing/grey{dir = 8},/obj/machinery/door/window/southright{dir = 1; name = "Recycling Chute"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"qlc" = (/obj/structure/bed/chair{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"qle" = (/turf/simulated/wall,/area/maintenance/locker)
-"qlp" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"qlF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_hallway)
-"qmc" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"qmn" = (/turf/simulated/floor/tiled/monotile,/area/quartermaster/warehouse)
-"qmt" = (/turf/simulated/wall,/area/storage/emergency_storage/seconddeck/central_emergency)
-"qmD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"qmX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"qnA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"qnP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/library)
-"qom" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/central)
-"qoI" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/industrial/teleport_defense{req_one_access = list(17)},/turf/simulated/floor/tiled/dark,/area/teleporter)
-"qoN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/steel,/area/quartermaster/lockerroom)
-"qoX" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/teleporter)
-"qoZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"qpz" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"qpO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/research)
-"qqA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/research)
-"qqJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/research)
-"qrI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access = list(6)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/medical/morgue)
-"qrR" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"qsk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/monofloor{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"qsK" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue)
-"qtb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"qtk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"qtn" = (/obj/structure/closet/secure_closet/personal/patient,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/computer/security/telescreen/entertainment{layer = 4; pixel_y = -32},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"qtD" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"qtO" = (/obj/item/weapon/material/shard{icon_state = "medium"},/obj/item/stack/rods,/turf/simulated/floor/plating,/area/maintenance/research)
-"qtY" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research)
-"quz" = (/obj/structure/closet,/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/research)
-"quD" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/port_emergency)
-"quL" = (/turf/simulated/floor/wood/alt/parquet,/area/library)
-"quO" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"qvr" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/medbay{c_tag = "MED - Patient Ward Port"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"qvK" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/carpet/bcarpet,/area/library)
-"qwb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"qws" = (/obj/structure/closet/secure_closet/medical2,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"qwB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{id_tag = "cmodoor"; name = "CMO's Office"; req_access = list(40)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/cmo)
-"qwK" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; name = "Waste Gas Purge pump"; target_pressure = 15000},/turf/simulated/floor,/area/engineering/engine_waste)
-"qxa" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/warning/secure_area{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"qxf" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/maintenance/cargo)
-"qxk" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"qxn" = (/obj/item/glass_jar,/obj/random/mob/mouse,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"qxp" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"qxs" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/medbay_primary_storage)
-"qxU" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"qya" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/camera/network/engineering{c_tag = "SUBS - Medical"},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"qyg" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/science{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"qyX" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"qzu" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"qzH" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"qAa" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"qAy" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"qAA" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"qAJ" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/patient_a)
-"qAW" = (/obj/machinery/door/blast/shutters{dir = 2; id = "Skynet_launch"; name = "Mech Bay"},/obj/machinery/door/firedoor/multi_tile,/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"qBe" = (/obj/machinery/door/blast/shutters{dir = 2; id = "Skynet_launch"; name = "Mech Bay"},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay)
-"qBg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qBY" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 8},/obj/structure/sign/directions/security{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/apcenter)
-"qCZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qDj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"qDV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qEt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qEG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"qFw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"qFB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qFK" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/camera/network/civilian{c_tag = "CIV - Primary Tool Storage"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/storage/primary)
-"qGw" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qHW" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qIw" = (/obj/structure/sign/warning/docking_area,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"qIz" = (/obj/machinery/light,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"qIV" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{dir = 1; master_tag = null; name = "interior access button"; pixel_x = 27; pixel_y = 7},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"qJk" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qJx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"qJT" = (/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{dir = 4; master_tag = null; name = "exterior access button"; pixel_x = 7; pixel_y = -27},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"qKm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"qKC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"qKE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{layer = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"qLq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"qLC" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/effect/landmark/start{name = "Chef"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"qLX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/docking_hallway2)
-"qMI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qNz" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D3)
-"qNE" = (/turf/simulated/wall/r_wall,/area/medical/medical_lockerroom)
-"qOl" = (/obj/structure/table/bench/wooden,/obj/structure/flora/pottedplant/small{pixel_y = 9},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/library)
-"qOT" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"qPt" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"qPw" = (/obj/structure/table/rack{dir = 1},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"qPz" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"qPU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"qQv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"qQJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"qQL" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"qSA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/workshop)
-"qSS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"qTx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"qTK" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"qUd" = (/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/docking_hallway2)
-"qUo" = (/obj/random/junk,/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"qVR" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/cups,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Fore"; dir = 4},/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"qWb" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"qWW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"qWZ" = (/obj/item/trash/candle,/turf/simulated/floor/plating,/area/maintenance/locker)
-"qXc" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary)
-"qXP" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"qYe" = (/obj/structure/table/glass,/obj/item/device/antibody_scanner{pixel_x = 2; pixel_y = 2},/obj/item/device/antibody_scanner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"qYm" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/machinery/vending/wallmed1{dir = 8; pixel_x = 25; pixel_y = -1},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"qYN" = (/obj/structure/table/steel,/obj/item/weapon/reagent_containers/food/drinks/glass2/rocks,/obj/item/weapon/reagent_containers/food/drinks/glass2/rocks,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"qYO" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/medical/virology)
-"qZd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"qZe" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"qZK" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"qZT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"rae" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"ral" = (/obj/machinery/airlock_sensor{id_tag = null; pixel_y = 27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"raN" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/mob/living/simple_mob/animal/passive/cat/runtime,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"raZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/medical/virology)
-"rby" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/obj/machinery/shield_diffuser,/turf/simulated/floor/airless,/area/medical/virology)
-"rbU" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core 1"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"rbZ" = (/obj/structure/closet/emcloset,/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"rcp" = (/turf/simulated/shuttle/wall/hard_corner,/area/shuttle/cryo/station)
-"rcG" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor,/area/engineering/engine_room)
-"rcV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/airlock_sensor/airlock_interior{id_tag = "eng_al_int_snsr"; master_tag = "engine_room_airlock"; pixel_x = 22; req_access = list(10)},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"ref" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"rev" = (/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"reH" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"reJ" = (/obj/structure/table/steel,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/item/device/sleevemate,/obj/item/weapon/storage/box/bodybags,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/medical/morgue)
-"rfd" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"rfQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"rfR" = (/turf/simulated/wall,/area/library)
-"rgn" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"rgL" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"rhj" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"rhm" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"rhX" = (/obj/item/weapon/stool/padded,/turf/simulated/floor,/area/maintenance/disposal)
-"rii" = (/obj/machinery/ai_status_display{pixel_x = 32},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel,/area/quartermaster/lockerroom)
-"rir" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"ris" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"riG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/engineering)
-"riV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"rkp" = (/obj/machinery/vending/cola{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/fpcenter)
-"rkS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/green/bordercorner2,/obj/effect/floor_decal/corner/green/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"rkX" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"rlr" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"rmd" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter)
-"rmy" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/camera/network/medbay{c_tag = "MED - Genetics Isolation Room"; dir = 8},/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"rmM" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"rnx" = (/obj/structure/flora/ausbushes/stalkybush,/obj/machinery/light,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"roo" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/locker)
-"roJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/research)
-"roS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/research)
-"rpY" = (/obj/structure/window/reinforced,/obj/item/stack/rods,/obj/item/stack/rods,/obj/item/weapon/material/shard,/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"rqw" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Aft Hallway 5"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"rqM" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"rra" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/emergency,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"rrh" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"rrB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/chapel)
-"rrL" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/library)
-"rsf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"rsq" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"rsK" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"rsM" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research)
-"rtk" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_l"},/turf/simulated/floor/airless,/area/shuttle/cryo/station)
-"rtr" = (/obj/machinery/light/small,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research)
-"rtw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"rty" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/briefcase,/obj/item/weapon/storage/briefcase,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/item/weapon/book/codex/lore/news,/obj/item/device/tvcamera,/turf/simulated/floor/carpet,/area/library)
-"rtA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/research)
-"rtL" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/machinery/smartfridge/drying_rack{dir = 8; pixel_x = -4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"rtP" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"rtT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"ruc" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/seed_storage/garden{dir = 4; pixel_x = -5},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"rue" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/vending/wallmed1{dir = 1; name = "NanoMed Wall"; pixel_y = -24},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"ruN" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"rvu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"rwe" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/holodeck_control)
-"rwl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"rwm" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/structure/table/glass,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"rwP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"rxj" = (/obj/machinery/computer/cryopod{pixel_x = -32},/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"rxD" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"rxI" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"ryn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"ryI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery)
-"rzk" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"rzu" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rzK" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rzN" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"rAm" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rAq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"rAK" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rBr" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rBv" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rBy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rCx" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"rCN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/locker)
-"rCT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/robotics)
-"rDi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/bar)
-"rDu" = (/obj/structure/table/rack,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/clothing/glasses/meson,/obj/random/maintenance/cargo,/obj/random/cash,/turf/simulated/floor,/area/maintenance/bar)
-"rDB" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Hydroponics Aft"; dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"rDC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"rDG" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"rEb" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced/polarized{id = "pr2_window_tint"},/turf/simulated/floor/plating,/area/medical/patient_b)
-"rEd" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"rEl" = (/turf/simulated/wall/r_wall,/area/medical/biostorage)
-"rEq" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"rEG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"rEJ" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/starboard)
-"rEL" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = -27; req_one_access = null},/obj/effect/map_helper/airlock/button/ext_button,/obj/effect/map_helper/airlock/door/ext_door,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"rEZ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/flora/pottedplant/dead,/turf/simulated/floor/plating,/area/maintenance/locker)
-"rFo" = (/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"rFO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"rFY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"rGo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"rGT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/locker)
-"rGX" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/retractor,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"rHm" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor_switch{id = "disposalsorter"; name = "Disposal Sorter"; pixel_y = 2},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"rHy" = (/obj/effect/floor_decal/chapel,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"rHH" = (/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"rHN" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"rId" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"rIm" = (/obj/machinery/ai_status_display,/turf/simulated/shuttle/wall/no_join,/area/shuttle/cryo/station)
-"rIA" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"rIN" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"rIW" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/space)
-"rJB" = (/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"rKm" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/curtain/open/privacy,/turf/simulated/floor/tiled/steel_grid,/area/medical/cryo)
-"rKn" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/pink/border{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"rKQ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"rLs" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"rLH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"rLZ" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Holodeck Port"; dir = 4},/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck)
-"rMh" = (/obj/structure/closet/emcloset,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/research_medical)
-"rMJ" = (/obj/machinery/atmospherics/tvalve/digital{dir = 8; name = "Filtered Waste Gas Ejection Switch"},/turf/simulated/floor,/area/engineering/engine_waste)
-"rMM" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research)
-"rMY" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "aft_starboard_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "aft_starboard_airlock"; pixel_x = 25; req_access = null; tag_airpump = "aft_starboard_pump"; tag_chamber_sensor = "aft_starboard_sensor"; tag_exterior_door = "aft_starboard_outer"; tag_interior_door = "aft_starboard_inner"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"rNn" = (/obj/structure/table/standard,/obj/fiftyspawner/plastic,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/fiftyspawner/cardboard,/obj/item/device/threadneedle,/obj/item/device/threadneedle{pixel_y = 5},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"rOI" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/item/device/starcaster_news,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"rOO" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue)
-"rOX" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"rPr" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/steel,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"rPK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/research)
-"rQu" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/green/border,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"rQx" = (/obj/machinery/camera/network/research{c_tag = "SCI - Workshop"; dir = 1},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"rQF" = (/obj/structure/bed/chair/sofa/right/brown{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/artgallery)
-"rQI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"rRc" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery)
-"rRg" = (/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind,/obj/random/maintenance/research,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/rnd/workshop)
-"rRk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/vending/loadout/loadout_misc,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"rRD" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/super{pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"rRH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/bar)
-"rSd" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"rSH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Surgery Storage"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"rTr" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"rTw" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"rTO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"rUA" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"rVs" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"rWc" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"rWs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/northright{name = "Virology Isolation Room"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"rXg" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"rXE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"rXO" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"rXR" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Foyer"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"rXY" = (/turf/simulated/wall/r_wall,/area/chapel/main)
-"rYk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"rYB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"rYG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery)
-"rYP" = (/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/patient_wing)
-"rZA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance Access"; req_one_access = list(11,24)},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/hallway/engineer_hallway)
-"rZG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"rZK" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"saz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"saJ" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"sbj" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/holodeck_control)
-"sbk" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 8; frequency = 1380; id_tag = "d2_w3_e_airlock"; pixel_x = 27; req_one_access = list(13)},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"sbr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/chapel)
-"sbw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"sbL" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area/space)
-"sbU" = (/obj/structure/closet/crate/freezer,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"sbX" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 4; name = "interior access button"; pixel_x = 7; pixel_y = 27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"sbZ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{name = "light switch "; pixel_x = 36},/obj/structure/cable,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/disposal)
-"scm" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"scv" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room)
-"scT" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"sdb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"sdq" = (/obj/structure/sign/directions/medical{dir = 4},/obj/structure/sign/directions/security{dir = 4; pixel_y = 10},/turf/simulated/wall,/area/maintenance/apmaint)
-"sdA" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"sdE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"sdR" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock 2 Aft"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"seD" = (/obj/machinery/door/airlock/external{frequency = 1380; id_tag = "cryostorage_shuttle_hatch"; name = "Cryogenic Storage Hatch"},/obj/structure/fans/tiny,/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"seI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"seO" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/fpcenter)
-"seX" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"sfi" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fpcenter)
-"sfv" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"sfD" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/holodeck_control)
-"sfI" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/central_emergency)
-"sfU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/central)
-"sga" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"sgx" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"sgY" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D2)
-"shc" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"shy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"shB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/research)
-"shD" = (/obj/machinery/disposal,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/white,/area/medical/cryo)
-"shQ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"shU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"sib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"siq" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 10},/obj/structure/sign/directions/science{dir = 1},/turf/simulated/wall,/area/maintenance/robotics)
-"skd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/effect/wingrille_spawn/reinforced/polarized{id = "chapel"},/turf/simulated/floor/plating,/area/chapel/main)
-"skp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"skB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"slm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"smo" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"smA" = (/turf/simulated/floor/plating,/area/maintenance/locker)
-"snu" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"snD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/table/standard,/obj/item/weapon/storage/rollingpapers,/obj/item/weapon/storage/rollingpapers,/obj/item/weapon/storage/rollingpapers/blunt,/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"soy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/medical/patient_wing)
-"soz" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"soA" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Library"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/library)
-"soW" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"spx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/deck/second{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"spQ" = (/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{dir = 4; master_tag = null; name = "exterior access button"; pixel_x = 7; pixel_y = 27},/obj/effect/map_helper/airlock/button/ext_button,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"sqd" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/starboard)
-"sql" = (/turf/unsimulated/mask,/area/hallway/primary/seconddeck/starboard)
-"sqI" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"sqJ" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/construction/seconddeck/construction1)
-"srt" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/medical/patient_wing)
-"srF" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"srU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"ssC" = (/obj/structure/easel,/obj/item/canvas/twentythree_nineteen,/obj/machinery/camera/network/civilian{c_tag = "CIV - Gallery Aft"; dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery)
-"ssH" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"ssO" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/table/rack{dir = 1},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"ssP" = (/obj/machinery/door/airlock/research{name = "Research Access"; req_access = list(47)},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research)
-"ssW" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"stb" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"stp" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"str" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"stu" = (/obj/machinery/optable,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"stG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"stH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"sup" = (/obj/machinery/papershredder,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"svD" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"svX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sxa" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall/r_wall,/area/engineering/engine_waste)
-"sxh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"sxu" = (/obj/structure/closet/crate/internals,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"sxI" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/locker)
-"sxZ" = (/obj/machinery/light,/obj/structure/closet/emcloset,/obj/machinery/button/crematorium{id = "Chapelburn"; pixel_x = -10; pixel_y = -20},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"syd" = (/obj/effect/floor_decal/carpet{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"syk" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/closet/emcloset,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"syJ" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/hand_labeler,/obj/structure/reagent_dispensers/virusfood{pixel_x = 30},/obj/item/device/radio/intercom/department/medbay{pixel_y = 40},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"syM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"syU" = (/turf/simulated/wall,/area/maintenance/engineering)
-"szj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"szk" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/sink/kitchen{pixel_y = 17},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"szJ" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/engineering/engine_room)
-"szT" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"sAd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"sAg" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"sAC" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/item/weapon/storage/box/glasses/square,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/storage/box/body_record_disk,/turf/simulated/floor/tiled/white,/area/medical/reception)
-"sAH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"sBv" = (/obj/structure/table/steel,/obj/machinery/recharger,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled/dark,/area/quartermaster/office)
-"sBI" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"sCg" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"sCt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 28},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"sCy" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/locker)
-"sCB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"sCE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"sCT" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = 4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/teapot{pixel_x = -5; pixel_y = 1},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"sCV" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/grass,/area/hydroponics)
-"sDc" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/item/clothing/shoes/syndigaloshes,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"sDg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"sEv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"sEx" = (/turf/simulated/wall/r_wall,/area/maintenance/bar)
-"sFt" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"sFE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"sFM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/engineering)
-"sFN" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{req_one_access = list(25,28)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop)
-"sFQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"sGc" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"sGr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"sGG" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"sHn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"sHK" = (/obj/structure/bed/chair/wheelchair,/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 21},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"sIk" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"sIp" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"sIs" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"sIQ" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"sJp" = (/obj/machinery/libraryscanner,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"sJI" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sKq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"sKv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/medical/sleeper)
-"sKG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sKT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sLS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sLV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"sMp" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"sMt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sMJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"sNg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/navbeacon/patrol{location = "CH3"; next_patrol = "ENG"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"sOC" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/central)
-"sOI" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/locker)
-"sOZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"sPi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"sPy" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"sPZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"sQm" = (/obj/effect/floor_decal/steeldecal/monofloor{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"sQN" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"sRC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"sRD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"sRL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"sRN" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"sSi" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/starboard)
-"sSl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sSp" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"sTb" = (/obj/structure/morgue,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue)
-"sUb" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"sUh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sUt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sUz" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/camera/network/medbay{c_tag = "MED - Patient Room B"; dir = 8},/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/computer/security/telescreen/entertainment{layer = 4; pixel_y = -32},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"sVp" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w3_a_airlock"; landmark_tag = "d2_w3_a"; name = "Deck 2, Dock 3-A"},/turf/space,/area/space)
-"sWi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sWJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sXo" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sXG" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/starboard)
-"sXK" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"sYg" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"sYW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"sZg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"sZj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"sZC" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/cargo)
-"taM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"taU" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"tbc" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"tbL" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "psyco_tint"},/turf/simulated/floor/plating,/area/medical/psych)
-"tce" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Starboard Hallway 3"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"tdm" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"tdq" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"tdv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"tdJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"tdP" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"teh" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop)
-"tfd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/bar)
-"tfi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"tfo" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"tft" = (/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/starboard)
-"tfv" = (/obj/structure/ladder,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"tfw" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"tfB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/seed_extractor,/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"tfF" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/hallway/secondary/seconddeck/research_medical)
-"tfG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/machinery/camera/network/medbay{c_tag = "MED - Joint Hallway Access"; dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"tgb" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"tgd" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "Biohazard"; name = "Biohazard Shutter"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"tge" = (/obj/machinery/vending/cigarette{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"tgj" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/engineering/engine_room)
-"thh" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"thu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"thF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue)
-"thH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"tiT" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"tiZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"tjD" = (/obj/structure/table/standard,/obj/structure/flora/pottedplant/small{pixel_y = 10},/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"tku" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"tkz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"tkH" = (/turf/simulated/wall,/area/engineering/engi_restroom)
-"tlw" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"tlx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"tmd" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary)
-"tna" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 32; icon_state = "32-1"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/turf/simulated/open,/area/maintenance/substation/cargo)
-"tnO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "crg_aft_pump"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor,/area/maintenance/cargo)
-"toq" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"tos" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"toM" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"toU" = (/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/warning/secure_area{pixel_y = 32},/obj/machinery/camera/network/medbay{c_tag = "MED - Joint Hallway"; dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"toY" = (/obj/structure/table/woodentable,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/item/weapon/pen,/obj/item/weapon/book/codex/lore/news,/obj/effect/floor_decal/carpet/blue{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"tpu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"tpy" = (/obj/machinery/chemical_synthesizer,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"tpH" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled/steel,/area/medical/virology)
-"tpX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "medbayrecquar"; name = "Medbay Emergency Quarantine Shutters"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"tqH" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop)
-"tqM" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"trt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"trL" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"trT" = (/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"tso" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"ttq" = (/obj/machinery/shower{dir = 8; pixel_x = -5},/obj/structure/curtain/open/shower/medical,/turf/simulated/floor/tiled/freezer,/area/medical/virology)
-"ttx" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"ttQ" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"ttW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"tuj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/glass{name = "Central Access"},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/docking_hallway2)
-"tuI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = -26; req_access = list(5)},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"tuX" = (/obj/structure/bed/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Examination Room"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"tvh" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/button/windowtint{id = "holodeck_tint"; pixel_x = -11; pixel_y = 24; range = 14},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control)
-"tvT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"twa" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/storage/primary)
-"twc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"twh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"two" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"txi" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"txk" = (/turf/simulated/wall/r_wall,/area/maintenance/locker)
-"txI" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/medical/sleeper)
-"txX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"tye" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"tyL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"tyQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"tyZ" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"tzP" = (/obj/machinery/disease2/isolator,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"tAj" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"tAt" = (/obj/machinery/mass_driver{dir = 8; id = "enginecore"},/obj/machinery/power/supermatter{layer = 4},/obj/effect/engine_setup/core,/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room)
-"tAA" = (/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"tBz" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "engine_sensor"; output = 63},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room)
-"tBE" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/structure/closet/medical_wall{pixel_y = -31},/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/pill_bottle/spaceacillin,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"tBM" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"tBN" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"tBO" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{id = "SupermatterPort"; layer = 3.3; name = "Reactor Blast Door"},/turf/simulated/floor,/area/engineering/engine_room)
-"tBR" = (/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2/arrivals)
-"tCI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"tCR" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"tDn" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"tDO" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/crew_quarters/seconddeck/artsupplies)
-"tDS" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/engineering/engine_waste)
-"tDT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"tEa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/chapel/office)
-"tEK" = (/obj/structure/lattice,/obj/structure/sign/directions/ladder_up{dir = 1; name = "\improper Up One Deck"; pixel_y = 24},/obj/structure/sign/directions/eva{dir = 1; pixel_y = 30},/obj/structure/sign/directions/command{dir = 1; pixel_y = 36},/turf/space,/area/space)
-"tEP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor,/area/engineering/engine_monitoring)
-"tFJ" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = -6; pixel_y = -3; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Reactor Blast Doors"; pixel_x = -6; pixel_y = 7; req_access = list(10)},/obj/machinery/button/remote/emitter{desc = "A remote control-switch for the engine emitter."; id = "EngineEmitter"; name = "Engine Emitter"; pixel_x = 6; pixel_y = 2; req_access = list(10)},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/engine_setup/shutters,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"tGS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"tHc" = (/obj/structure/table/bench/wooden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -22},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/flora/pottedplant/tall{pixel_y = 10},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"tHk" = (/obj/machinery/vending/wallmed1{pixel_x = 25},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"tHp" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"tHq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/engine_room)
-"tHE" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Civilian"},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"tHW" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2,/obj/machinery/alarm{pixel_y = 23},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"tIv" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/alarm{pixel_y = 23},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"tJZ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/computer/scan_consolenew{dir = 1},/obj/machinery/camera/network/medbay{c_tag = "MED - Genetics Lab"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"tKa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"tKd" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/structure/table/woodentable,/obj/effect/floor_decal/carpet/blue{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Starboard"; dir = 8},/obj/item/device/toner{pixel_y = 6},/obj/item/device/toner,/turf/simulated/floor/carpet/bcarpet,/area/library)
-"tMo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Patient Hallway Starboard"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"tMs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"tNa" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/engineering/engine_monitoring)
-"tNh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office)
-"tPA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"tQh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Engineering Hallway 3"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/engineer_hallway)
-"tQn" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/effect/floor_decal/industrial/danger{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/port)
-"tRm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"tRZ" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/construction/seconddeck/construction1)
-"tSm" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"tSo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"tSD" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"tSG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"tTo" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/carpet,/area/hallway/secondary/entry/docking_lounge)
-"tTx" = (/turf/space,/area/shuttle/arrival/station)
-"tUA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"tVa" = (/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Port Hallway 4"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"tVq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"tVu" = (/obj/structure/sign/directions/bridge{dir = 1; pixel_y = 10},/obj/structure/sign/directions/science{dir = 1},/obj/structure/sign/directions/medical{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/secondary/entry/D2)
-"tXm" = (/obj/structure/sign/poster/nanotrasen{dir = 1},/obj/machinery/lapvend,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"tXq" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1; start_pressure = 4559.63},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/security_starboard)
-"tXV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"tYj" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/port)
-"tYk" = (/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/dockhallway)
-"tYl" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"tYY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"tZi" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "crg_aft_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor,/area/maintenance/cargo)
-"tZC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"tZJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"uaf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/item/device/radio/beacon,/obj/machinery/navbeacon/patrol{location = "ENG"; next_patrol = "CH4"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"uah" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"uau" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/medical{id_tag = "mentaldoor"; name = "Mental Health"; req_access = list(64)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/medical/psych)
-"uay" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"uaD" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"uaW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/port)
-"uaZ" = (/obj/machinery/vending/assist{dir = 8; pixel_x = 5},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"uba" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/vending/wallmed1{dir = 4; pixel_x = -25},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"ubU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"ucm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/meter,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"ueM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{name = "Patient Ward"},/turf/simulated/floor/tiled/steel_grid,/area/medical/patient_wing)
-"ueP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"ueT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/central)
-"ueZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"ufg" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/starboard)
-"ufk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"ufl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"ufA" = (/obj/structure/sign/poster/nanotrasen{dir = 1},/obj/machinery/vending/loadout/gadget,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop)
-"ufJ" = (/obj/structure/sign/chemistry{icon_state = "chemistry2"; pixel_y = 32},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "chemwindow"; name = "Chemistry Window Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/medical/chemistry)
-"ufT" = (/obj/effect/shuttle_landmark/southern_cross/arrivals_station,/turf/space,/area/shuttle/arrival/station)
-"ugC" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced/polarized{id = "cryo_tint"},/turf/simulated/floor/plating,/area/medical/cryo)
-"ugD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/starboard)
-"ugI" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"uhf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"uhs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/beacon,/obj/machinery/navbeacon/patrol{location = "MED"; next_patrol = "CH10"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"uht" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"uhC" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"uhD" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "library_window_tint"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/library)
-"uhE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"uhF" = (/obj/machinery/computer/operating{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"uhO" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"uhV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"uhW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"uiD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"uiI" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/starboard)
-"ukI" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "d2_w1_c_airlock"; landmark_tag = "d2_w1_c"; name = "Deck 2, Dock 1-C"},/turf/space,/area/space)
-"ukV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Starboard Hallway 4"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"ulX" = (/obj/structure/flora/pottedplant/smalltree{pixel_y = 11},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"umh" = (/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"ump" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"umI" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"umZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"unr" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"unU" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"uoh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "crg_aft_airlock"; name = "interior access button"; pixel_x = -26; pixel_y = -25; req_one_access = null},/turf/simulated/floor,/area/maintenance/cargo)
-"uoF" = (/obj/machinery/vending/loadout/gadget,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"uoP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"uoQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"upp" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/starboard)
-"upA" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"uqg" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"uqj" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"uqP" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"uqR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/seconddeck/research_medical)
-"utG" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/seconddeck/research_medical)
-"utJ" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/secondary/seconddeck/research_medical)
-"utZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/secondary/seconddeck/research_medical)
-"uvq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/trash,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"uvS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Office"; dir = 4},/turf/simulated/floor/lino,/area/chapel/office)
-"uwj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{name = "Medsci and Autoresleeving"; req_one_access = null},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uwy" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"uwS" = (/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"uxi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uxj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"uxr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uxt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uxW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"uxZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uzy" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"uzI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uzX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"uAt" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; locked = 1; name = "Dock One Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/button/int_button,/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{dir = 4; name = "interior access button"; pixel_x = 7; pixel_y = 27; req_one_access = null},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"uAC" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"uAD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"uAF" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"uAZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"uBH" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"uCb" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/folder/yellow,/obj/item/weapon/tape_roll,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/carpet/blue{dir = 1},/obj/effect/floor_decal/carpet/blue{dir = 8},/obj/effect/floor_decal/carpet/blue{dir = 9},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"uCr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_y = -24; req_access = list(39)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/medical/virology)
-"uCD" = (/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"uCY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"uDr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/structure/closet/acloset{name = "Art supplies"},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/device/tape,/obj/item/device/tape,/obj/item/device/taperecorder,/obj/item/device/taperecorder,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 1},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 1},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 1},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 1},/obj/item/device/lightpainter,/obj/item/device/lightpainter,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"uDx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"uDM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uEc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uEF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_y = 24; req_access = list(39)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/medical/virology)
-"uET" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uFq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/seconddeck/artgallery)
-"uFr" = (/obj/structure/closet/secure_closet/quartermaster,/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"uGj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/pink/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"uHc" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uHz" = (/obj/structure/table/glass,/obj/item/weapon/storage/lockbox/vials,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uHP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"uIb" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/vials,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uJq" = (/obj/structure/sign/warning/airlock{pixel_y = -32},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/maintenance/cargo)
-"uJr" = (/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uJs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"uKe" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"uKp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock Hallway 3"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"uLk" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"uLm" = (/obj/structure/bed/chair/sofa/corner/blue{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"uMn" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uMy" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"uNh" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uNi" = (/obj/machinery/computer/centrifuge,/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Starboard"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"uNA" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"uOA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Psychiatrist"},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the office door."; id = "mentaldoor"; name = "office door control"; pixel_y = 24},/obj/machinery/camera/network/medbay{c_tag = "MED - Mental Health"; dir = 6},/turf/simulated/floor/carpet/sblucarpet,/area/medical/psych)
-"uOF" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2)
-"uOH" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"uOL" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"uOZ" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"uPX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"uQN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "escape_dock_north_airlock"; master_tag = "escape_dock"; pixel_y = 27; req_one_access = list(13); tag_airlock_mech_sensor = null; tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null; tag_shuttle_mech_sensor = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"uRk" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/virology)
-"uRp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"uRN" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/wood/alt/parquet,/area/library)
-"uSo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"uSG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"uST" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/quartermaster/foyer)
-"uTo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/chapel/main)
-"uTu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/alarm/freezer{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"uTA" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/plushielarge,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"uUh" = (/obj/structure/closet/wardrobe/red,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"uVg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"uVm" = (/obj/machinery/appliance/cooker/oven,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"uVN" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Emergency Cooling Valve 2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor,/area/engineering/engine_room)
-"uVT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"uVZ" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"uWb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 5; d2 = 10; icon_state = "5-10"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"uWx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"uXT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"uYd" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"uYj" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"uYZ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineWasteViewport1"; name = "Engine Waste Viewport Shutter"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/engine_waste)
-"uZc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"uZr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"uZx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"uZI" = (/turf/simulated/wall/r_wall,/area/maintenance/chapel)
-"uZK" = (/obj/structure/grille,/turf/simulated/wall/r_wall,/area/engineering/atmos)
-"vad" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter)
-"vav" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock 3 Aft"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"vaL" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"vbq" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vbD" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/cargo)
-"vbL" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/chapel/main)
-"vbX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"vco" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vcv" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/brown/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vcN" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/port)
-"vcT" = (/obj/structure/sign/directions/recreation{dir = 1},/obj/structure/sign/directions/cryo{dir = 8; pixel_y = -10},/obj/structure/sign/directions/chapel{dir = 4; pixel_y = 10},/turf/simulated/wall,/area/crew_quarters/seconddeck/artsupplies)
-"vcY" = (/obj/effect/wingrille_spawn/reinforced,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/airless,/area/medical/genetics)
-"vda" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/camera/network/medbay{c_tag = "MED - Patient Room A"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/pink/border{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"vdd" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vdV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"vei" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"veJ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"vfn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vfz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vfT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"vgu" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = 26; req_access = list(50)},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"vgH" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"vhy" = (/obj/machinery/vending/loadout/accessory,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"vhB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vhS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fpcenter)
-"viN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/machinery/vending/wallmed1{dir = 8; pixel_x = 22; pixel_y = 3},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"viP" = (/obj/machinery/door/window/southleft{dir = 8; name = "Library Desk Door"; req_access = list(37)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/carpet/blue{dir = 8},/obj/machinery/ai_status_display{pixel_y = -32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/bcarpet,/area/library)
-"viV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"viX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/meter,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/central)
-"vjM" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable,/obj/machinery/computer/timeclock/premade/west,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"vjZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/navbeacon/patrol{location = "CH9"; next_patrol = "MED"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"vkE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"vlz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vmb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"vmR" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"vnc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"vnq" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/tiled,/area/quartermaster/office)
-"voh" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced/polarized{id = "chapeloffice"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/chapel/office)
-"vor" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"voE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"voL" = (/turf/simulated/wall,/area/chapel/office)
-"voV" = (/obj/structure/sign/directions/chapel{dir = 6},/turf/simulated/wall,/area/hallway/primary/seconddeck/aft)
-"vpB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"vpD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access = list(5)},/turf/simulated/floor/tiled/steel_grid,/area/medical/foyer)
-"vpH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"vpU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"vqv" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/medical/cryo)
-"vqA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"vqB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vrg" = (/turf/simulated/shuttle/wall/no_join,/area/shuttle/cryo/station)
-"vrh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vrr" = (/obj/structure/cable,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vtu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vtO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/starboard)
-"vtR" = (/obj/structure/cryofeed{dir = 2},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/industrial/warning/cee{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"vuU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vvd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"vvh" = (/obj/item/device/radio/intercom/locked/confessional{pixel_y = -21},/obj/structure/bed/chair{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"vvp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access = list(50)},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"vvJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/starboard)
-"vvY" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access = list(35)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/hydroponics)
-"vwF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"vxe" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vxj" = (/turf/simulated/floor/plating,/area/maintenance/engineering)
-"vxy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"vxB" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Secondary Storage"; dir = 8},/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"vxF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/office/light,/obj/machinery/vending/wallmed1{pixel_x = -25},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_b)
-"vxG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"vyn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/spline/fancy/wood/cee{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria)
-"vyA" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vzz" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"vzL" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"vzM" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D3)
-"vAp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vAw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/green/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"vAx" = (/obj/machinery/alarm{dir = 4; pixel_x = -23},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"vAS" = (/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/industrial/danger{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/starboard)
-"vAY" = (/obj/random/powercell,/obj/random/powercell,/obj/random/powercell,/obj/random/powercell,/obj/random/toolbox,/obj/structure/closet/crate,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/research_medical)
-"vBP" = (/obj/machinery/light/small{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"vCe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Aft Hallway 4"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"vCn" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"vCI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"vDl" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"vDJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/random/junk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"vDT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"vDV" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"vEe" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"vEq" = (/obj/effect/shuttle_landmark/southern_cross/cryostorage_station,/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"vEN" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar)
-"vFr" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Dock"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D2)
-"vFV" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"vGd" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/bottle/stoxin{pixel_x = -6; pixel_y = 10},/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{pixel_x = 1},/obj/random/medical,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular,/obj/random/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"vGp" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/medbay{c_tag = "MED - Locker Room"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"vGJ" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"vGS" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/patient_b)
-"vHd" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"vHe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/curtain/open/privacy,/turf/simulated/floor/tiled/steel_grid,/area/medical/cryo)
-"vIb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"vIj" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/cable/green,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"vIn" = (/obj/item/weapon/storage/box/cdeathalarm_kit,/obj/item/bodybag/cryobag{pixel_x = -3},/obj/item/bodybag/cryobag{pixel_x = -3},/obj/structure/table/steel,/obj/machinery/alarm{pixel_y = 23},/obj/item/device/sleevemate,/turf/simulated/floor/tiled/dark,/area/medical/biostorage)
-"vIB" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/machinery/mineral/equipment_vendor{dir = 4; pixel_x = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer)
-"vIC" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"vID" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"vIX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"vJh" = (/obj/random/plushielarge,/turf/simulated/floor/plating,/area/maintenance/locker)
-"vJq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical)
-"vJC" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/engineering/engine_waste)
-"vJS" = (/obj/machinery/door/blast/regular{density = 0; dir = 2; icon_state = "pdoor0"; id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"; opacity = 0},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/seconddeck/research_medical)
-"vKr" = (/obj/item/device/starcaster_news,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/library)
-"vKA" = (/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/item/clothing/glasses/welding,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"vKG" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/maintenance/locker)
-"vKX" = (/obj/structure/closet/l3closet/virology,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/cable/green,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vLn" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"vLr" = (/obj/structure/closet/wardrobe/virology_white,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vLw" = (/obj/machinery/vending/loadout/clothing,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"vMl" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = -26; tag_exterior_door = "virology_airlock_exterior"; tag_interior_door = "virology_airlock_interior"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vMO" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck)
-"vNi" = (/turf/simulated/wall/r_wall,/area/medical/surgery_storage)
-"vNr" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"vOd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/civilian)
-"vOR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"vOY" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vPj" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vPr" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vPP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"vPZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"vQa" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/locker)
-"vQX" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/machinery/alarm{pixel_y = 23},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Ring 5"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"vRq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft)
-"vRG" = (/obj/machinery/disease2/incubator,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"vRH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring)
-"vRU" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/adv{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/adv,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"vSv" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary)
-"vSK" = (/obj/structure/sign/nosmoking_2,/turf/simulated/wall,/area/hydroponics)
-"vSL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/medbay)
-"vSR" = (/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring)
-"vUd" = (/obj/machinery/papershredder,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"vUf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"vUp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D3)
-"vUv" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"vUB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"vUQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"vUV" = (/obj/structure/sign/deck/second{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"vVh" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"vVG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock 1 Aft"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"vVP" = (/obj/machinery/light{dir = 4},/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port)
-"vVQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/ai_monitored/storage/emergency/eva)
-"vVV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"vWB" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"vXg" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/holodeck_control)
-"vXh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/delivery)
-"vXB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medical_lockerroom)
-"vYL" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Chapel"; sortType = "Chapel"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"vZc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"vZE" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"vZT" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/bar)
-"wag" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"waV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"wbc" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"wbx" = (/obj/structure/bed/chair/comfy/brown,/obj/effect/landmark/start{name = "Librarian"},/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet,/area/library)
-"wbB" = (/turf/simulated/wall,/area/hallway/primary/seconddeck/port)
-"wbS" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Operating Theatre 2"; dir = 1},/obj/machinery/vending/wallmed1{pixel_y = -30},/obj/structure/table/standard,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/surgical/bonegel,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/item/weapon/surgical/bioregen,/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"wco" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"wct" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/bar)
-"wcF" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/bar)
-"wdc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office)
-"wdd" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Secondary Storage"; req_access = list(5)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/medical/biostorage)
-"wdx" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/pink/border{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/exam_room)
-"wec" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/airless,/area/medical/genetics)
-"wer" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue)
-"weK" = (/obj/machinery/vending/nifsoft_shop{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fpcenter)
-"wfl" = (/obj/structure/sign/directions/bridge{pixel_y = 10},/obj/structure/sign/directions/science,/obj/structure/sign/directions/medical{pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/fpcenter)
-"wfB" = (/obj/structure/cable,/obj/machinery/pointdefense{id_tag = "PD Main"},/turf/simulated/floor/airless,/area/space)
-"wfV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/cigarettes,/obj/item/weapon/flame/lighter/random,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/central)
-"whb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"whh" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/structure/sign/warning/moving_parts{pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/delivery)
-"whv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"wiE" = (/obj/structure/sign/directions/engineering{pixel_y = 10},/obj/structure/sign/directions/cargo,/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/ascenter)
-"wjc" = (/obj/structure/bed/chair,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Civilian Hallway 2"; dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/docking_hallway2)
-"wjE" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/cryopod{dir = 2},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"wjP" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/universal{color = "#00ff00"},/turf/simulated/floor,/area/engineering/engine_room)
-"wjT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"wki" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"wkq" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "Gallery"},/turf/simulated/floor/plating,/area/crew_quarters/seconddeck/artgallery)
-"wkF" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"wkG" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/navbeacon/patrol{location = "CH8"; next_patrol = "CH9"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/ascenter)
-"wlf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"wlg" = (/obj/structure/sign/directions/medical,/obj/structure/sign/directions/security{dir = 8; pixel_y = 10},/obj/structure/sign/directions/cryo{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/maintenance/medbay_fore)
-"wls" = (/obj/machinery/iv_drip,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36; pixel_y = -6},/obj/machinery/button/windowtint{id = "pr1_window_tint"; pixel_x = -36; pixel_y = 6},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"wmj" = (/turf/simulated/wall,/area/medical/patient_b)
-"wmE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"wni" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"wnt" = (/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/shuttle/floor,/area/shuttle/cryo/station)
-"wnv" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/locker)
-"wnB" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D1)
-"woi" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"wom" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"woJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"wpq" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"wpH" = (/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"wqa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/monotile,/area/quartermaster/warehouse)
-"wqc" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"wqh" = (/turf/simulated/wall,/area/chapel/main)
-"wql" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"wqq" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"wqL" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"wrf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"wrn" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/technology_scanner,/obj/item/weapon/storage/bag/circuits/basic,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"wry" = (/turf/simulated/wall/r_wall,/area/medical/medbay2)
-"wrz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"wrK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"wrN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"wsB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Medical Access"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay2)
-"wsU" = (/obj/effect/floor_decal/steeldecal/monofloor,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/artgallery)
-"wsV" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/office)
-"wtM" = (/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria)
-"wtP" = (/turf/simulated/wall/r_wall,/area/quartermaster/lockerroom)
-"wuf" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/door/firedoor/border_only,/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon/delivery/south{location = "Medbay"},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"wum" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "cryo_tint"},/turf/simulated/floor/plating,/area/medical/cryo)
-"wup" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/medbay{c_tag = "MED - Patient Hallway Port"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"wuu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/bar)
-"wuH" = (/turf/simulated/wall/r_wall,/area/medical/genetics)
-"wuI" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"wuK" = (/obj/machinery/icecream_vat,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen)
-"wuX" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Medical"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/medical)
-"wvD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wvG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"wvS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"wxw" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space)
-"wxM" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/research{name = "Genetics Lab"; req_one_access = list(5,47)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/seconddeck/research_medical)
-"wxP" = (/turf/simulated/wall,/area/maintenance/substation/civilian)
-"wyl" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"wzj" = (/obj/effect/decal/warning_stripes,/obj/machinery/atmospherics/tvalve/mirrored/bypass,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/medical/virology)
-"wzw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wzP" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/lime/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wzV" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/medical/medbay2)
-"wAw" = (/obj/structure/table/glass,/turf/simulated/floor/carpet/sblucarpet,/area/medical/medbay2)
-"wAG" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -29},/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wAM" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wAN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wAZ" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/hydroponics)
-"wBl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wBK" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1; pixel_y = -10},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/beige/border,/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"wCh" = (/turf/simulated/floor/tiled/white,/area/medical/surgery2)
-"wCl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"wCB" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 8},/obj/item/device/radio{anchored = 1; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Virology Emergency Phone"; pixel_x = -6; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/lime/border{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wCI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/device/geiger/wall/west{icon_state = "geiger_wall-p"; scanning = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/engineering/engine_room)
-"wCQ" = (/obj/structure/disposalpipe/sortjunction{dir = 8; name = "HoP Office"; sortType = "HoP Office"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"wCT" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"wCU" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/engine_setup/pump_max,/turf/simulated/floor,/area/engineering/engine_room)
-"wDm" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/engine_setup/pump_max,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room)
-"wDy" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"wER" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/yellow{d1 = 9; d2 = 10; icon_state = "9-10"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_smes)
-"wFh" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"wFF" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two Internal Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{dir = 8; name = "interior access button"; pixel_x = -7; pixel_y = 27},/obj/effect/map_helper/airlock/button/int_button,/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2/arrivals)
-"wFM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"wFY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"wIa" = (/turf/simulated/floor/carpet,/area/chapel/main)
-"wJa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control)
-"wJe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"wKf" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/sc/cmo)
-"wKg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"wKG" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "Gallery"},/turf/simulated/floor/plating,/area/crew_quarters/seconddeck/artsupplies)
-"wKN" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/port)
-"wKQ" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "chemwindow"; name = "Chemistry Window Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/medical/chemistry)
-"wLh" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"wLi" = (/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"wLn" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/emergencyeva)
-"wLF" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"wMF" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hydroponics)
-"wML" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"wMO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/ai_monitored/storage/emergency/eva)
-"wNa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva)
-"wNh" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2)
-"wNj" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"wNr" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/glasses/sunglasses,/obj/item/weapon/storage/bible,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/locker)
-"wNw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"wNx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Primary Tool Storage"; sortType = "Primary Tool Storage"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"wNH" = (/turf/simulated/wall,/area/medical/first_aid_station/seconddeck/port)
-"wOC" = (/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/lino,/area/chapel/office)
-"wPa" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft)
-"wPD" = (/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"wQP" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"wQR" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Operating Theatre 2"; req_access = list(45)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/medical/surgery2)
-"wQZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"wRt" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"wRC" = (/obj/structure/closet,/obj/item/clothing/head/ushanka,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/plushie,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/central)
-"wSa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/chapel)
-"wSc" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space)
-"wSU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/central)
-"wSZ" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_x = 30},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop)
-"wTp" = (/obj/structure/closet/l3closet/virology,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"wTx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"wTK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"wTX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "CMO Office"; sortType = "CMO Office"},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"wUp" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/pink/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a)
-"wUN" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter)
-"wVa" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"wVu" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/landmark{name = "lightsout"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/dockhallway)
-"wVw" = (/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Medical automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"wVM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"wWd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"wWx" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D2)
-"wWW" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"wWX" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/space,/area/space)
-"wXc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"wXh" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Dock One External Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/ext_door,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D1)
-"wXx" = (/obj/structure/bed/chair/wheelchair,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"wXZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"wYq" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"wZh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"wZn" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"xao" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood/cee{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/library)
-"xaD" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -2; pixel_y = -2},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/camera/network/medbay{c_tag = "MED - Acute"; dir = 1},/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/loaded,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"xaT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"xaY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"xbq" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/simulated/floor/tiled/white,/area/medical/reception)
-"xbV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"xch" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/medbay_fore)
-"xcE" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_waste)
-"xcQ" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"xdb" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2_w3_a_airlock"; pixel_y = 27; req_one_access = list(13)},/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3)
-"xdp" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.1; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar)
-"xdw" = (/obj/structure/morgue{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue)
-"xdX" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"xeu" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/holodeck_control)
-"xeF" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"xeH" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/patient_wing)
-"xeT" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard)
-"xeV" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"xfb" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/engineering/engine_room)
-"xff" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"xft" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/foyer)
-"xfH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"xgq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/cargo)
-"xgD" = (/obj/structure/undies_wardrobe,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"xgL" = (/turf/simulated/shuttle/wall,/area/shuttle/cryo/station)
-"xha" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"xhf" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{name = "Cargo Maintenance"; req_access = list(50)},/turf/simulated/floor/plating,/area/quartermaster/office)
-"xhh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay)
-"xhM" = (/turf/simulated/wall,/area/maintenance/research_medical)
-"xij" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"xip" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/lino,/area/chapel/office)
-"xiE" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"xiX" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"xjv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2)
-"xjG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"xjT" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"xka" = (/obj/structure/lattice,/obj/machinery/shield_diffuser,/turf/space,/area/space)
-"xkS" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"xkV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/machinery/light/small,/turf/simulated/floor,/area/engineering/engine_waste)
-"xkY" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"xlj" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/shutters{dir = 4; id = "qm_warehouse"; name = "Warehouse Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/warehouse)
-"xlF" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/locker)
-"xlO" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"xmb" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall/r_wall,/area/hallway/secondary/entry/D1)
-"xnd" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage)
-"xnj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Medical Delivery"; req_access = list(5)},/turf/simulated/floor/tiled,/area/medical/medbay2)
-"xnS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/secondary/entry/D2)
-"xof" = (/obj/structure/filingcabinet,/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"xom" = (/turf/simulated/wall,/area/medical/genetics)
-"xoD" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/item/weapon/tool/crowbar/red,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"xoO" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{dir = 8; name = "light switch "; pixel_x = 37; pixel_y = 5},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/button/windowtint{id = "lounge_window_tint"; pixel_x = 37; pixel_y = -4},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge)
-"xoU" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/borderfloorblack/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop)
-"xpb" = (/obj/machinery/shower{dir = 8; pixel_x = -5; pixel_y = -1},/obj/machinery/door/window/westright{name = "Shower"},/obj/structure/window/basic{dir = 1},/obj/structure/curtain/open/shower/medical,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom)
-"xpf" = (/obj/machinery/transhuman/autoresleever{ghost_spawns = 1},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve)
-"xpv" = (/obj/machinery/conveyor{id = "recycler"},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/plating,/area/quartermaster/warehouse)
-"xqf" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/lime/border{dir = 9},/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"xqE" = (/obj/machinery/appliance/cooker/fryer,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen)
-"xqV" = (/obj/effect/floor_decal/spline/fancy/wood,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/papershredder,/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Fore"; dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled,/area/library)
-"xrN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"xsK" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space)
-"xsZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"xte" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/table/standard,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"xtM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"xtR" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"xuy" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"xuM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"xvb" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"xvd" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/secondary/entry/D2)
-"xvt" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"xvw" = (/obj/effect/wingrille_spawn/reinforced,/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/airless,/area/medical/genetics)
-"xvF" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/docking_hallway2)
-"xwa" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/structure/table/glass,/obj/item/roller,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"xwr" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"xwy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/ascenter)
-"xwT" = (/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/blue,/turf/simulated/floor/tiled/steel,/area/medical/genetics)
-"xxe" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"xxf" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/airlock,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"xxy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary)
-"xxU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper)
-"xyg" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/virusdish/random,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"xyV" = (/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"xzm" = (/obj/structure/sign/warning/vent_port,/turf/simulated/wall/r_wall,/area/maintenance/disposal)
-"xzs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southright{name = "Virology Isolation Room"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology)
-"xzT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/sign/dock/three,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Dock Hallway 5"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"xzX" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/newscaster{pixel_x = 30},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/storage/primary)
-"xAj" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Two External Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{master_tag = null; name = "exterior access button"; pixel_x = 27; pixel_y = -7},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2)
-"xAQ" = (/obj/structure/disposalpipe/segment,/obj/structure/table/steel,/obj/item/weapon/storage/bag/sheetsnatcher,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse)
-"xBk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/medical/patient_wing)
-"xBQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Cargo Substation"; req_one_access = list(11,24,50)},/turf/simulated/floor/plating,/area/maintenance/substation/cargo)
-"xCr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_smes)
-"xCz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/apmaint)
-"xCD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"xDi" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/medical/patient_wing)
-"xDl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/sortjunction/wildcard{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"xDr" = (/obj/effect/shuttle_landmark/southern_cross/escape/station,/turf/space,/area/shuttle/escape/station)
-"xDJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"xDM" = (/obj/structure/closet/crate/freezer,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/medical/surgery_storage)
-"xDR" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"xEj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/light{dir = 4; layer = 3},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"xEA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"xEJ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"xEQ" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/machinery/door/window/eastleft,/obj/item/clothing/suit/space,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"xFz" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"xFC" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/ward)
-"xGd" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood/alt/parquet,/area/library)
-"xGn" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria)
-"xGq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"xGZ" = (/obj/machinery/mech_recharger,/obj/machinery/firealarm{pixel_y = 24},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/turf/simulated/floor/tiled/steel_grid,/area/medical/medbay_emt_bay)
-"xHj" = (/obj/structure/table/wooden_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/lino,/area/chapel/office)
-"xHG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"xHO" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3)
-"xIf" = (/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/bar)
-"xIp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"xIB" = (/obj/machinery/lapvend,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/stairwell)
-"xIT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"xJa" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/ascenter)
-"xKO" = (/turf/simulated/floor/tiled/dark,/area/chapel/main)
-"xKT" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/apcenter)
-"xLt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"xLD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/mob/living/simple_mob/animal/passive/dog/corgi/Ian,/turf/simulated/floor/tiled,/area/crew_quarters/heads/sc/hop)
-"xLN" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/lino,/area/chapel/office)
-"xLT" = (/obj/structure/sign/redcross{desc = "The Star of Life, a symbol of Medical Aid."; icon_state = "lifestar"; name = "Medbay"; pixel_x = 32},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"xMr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"xNd" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/device/camera,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/weapon/barcodescanner,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/simulated/floor/carpet,/area/library)
-"xNu" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/as_emergency)
-"xNV" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"xOe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"xOD" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"xPe" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"xPR" = (/obj/machinery/camera/network/medbay{c_tag = "MED - FA Station Port"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/closet/secure_closet/medical_wall{name = "defibrillator closet"; pixel_y = -31},/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port)
-"xPX" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"xPZ" = (/obj/structure/table/steel,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/turf/simulated/floor/plating,/area/maintenance/cargo)
-"xQy" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/medical/surgeryobs)
-"xQF" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor,/area/engineering/engine_waste)
-"xRa" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_medical{id_tag = "Surgery"; name = "Patient Ward"; req_access = list(5)},/turf/simulated/floor/tiled/steel_grid,/area/medical/ward)
-"xRo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"xRG" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"xRW" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/machinery/shield_diffuser,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{master_tag = null; name = "exterior access button"; pixel_x = -27; pixel_y = -7},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"xSl" = (/obj/structure/sign/directions/cryo{dir = 8},/obj/structure/sign/directions/recreation{dir = 9; pixel_y = 10},/obj/structure/sign/directions/library{dir = 6; pixel_y = -10},/turf/simulated/wall,/area/crew_quarters/seconddeck/artgallery)
-"xSp" = (/obj/machinery/atmospherics/valve,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint)
-"xSI" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"xSY" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; landmark_tag = "d2_near_se"; name = "Near SC - Deck 2 South East"},/turf/space,/area/space)
-"xTR" = (/obj/machinery/door/airlock/glass_external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three Internal Airlock"; req_access = list(13)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/access_button{dir = 8; name = "interior access button"; pixel_x = -7; pixel_y = 27},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D3)
-"xTW" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "st2_tint"},/turf/simulated/floor/plating,/area/medical/surgery2)
-"xTX" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/sign/redcross{desc = "The Star of Life, a symbol of Medical Aid."; icon_state = "lifestar"; name = "Medbay"; pixel_x = 32},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "medbayquar"; name = "Medbay Emergency Lockdown Shutters"; opacity = 0},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/starboard)
-"xUn" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/storage/emergency_storage/seconddeck/ap_emergency)
-"xVd" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/light/small,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"xVJ" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue)
-"xWT" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Aft"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft)
-"xXo" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2)
-"xXH" = (/obj/machinery/light/small,/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/plating,/area/maintenance/medbay)
-"xYs" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/ward)
-"xYN" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery)
-"xZu" = (/obj/random/trash,/obj/structure/loot_pile/surface/medicine_cabinet{pixel_y = 25},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"xZK" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/structure/closet/acloset{name = "Art supplies"},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/obj/item/device/camera,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/storage/photo_album,/obj/item/weapon/storage/photo_album,/obj/item/device/floor_painter,/obj/item/device/floor_painter,/obj/item/device/laser_pointer/blue,/obj/item/device/laser_pointer/green,/obj/item/device/laser_pointer/purple,/obj/item/device/laser_pointer/red,/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies)
-"yaI" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1)
-"ybA" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"ycd" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineWasteViewport1"; name = "Engine Waste Viewport Shutter"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor,/area/engineering/engine_waste)
-"ycm" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/medbay{c_tag = "MED - Morgue"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue)
-"ydm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/delivery)
-"ydn" = (/obj/machinery/light/small,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"ydH" = (/obj/structure/catwalk,/obj/structure/loot_pile/surface/medicine_cabinet/fresh{pixel_y = 25},/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"yet" = (/obj/machinery/computer/security/mining,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/quartermaster/qm)
-"yeN" = (/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"yfl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/ascenter)
-"ygd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"ygs" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/quartermaster/warehouse)
-"ygw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/hydro,/area/hydroponics)
-"ygz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/research_medical)
-"ygD" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"yhq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway)
-"yhv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry)
-"yij" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva)
-"yiw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay2)
-"yiX" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"yjc" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1)
-"yjo" = (/turf/space,/area/shuttle/escape/station)
-"ykL" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor/tiled/white,/area/medical/genetics)
-"ylt" = (/turf/simulated/floor/tiled/white,/area/medical/genetics)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/turf/space,
+/area/space)
+"aab" = (
+/obj/item/stack/rods,
+/turf/space,
+/area/space)
+"aac" = (
+/obj/structure/lattice,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Armory Exterior";
+ dir = 1
+ },
+/turf/space,
+/area/space)
+"aad" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"aae" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aaf" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"aag" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"aah" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/obj/item/stack/rods,
+/turf/space,
+/area/space)
+"aai" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aaj" = (
+/turf/simulated/wall/r_wall,
+/area/security/armoury)
+"aak" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"aal" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"aam" = (
+/turf/simulated/wall/r_wall,
+/area/security/tactical)
+"aan" = (
+/turf/simulated/wall/r_wall,
+/area/space)
+"aao" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/test_area)
+"aap" = (
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aas" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aat" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aav" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"aaw" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Riot Armor"
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"aax" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Riot Armor"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"aay" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/tank/oxygen,
+/obj/effect/floor_decal/corner/white{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "EVA Suit"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"aaz" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Riot Armor"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"aaE" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aaI" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aaK" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Riot Armor"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"aaL" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Test Chamber Fore";
+ network = list("Research","Toxins Test Area")
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aaM" = (
+/turf/simulated/wall/r_wall,
+/area/security/prison)
+"aaN" = (
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/wall/r_wall,
+/area/security/prison)
+"aaQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aaT" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_north = 1;
+ tag_south = 2;
+ tag_west = 7
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aaU" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aaV" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aaW" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"abc" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"abd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"abe" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"abf" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"abg" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"abh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"abk" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/gun,
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Energy"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"abl" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/item/weapon/gun/energy/ionrifle{
+ pixel_y = -3
+ },
+/obj/item/weapon/gun/energy/ionrifle{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Energy"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"abn" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"abo" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"abq" = (
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Atmospherics Subgrid";
+ name_tag = "Atmospherics Subgrid"
+ },
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/yellow,
+/obj/item/weapon/tank/oxygen/yellow,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abr" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Atmospherics";
+ charge = 2e+006;
+ input_attempt = 1
+ },
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abs" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Atmos Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abt" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/atmospherics)
+"abx" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/space)
+"aby" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/shield_diffuser,
+/obj/structure/sign/directions/ladder_up{
+ dir = 1;
+ name = "\improper Up One Deck";
+ pixel_x = 32;
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/eva{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 6
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/security_port)
+"abz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"abA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"abC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abE" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"abF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Atmospherics Substation";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"abJ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"abK" = (
+/turf/simulated/floor/airless,
+/area/space)
+"abL" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"abM" = (
+/obj/machinery/suit_cycler/mining,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"abO" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"abP" = (
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/catwalk,
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Atmospherics";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abQ" = (
+/obj/machinery/light/small,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"abR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_port_pump"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"abS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"abU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"abV" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump,
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Ballistics"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"abW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"abX" = (
+/obj/structure/lattice,
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/turf/space,
+/area/space)
+"ack" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"acm" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/engineering)
+"acn" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"acp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"acs" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"act" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"acu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"acv" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 2;
+ tag_north = 1;
+ tag_west = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acw" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/machinery/computer/security/engineering,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"acy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"acz" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Air to Ports"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acA" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ name = "Ports to Waste"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acC" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/paper{
+ info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker.";
+ name = "grid checker info"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"acD" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Engineering"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"acE" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Engineering Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"acH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"acI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"acL" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/backpack,
+/obj/item/device/multitool,
+/obj/item/device/multitool,
+/obj/item/device/assembly/prox_sensor,
+/obj/item/device/flashlight,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"acM" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/powercell,
+/obj/item/weapon/coin/silver,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"acN" = (
+/obj/structure/table/rack,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/mask/gas,
+/obj/item/device/flashlight,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"acP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acQ" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acS" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"acT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"acU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"acV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"acW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"acX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Engineering Subgrid";
+ name_tag = "Engineering Subgrid"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"acY" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"acZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"ada" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Substation";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"adb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"adc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"adg" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"adh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"adi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Phoron to Connector"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"adj" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"adk" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"adl" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 6
+ },
+/obj/machinery/computer/atmoscontrol{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ pixel_x = 24;
+ req_one_access = list(10,24)
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 34
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"adm" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ado" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"adu" = (
+/obj/structure/table/rack,
+/obj/item/weapon/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/item/weapon/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/item/weapon/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/item/weapon/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Energy Spears"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"adv" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/dispenser,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"adw" = (
+/obj/structure/table/standard,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/head/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"adx" = (
+/obj/structure/table/standard,
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 3;
+ name = "Atmos RC";
+ pixel_y = -32
+ },
+/obj/item/device/t_scanner,
+/obj/item/device/radio/headset/headset_eng,
+/obj/item/weapon/cartridge/atmos,
+/obj/item/weapon/cartridge/atmos,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/device/pipe_painter,
+/obj/machinery/light/spot,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"adz" = (
+/turf/simulated/wall,
+/area/engineering/atmos)
+"adB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Substation";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"adE" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/binary/passive_gate{
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"adI" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"adJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"adN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"adO" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Energy"
+ },
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/gun/energy/gun/burst,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"adP" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Energy"
+ },
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"adQ" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_restroom)
+"adR" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/security_lockerroom)
+"adS" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/security_lockerroom)
+"adT" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/security_lockerroom)
+"adU" = (
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/wall/r_wall,
+/area/security/range)
+"adV" = (
+/turf/simulated/wall/r_wall,
+/area/security/range)
+"adW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"adZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/atmos_hallway)
+"aeb" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aec" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aed" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aee" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aef" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aeg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance Access";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/hallway/atmos_hallway)
+"aei" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/valve/shutoff{
+ name = "Engineering automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aej" = (
+/obj/machinery/atmospherics/valve/digital/open,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aek" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"ael" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aem" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aeo" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/item/clothing/head/soft/orange,
+/obj/item/clothing/shoes/sandal,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/clothing/head/flatcap,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aeq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aer" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aes" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"aet" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/storage)
+"aeu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Atmospherics";
+ sortType = "Atmospherics"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aev" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/atmos_hallway)
+"aex" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aey" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aez" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aeA" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"aeC" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aeD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aeE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aeG" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Hot Loop Waste-to-Canister pump"
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aeJ" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/technology_scanner,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aeK" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aeL" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"aeM" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/box/cups,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aeN" = (
+/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/material/minihoe,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/clothing/head/greenbandana,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aeQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aeR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aeT" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aeU" = (
+/turf/simulated/wall,
+/area/security/prison)
+"aeV" = (
+/obj/machinery/shieldgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor,
+/area/engineering/storage)
+"aeW" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"aeY" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Hallway 2";
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"afb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Monitoring Room";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/foyer)
+"afc" = (
+/turf/simulated/wall,
+/area/engineering/foyer)
+"afi" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afk" = (
+/obj/item/device/t_scanner,
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/random/cash,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afm" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/item/weapon/storage/backpack,
+/obj/item/weapon/storage/backpack,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afn" = (
+/obj/random/junk,
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afp" = (
+/turf/simulated/wall,
+/area/maintenance/substation/research)
+"afq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"afr" = (
+/turf/simulated/wall,
+/area/crew_quarters/heads/sc/hor)
+"afs" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"aft" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/prison)
+"afw" = (
+/turf/simulated/floor/tiled/freezer,
+/area/security/prison)
+"afx" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Laser Armor"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"afy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"afz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"afA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"afC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"afD" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"afF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"afG" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"afH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"afI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 10;
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"afJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"afK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"afL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"afN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afO" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Research Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"afP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"afQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/armoury)
+"afR" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/empslite{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"afS" = (
+/obj/structure/table/standard,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/binoculars{
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"afT" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/trackimp,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"afU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"afV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Hard Storage";
+ req_access = list(11)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"afW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"afY" = (
+/obj/structure/ladder/updown,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"agc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"agd" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/tactical)
+"agf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"agg" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"agh" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"agi" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 1
+ },
+/obj/item/clothing/gloves/arm_guard/combat,
+/obj/item/clothing/shoes/leg_guard/combat,
+/obj/item/clothing/suit/armor/combat,
+/obj/item/clothing/head/helmet/combat,
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Combat Armor"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"agn" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/engineering/storage)
+"ago" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"agp" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil/super_capacity,
+/obj/item/weapon/smes_coil/super_capacity,
+/obj/item/weapon/smes_coil/super_io,
+/obj/item/weapon/smes_coil/super_io,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"agr" = (
+/obj/structure/table/reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/recharger,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"agt" = (
+/turf/simulated/wall,
+/area/security/brig)
+"agu" = (
+/obj/machinery/computer/rcon{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"agv" = (
+/obj/structure/undies_wardrobe,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"agw" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"agz" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/engineering,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"agA" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"agC" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance Access";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor,
+/area/engineering/locker_room)
+"agF" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"agG" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/machinery/door/window/westright{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower/security,
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"agH" = (
+/turf/simulated/wall,
+/area/security/security_restroom)
+"agI" = (
+/obj/structure/table/standard,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"agJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"agK" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"agL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"agM" = (
+/turf/simulated/floor/tiled,
+/area/security/range)
+"agN" = (
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"agO" = (
+/obj/random/junk,
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"agQ" = (
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"agS" = (
+/obj/machinery/flasher{
+ id = "permflash";
+ name = "Floor mounted flash"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"agT" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"agV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"agX" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/general_air_control{
+ frequency = 1445;
+ name = "Engine Exhaust Monitoring";
+ sensors = list("engine_exhaust_sensor"="Engine Exhaust Sensor")
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"agY" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"agZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Waste Handling"
+ },
+/obj/structure/sign/warning/nosmoking_1{
+ pixel_y = 32
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aha" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ahb" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"ahc" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/engineering/storage)
+"ahd" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"ahe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/atmos_hallway)
+"ahg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/door/window/southright{
+ name = "Engineering Monitoring Room";
+ req_one_access = list(11,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"ahh" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ pixel_x = 24;
+ req_one_access = list(10,24)
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"ahi" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/clamp,
+/obj/item/clamp,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"ahk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ahl" = (
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ahm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ahn" = (
+/obj/machinery/seed_storage/garden{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aho" = (
+/obj/machinery/door/airlock{
+ name = "Toilet"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/prison)
+"ahq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ahr" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Laser Armor"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ahs" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/beehive,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"aht" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#ffcc00";
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ahu" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ahz" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ahB" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ahC" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"ahD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"ahE" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/locker_room)
+"ahF" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"ahJ" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Armory";
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/security/armoury)
+"ahL" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ahP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ahT" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"ahZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aia" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/item/device/geiger/wall/north,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aie" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aif" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aig" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/item/device/gps/engineering,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aih" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/random/medical/lite,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aij" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Locker Room";
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/item/device/gps/engineering/atmos,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"ail" = (
+/obj/item/stack/tile/floor/steel,
+/turf/simulated/floor/tiled/steel,
+/area/maintenance/engineering)
+"aim" = (
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"ain" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Armoury Tactical Equipment";
+ req_access = list(3);
+ req_one_access = list(3)
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/tactical)
+"aio" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"aip" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"ait" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/item/clothing/gloves/arm_guard/combat,
+/obj/item/clothing/shoes/leg_guard/combat,
+/obj/item/clothing/suit/armor/combat,
+/obj/item/clothing/head/helmet/combat,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Combat Armor"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"aiv" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"aiw" = (
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"aiz" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/space,
+/area/space)
+"aiB" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aiC" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aiD" = (
+/obj/structure/sign/department/sci,
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"aiF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "wloop_atm_meter"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aiG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aiH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Engineering";
+ sortType = "Engineering"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aiI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aiL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/engineer_hallway)
+"aiN" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aiQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering EVA Storage";
+ req_one_access = list(11,24)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engineer_eva)
+"aiR" = (
+/obj/machinery/computer/station_alert/all{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aiT" = (
+/obj/structure/closet/wardrobe/engineering_yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aiU" = (
+/obj/item/weapon/extinguisher,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aiV" = (
+/obj/item/stack/tile/floor/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aiZ" = (
+/obj/machinery/door/window/westleft{
+ name = "Shower"
+ },
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/security,
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"aja" = (
+/obj/structure/table/standard,
+/obj/item/device/taperecorder,
+/obj/item/device/tape,
+/obj/item/device/megaphone,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/storage/box,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/item/device/gps/security,
+/obj/item/device/gps/security,
+/obj/item/device/gps/security,
+/obj/item/device/gps/security,
+/obj/item/device/gps/security,
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"ajb" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"ajc" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"aje" = (
+/obj/structure/sign/directions/cargo/refinery{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/quartermaster/warehouse)
+"ajf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"ajl" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/target_stake,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"ajm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ajn" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"ajo" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ajp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ajs" = (
+/obj/machinery/magnetic_module,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"ajt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aju" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/range)
+"ajv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"ajw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"ajy" = (
+/turf/simulated/wall/r_wall,
+/area/security/detectives_office)
+"ajz" = (
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"ajA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"ajB" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"ajC" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/random/cigarettes,
+/obj/item/weapon/flame/lighter/zippo,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ajD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ajE" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/wirecutters,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"ajF" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"ajG" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,
+/obj/item/clothing/suit/storage/apron/overalls,
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Dormitories";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ajH" = (
+/obj/structure/table/steel,
+/obj/structure/bedsheetbin,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ajJ" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"ajM" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/security,
+/turf/simulated/floor/tiled/freezer,
+/area/security/prison)
+"ajN" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/soap/nanotrasen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/prison)
+"ajO" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/engine_setup/coolant_canister,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ajQ" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Ballistic Armor"
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"ajT" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ajU" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/machinery/door/window/northleft{
+ name = "Engine Waste";
+ req_one_access = list(10,24)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ajV" = (
+/obj/machinery/door/window/northright{
+ name = "Engine Waste";
+ req_one_access = list(10,24)
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Hot Loop Waste Gas pump"
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineEmitterPortWest";
+ name = "Engine Room Blast Doors";
+ pixel_x = 26;
+ req_access = null;
+ req_one_access = list(11,24)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ajX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"ajY" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"ajZ" = (
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aka" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/item/device/gps/engineering/atmos,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"akd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akh" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/obj/item/ammo_magazine/ammo_box/b12g/flash,
+/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
+/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Ammo"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"akl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"ako" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/atmos)
+"akr" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"akt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"aku" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"akw" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"akx" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Forensics Maintenance Access";
+ req_access = list(4)
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"aky" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"akF" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/armoury)
+"akG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"akM" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"akN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/heads/sc/chief)
+"akO" = (
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"akP" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"akS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"akV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/tactical)
+"ald" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"alh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Armory Tactical";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"all" = (
+/obj/machinery/computer/secure_data/detective_computer{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"alo" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit/powder,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"alp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"alt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/door/blast/regular{
+ id = "EngineEmitterPortWest";
+ layer = 3.3;
+ name = "Engine Waste Handling Access"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"alu" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"alv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"alx" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/book/manual/supermatter_engine{
+ pixel_x = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aly" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"alz" = (
+/obj/structure/table/standard,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/item/weapon/towel{
+ color = "#FF8C00";
+ name = "orange towel";
+ pixel_x = -2;
+ pixel_y = -4
+ },
+/obj/item/weapon/towel{
+ color = "#FF8C00";
+ name = "orange towel";
+ pixel_x = -2;
+ pixel_y = -4
+ },
+/obj/item/weapon/towel{
+ color = "#FFD700";
+ name = "gold towel"
+ },
+/obj/item/weapon/towel{
+ color = "#FFD700";
+ name = "gold towel"
+ },
+/obj/item/weapon/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/random/soap,
+/obj/random/soap,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"alB" = (
+/obj/structure/undies_wardrobe,
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"alF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"alG" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Ammo"
+ },
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"alH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"alI" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"alK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"alL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"alO" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport1";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"alP" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"alR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"alS" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine radiator viewport shutters.";
+ id = "EngineRadiatorViewport1";
+ name = "Engine Radiator Viewport Shutters";
+ pixel_y = 25;
+ req_access = list(10)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"alU" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"alV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "N2O Outlet Valve"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"alW" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "N2O to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ame" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ami" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"amj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall,
+/area/maintenance/security_port)
+"amu" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"amw" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/chips,
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"amx" = (
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"amy" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"amz" = (
+/obj/structure/curtain/open/shower/engineering,
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/machinery/door/window/westright{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"amB" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"amC" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"amE" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"amF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 11";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"amG" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"amH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"amM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/security_port)
+"amP" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport1";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ color = "#00ff00"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"amR" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/skills,
+/obj/item/device/gps/engineering/ce,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"amT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 5
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"amU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Dorm's Emergency Oxygen Valve"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ane" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"anf" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ang" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ani" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"anj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ name = "Air to Supply";
+ target_pressure = 301.325
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ank" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ dir = 4;
+ name = "Atmospherics to Distro automatic shutoff valve"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"anl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dloop_atm_meter"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"anp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "eva_port_airlock";
+ name = "interior access button";
+ pixel_y = 26;
+ req_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"anq" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"anr" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/device/multitool,
+/obj/item/clothing/head/welding,
+/obj/item/weapon/storage/belt/utility,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"ans" = (
+/obj/machinery/suit_cycler/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"ant" = (
+/obj/structure/closet,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"anu" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"anv" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"anw" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"anx" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"any" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"anz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"anA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"anE" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"anG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"anH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"anJ" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"anK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"anL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"anM" = (
+/obj/structure/closet/wardrobe/red,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Locker Room";
+ dir = 4
+ },
+/obj/item/clothing/suit/storage/hazardvest/green,
+/obj/item/clothing/suit/storage/hazardvest/green,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"anR" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"anS" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"anT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"anW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"anX" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/drone_fabrication)
+"aoc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/plushie/beepsky,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"aof" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aog" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aoi" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aoj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aom" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aop" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aor" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Scrubber to Waste"
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aos" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aov" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_port_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "eva_port_airlock";
+ pixel_y = -26;
+ req_access = null;
+ tag_airpump = "eva_port_pump";
+ tag_chamber_sensor = "eva_port_sensor";
+ tag_exterior_door = "eva_port_outer";
+ tag_interior_door = "eva_port_inner"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"aow" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"aoy" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"aoA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"aoB" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"aoC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"aoE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"aoG" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"aoK" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"aoL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aoM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"aoO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aoP" = (
+/obj/structure/table/woodentable,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"aoR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aoS" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aoU" = (
+/obj/machinery/button/remote/driver{
+ id = "enginecore";
+ name = "Emergency Core Eject";
+ pixel_y = -21
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/heads/sc/chief)
+"aoV" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd,
+/obj/machinery/button/windowtint{
+ id = "ceoffice";
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/chief)
+"aoW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aoX" = (
+/obj/machinery/computer/guestpass{
+ pixel_x = 30
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"apb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_starboard_pump"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"apc" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/woodentable,
+/obj/item/weapon/book/manual/engineering_construction,
+/obj/item/weapon/book/manual/atmospipes,
+/obj/item/weapon/book/manual/engineering_guide{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/weapon/book/manual/evaguide{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"apd" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"apf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"apg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"apj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/atmos/monitoring)
+"apl" = (
+/obj/structure/sign/atmosplaque{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"apm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"apn" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/cyan,
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"app" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"apq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"aps" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"apu" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"apv" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"apw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"apy" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"apz" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"apB" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/orange,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"apD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"apE" = (
+/obj/machinery/computer/arcade{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"apG" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 10";
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"apI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"apJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"apK" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"apL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/maintenance/substation/central)
+"apN" = (
+/obj/structure/cable{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"apO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Central";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"apP" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cryo)
+"apR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"apW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/power/apc/super/critical{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"apX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"apY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"apZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "tox_in";
+ name = "Phoron Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aqa" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aqb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aqc" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aqd" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aqe" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/computer/general_air_control{
+ frequency = 1441;
+ name = "Tank Monitor";
+ sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"aqf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/obj/machinery/computer/general_air_control{
+ frequency = 1443;
+ level = 3;
+ name = "Distribution and Waste Monitor";
+ sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Engine Waste")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"aqi" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"aql" = (
+/turf/simulated/wall,
+/area/medical/medbay_primary_storage)
+"aqm" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"aqn" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/weapon/rig/breacher,
+/obj/machinery/door/window/eastleft{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"aqp" = (
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"aqt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Hardsuits";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"aqu" = (
+/obj/structure/table/reinforced,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/device/reagent_scanner,
+/obj/item/weapon/reagent_containers/syringe,
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"aqx" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Access";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"aqF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/foyer)
+"aqI" = (
+/obj/structure/disposalpipe/broken{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aqJ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aqK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/weapon/stool,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aqL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/mob/living/simple_mob/metroid/jellybrig,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aqN" = (
+/obj/machinery/vending/snack{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"aqP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aqQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aqV" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter)
+"aqY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"arb" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"ard" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"are" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"arf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ari" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Monitoring Room";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"arj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ark" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"arl" = (
+/obj/structure/table/standard,
+/obj/structure/fireaxecabinet{
+ pixel_x = 32
+ },
+/obj/machinery/cell_charger,
+/obj/item/device/multitool{
+ pixel_x = 5
+ },
+/obj/item/weapon/tool/wrench,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"arm" = (
+/turf/simulated/wall,
+/area/maintenance/substation/engineering)
+"aro" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/sign/warning/high_voltage{
+ pixel_x = -32
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"arq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"arr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"ars" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"art" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/skrell/white,
+/obj/item/clothing/head/helmet/space/skrell/white,
+/obj/machinery/door/window/eastleft{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"arv" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"ary" = (
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"arC" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"arE" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"arH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"arK" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"arL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"arM" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"arN" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/prison)
+"arO" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Security Checkpoint"
+ },
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"arP" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"arQ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 32;
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"arR" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Ammo"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"arS" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Armoury";
+ name = "Emergency Access";
+ pixel_y = -24;
+ req_access = list(3)
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = -8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"arT" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/armoury)
+"arU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/security/armoury)
+"arX" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/button/remote/blast_door{
+ id = "EngineVent";
+ name = "Reactor Ventillatory Control";
+ pixel_x = -25;
+ req_access = list(10)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"asa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"asb" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/security)
+"asc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"asd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"asg" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ash" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"asi" = (
+/obj/machinery/atmospherics/tvalve/mirrored{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ask" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 10
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/item/clamp,
+/obj/item/clamp,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"asl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"asn" = (
+/obj/machinery/pipedispenser/disposal,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ass" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/skrell/black,
+/obj/item/clothing/head/helmet/space/skrell/black,
+/obj/machinery/door/window/eastright{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"asu" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/westleft{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"asw" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"asy" = (
+/obj/machinery/light/small,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"asK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"asQ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"asR" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"asS" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter)
+"asU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"asV" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/fscenter)
+"asX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos)
+"asZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"ata" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"atb" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos/monitoring)
+"atd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/atmos)
+"ate" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos)
+"atf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos)
+"ath" = (
+/obj/structure/closet/toolcloset,
+/obj/random/tank,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"ati" = (
+/obj/structure/closet/toolcloset,
+/obj/item/device/flashlight/maglight,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"atk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"atq" = (
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"atr" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/photo_album{
+ pixel_y = -10
+ },
+/obj/item/device/camera_film,
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/machinery/light,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"ats" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/armoury)
+"att" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/autolathe/armory,
+/turf/simulated/floor/tiled/dark,
+/area/security/armoury)
+"atu" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 32;
+ pixel_y = -21
+ },
+/obj/structure/cable/green,
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"atv" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Ballistics";
+ req_access = list(2)
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"atw" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Ballistics"
+ },
+/obj/item/weapon/gun/projectile/garand,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/turf/simulated/floor/tiled/dark,
+/area/security/tactical)
+"atx" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"aty" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"atA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"atB" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Security Restroom";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_restroom)
+"atD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"atH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/valve/digital{
+ name = "secondary TEG valve"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"atI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"atP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"atR" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"atT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"atU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"atV" = (
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"atW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"atX" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/tool/powermaint,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"atZ" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aua" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aud" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aue" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"auf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"auh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aui" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"auj" = (
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"auk" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fpcenter)
+"aul" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aum" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aut" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/ascenter)
+"auv" = (
+/obj/structure/sign/directions/bridge{
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ dir = 4
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/ascenter)
+"aux" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"auy" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"auz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"auA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"auB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"auC" = (
+/obj/machinery/door/airlock/glass{
+ name = "Brig Dormitories"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"auD" = (
+/obj/structure/sign/warning/vent_port{
+ pixel_x = 32
+ },
+/turf/space,
+/area/space)
+"auG" = (
+/obj/machinery/shield_gen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"auJ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"auK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"auL" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"auN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"auP" = (
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"auQ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/fountain5,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"auR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"avc" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/engine_room)
+"ave" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"avf" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Port Hallway 2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"avg" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"avh" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"avj" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"avk" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"avl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"avm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"avn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"avp" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"avq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH10";
+ next_patrol = "CH11"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"avr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"avs" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"avu" = (
+/turf/simulated/wall,
+/area/engineering/drone_fabrication)
+"avv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"avw" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"avx" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor,
+/area/engineering/storage)
+"avy" = (
+/obj/machinery/shieldgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"avz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d2 = 10;
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"avA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"avB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"avC" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"avD" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/plating,
+/area/engineering/foyer)
+"avE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"avG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engineer_eva)
+"avH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "medbayrecquar";
+ name = "Medbay Emergency Quarantine Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"avI" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"avJ" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/welding,
+/obj/item/weapon/weldingtool,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/shoes/boots/workboots,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/engineering,
+/obj/item/clothing/glasses/sunglasses,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"avM" = (
+/obj/random/tool,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"avS" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Starboard Hallway 1"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"avT" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"avU" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"avV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/prison)
+"awb" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d2_near_sw";
+ name = "Near SC - Deck 2 South West"
+ },
+/turf/space,
+/area/space)
+"awe" = (
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"awf" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"awg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"awh" = (
+/obj/structure/sign/warning/secure_area/armory,
+/turf/simulated/wall/r_wall,
+/area/security/armoury)
+"awi" = (
+/turf/simulated/floor/greengrid/nitrogen,
+/area/engineering/engine_room)
+"awj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"awl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"awm" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awo" = (
+/obj/machinery/computer/power_monitor{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Engineering";
+ departmentType = 3;
+ name = "Engineering RC";
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"awq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"awr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aws" = (
+/obj/machinery/computer/security/engineering{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"awu" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/engineering,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"awv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - EVA"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aww" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"awx" = (
+/obj/machinery/power/grid_checker,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"awy" = (
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/door/window/westright{
+ name = "Jetpack Storage";
+ req_one_access = list(11,24)
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"awA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awB" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awI" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"awK" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/item/clothing/glasses/meson,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"awO" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awQ" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awS" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"awU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"awV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"awW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"awX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"awY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"awZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"axb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"axo" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"axp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"axu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"axv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"axw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"axx" = (
+/obj/structure/closet/crate/plastic,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/medical,
+/obj/random/medical/lite,
+/obj/random/bomb_supply,
+/obj/random/bomb_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"axA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 5;
+ icon_state = "2-5"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"axC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"axD" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"axE" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"axG" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"axH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"axI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/mob/living/simple_mob/animal/passive/opossum/poppy,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/foyer)
+"axJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"axK" = (
+/obj/machinery/computer/atmoscontrol{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"axN" = (
+/turf/simulated/wall,
+/area/engineering/atmos/monitoring)
+"axO" = (
+/obj/machinery/suit_cycler/engineering,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"axP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"axQ" = (
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/door/window/westleft{
+ name = "Jetpack Storage";
+ req_one_access = list(11,24)
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"axS" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/hallway/atmos_hallway)
+"axY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aya" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"ayd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"ayj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Armoury Section";
+ req_access = list(3);
+ req_one_access = list(3)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/armoury)
+"ayk" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ id = "Armoury";
+ name = "Emergency Access"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/armoury)
+"ayl" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aym" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/turf/simulated/floor,
+/area/engineering/engine_monitoring)
+"ayq" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"ayA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"ayB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"ayC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"ayD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ayE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ayG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ayH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ayL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ayM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ayN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ayP" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"ayQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"ayR" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"ayS" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/cell_charger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/tool/powermaint,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"ayT" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"ayU" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"ayV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"ayW" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/door/window/westright{
+ name = "Atmospherics Suits";
+ req_access = list(24)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"ayX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aze" = (
+/obj/item/device/t_scanner,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"azf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"azh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"azi" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/blast/regular{
+ id = "Armoury";
+ name = "Emergency Access"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/armoury)
+"azj" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"azl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"azm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"azn" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"azp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"azq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"azr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"azs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"azA" = (
+/obj/structure/table/standard,
+/obj/item/weapon/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/security_restroom)
+"azB" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"azD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"azE" = (
+/obj/structure/closet/secure_closet/security,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_lockerroom)
+"azG" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"azH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"azI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"azJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"azK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"azL" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Test Chamber Port";
+ dir = 4;
+ network = list("Research","Toxins Test Area")
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"azM" = (
+/obj/structure/closet/crate/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
+/obj/item/stack/material/lead{
+ amount = 30
+ },
+/turf/simulated/floor,
+/area/engineering/storage)
+"azN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"azO" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
+/obj/structure/dispenser,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"azT" = (
+/turf/simulated/wall,
+/area/engineering/hallway/atmos_hallway)
+"azU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/engineering/hallway/atmos_hallway)
+"azV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/hallway/atmos_hallway)
+"azW" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/machinery/recharger,
+/obj/item/weapon/tape_roll,
+/obj/machinery/button/remote/blast_door{
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ pixel_x = -24;
+ req_access = list(10)
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = -34
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"azX" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"azY" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red,
+/obj/item/weapon/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aAa" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/engineering,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastright{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"aAc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aAd" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/westleft{
+ name = "Atmospherics Suits";
+ req_access = list(24)
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"aAf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/device/gps/engineering,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aAg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aAh" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/device/gps/engineering,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aAi" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/item/device/gps/engineering,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aAj" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/item/device/gps/engineering,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aAn" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"aAo" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"aAq" = (
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"aAr" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Test Chamber Starboard";
+ dir = 8;
+ network = list("Research","Toxins Test Area")
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aAs" = (
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"aAt" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aAu" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"aAv" = (
+/obj/structure/table/steel,
+/obj/item/weapon/newspaper,
+/obj/item/device/tape,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aAw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aAH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine charging port.";
+ id = "SupermatterPort";
+ name = "Reactor Blast Doors";
+ pixel_x = -25;
+ pixel_y = 6;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ pixel_x = -25;
+ pixel_y = -6;
+ req_access = list(10)
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aAK" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aAQ" = (
+/obj/structure/sign/directions/bridge{
+ dir = 4;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/cargo,
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"aAR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aAT" = (
+/obj/structure/sign/greencross{
+ desc = "White cross in a green field, you can get medical aid here.";
+ name = "First-Aid"
+ },
+/turf/simulated/wall,
+/area/ai_monitored/storage/emergency/eva)
+"aAU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aAV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aAW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fpcenter)
+"aAZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aBe" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/storage)
+"aBm" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aBp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/item/device/geiger/wall/north,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aBr" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"aBt" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"aBu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aBv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aBA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/door_assembly/door_assembly_mhatch{
+ anchored = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aBC" = (
+/turf/simulated/wall,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"aBD" = (
+/turf/simulated/floor/tiled/yellow,
+/area/maintenance/engineering)
+"aBF" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/ascenter)
+"aBL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aBT" = (
+/obj/machinery/vending/wallmed1{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aBU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aBV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aBW" = (
+/obj/structure/table/steel,
+/obj/item/device/communicator,
+/obj/item/device/communicator,
+/obj/item/device/radio/headset,
+/obj/item/device/radio/headset,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aBX" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aBZ" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Brig"
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/prison)
+"aCb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 3"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aCd" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"aCe" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aCg" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aCh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aCi" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aCj" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"aCk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"aCl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"aCm" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"aCo" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"aCq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/medical/first_aid_station/seconddeck/port)
+"aCt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/apcenter)
+"aCu" = (
+/obj/machinery/account_database,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"aCv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"aCw" = (
+/obj/machinery/seed_storage/garden,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"aCx" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aCy" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aCD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"aCG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aCH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aCK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aCL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aCM" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/engineering/engineer_eva)
+"aCN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engineer_eva)
+"aCO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aCP" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aCW" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Brig"
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/prison)
+"aCX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aDa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"aDc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"aDd" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aDe" = (
+/obj/structure/cryofeed{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/prison)
+"aDf" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_equiptment_storage)
+"aDr" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"aDs" = (
+/obj/machinery/flasher/portable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aDu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aDv" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"aDw" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aDx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/airlock{
+ id = "engine_electrical_maintenance";
+ name = "Door Bolt Control";
+ pixel_x = 25;
+ pixel_y = 30;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aDy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ id_tag = "engine_electrical_maintenance";
+ locked = 1;
+ name = "SMES Access";
+ req_access = list(10)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_smes)
+"aDz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal,
+/obj/machinery/button/remote/airlock{
+ id = "engine_electrical_maintenance";
+ name = "Door Bolt Control";
+ pixel_y = 26;
+ req_access = list(10);
+ specialfunctions = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Engine Output";
+ name_tag = "Engine Output"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"aDA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"aDB" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 8;
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"aDC" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"aDD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aDE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aDF" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"aDG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"aDH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aDK" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"aDL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"aDN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aDO" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"aDP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Engineering Hallway 1";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 8;
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aDQ" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aDS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aDT" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aDV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aEb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"aEd" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/item/device/gps/engineering/atmos,
+/turf/simulated/floor/tiled/yellow,
+/area/engineering/locker_room)
+"aEf" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"aEh" = (
+/obj/machinery/flasher/portable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Equipment Storage"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aEi" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"aEk" = (
+/obj/machinery/floodlight,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"aEl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aEr" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aEs" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aEB" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/space,
+/area/space)
+"aEF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aEG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aEI" = (
+/obj/structure/cable,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Engine - Main";
+ charge = 2e+007;
+ cur_coils = 4;
+ input_attempt = 1;
+ input_level = 750000;
+ output_level = 750000
+ },
+/obj/effect/engine_setup/smes/main,
+/turf/simulated/floor/plating,
+/area/engineering/engine_smes)
+"aEJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"aEK" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aEP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aER" = (
+/obj/machinery/atmospherics/valve/digital/open,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aES" = (
+/obj/machinery/atmospherics/valve/digital/open,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aET" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance Access";
+ req_one_access = list(12,19)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/stairwell)
+"aEU" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"aEV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aFa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Workshop";
+ req_one_access = list(11,24)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/workshop)
+"aFe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"aFg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer";
+ req_access = list(56)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/chief)
+"aFh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"aFi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"aFl" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aFm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aFn" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aFr" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aFs" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aFt" = (
+/turf/simulated/wall,
+/area/engineering/engineer_eva)
+"aFu" = (
+/turf/simulated/wall,
+/area/engineering/locker_room)
+"aFv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"aFw" = (
+/obj/item/frame/extinguisher_cabinet,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aFx" = (
+/obj/item/stack/tile/floor/yellow,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aFA" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"aFB" = (
+/turf/simulated/wall,
+/area/security/security_equiptment_storage)
+"aFF" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aFG" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aFH" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hop_office"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hop)
+"aFJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hop)
+"aFK" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/hop,
+/obj/item/clothing/glasses/omnihud,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"aFN" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"aFO" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"aFQ" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/security_hallway)
+"aFT" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = null;
+ name = "EMT Bay";
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_emt_bay)
+"aFW" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance Access";
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"aGd" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/r_wall,
+/area/medical/reception)
+"aGg" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/lab)
+"aGh" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/security/security_hallway)
+"aGj" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Armoury";
+ name = "Emergency Access";
+ pixel_x = 24;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/security_hallway)
+"aGk" = (
+/turf/simulated/wall,
+/area/security/evidence_storage)
+"aGw" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aGz" = (
+/obj/machinery/atmospherics/valve/digital/open,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aGA" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aGC" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aGD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aGF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aGI" = (
+/obj/machinery/papershredder,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 6;
+ name = "Chief Engineer RC";
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aGJ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aGK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aGL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/status_display{
+ layer = 4
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"aGM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aGN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aGO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aGQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aGR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/break_room)
+"aGS" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aGT" = (
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aGU" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aGV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aGX" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock{
+ name = "Engineering Washroom";
+ req_one_access = list(11,24)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engi_restroom)
+"aHb" = (
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aHd" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aHe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aHk" = (
+/obj/structure/filingcabinet,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aHl" = (
+/obj/structure/table/standard,
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_y = 28
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/obj/machinery/photocopier/faxmachine{
+ department = "Quartermaster's Office"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aHo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"aHp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aHq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"aHs" = (
+/obj/structure/closet/secure_closet/hop,
+/obj/item/device/megaphone,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"aHw" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"aHx" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"aHy" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 4";
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"aHA" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aHB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"aHD" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/r_wall,
+/area/medical/medbay_emt_bay)
+"aHF" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aHG" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aHH" = (
+/turf/simulated/wall/r_wall,
+/area/security/evidence_storage)
+"aHI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Security Restroom"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_restroom)
+"aHJ" = (
+/turf/simulated/wall,
+/area/security/security_lockerroom)
+"aHK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/security{
+ name = "Security Locker Room";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_lockerroom)
+"aHL" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Firing Range";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aHM" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aHN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aHO" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aHP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aHZ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aIa" = (
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"aId" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aIf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aIg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/vending/loadout/overwear,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"aIj" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/random_multi/single_item/hand_tele,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aIk" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aIl" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"aIm" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aIo" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aIp" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Foyer";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aIs" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aIt" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aIv" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Break Room";
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aIx" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"aIA" = (
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aIE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/navbeacon/patrol{
+ location = "CH2";
+ next_patrol = "CH3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aIH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aII" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/random/maintenance/clean,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/construction/seconddeck/construction1)
+"aIJ" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aIM" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ name = "Cargo automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aIN" = (
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aIP" = (
+/obj/structure/table/standard,
+/obj/item/weapon/coin/silver{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/coin/silver,
+/obj/item/device/retail_scanner/civilian{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/item/weapon/cartridge/quartermaster,
+/obj/item/weapon/cartridge/quartermaster,
+/obj/item/weapon/cartridge/quartermaster,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aIR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aIT" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aIV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aIW" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hop_office"
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hop)
+"aIX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"aIY" = (
+/obj/machinery/vending/cola{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aIZ" = (
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"aJa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aJb" = (
+/obj/structure/lattice,
+/obj/item/stack/rods,
+/obj/structure/grille/broken,
+/turf/space,
+/area/space)
+"aJc" = (
+/obj/structure/grille/broken,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"aJd" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aJf" = (
+/obj/structure/table/steel,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/dice,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1443;
+ icon_state = "on";
+ id = "air_in";
+ use_power = 1
+ },
+/obj/item/weapon/stool,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJh" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJi" = (
+/obj/machinery/flasher{
+ id = "permflash";
+ name = "Floor mounted flash"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJl" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/flasher{
+ id = "permflash";
+ name = "Floor mounted flash"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aJo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJp" = (
+/obj/machinery/flasher{
+ id = "permflash";
+ name = "Floor mounted flash"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aJq" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"aJt" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"aJv" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine radiator viewport shutters.";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutters";
+ pixel_y = -25;
+ req_access = list(10)
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aJw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aJx" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/tool/powermaint,
+/turf/simulated/floor/tiled/steel,
+/area/construction/seconddeck/construction1)
+"aJB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aJD" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/blood/oil/streak{
+ amount = 0
+ },
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aJE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aJH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Chief Engineer's Office"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aJI" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/device/megaphone,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aJJ" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/weapon/folder/yellow_ce,
+/obj/item/weapon/pen/multi,
+/obj/item/weapon/stamp/ce,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aJK" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/book/manual/supermatter_engine,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/item/weapon/flame/lighter/zippo,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aJL" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aJN" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aJO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aJP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aJQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aJV" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/item/weapon/storage/box/nifsofts_engineering,
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aJW" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aJY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Engineering Washroom"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engi_restroom)
+"aKd" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aKf" = (
+/obj/structure/closet/wardrobe/black,
+/obj/item/clothing/shoes/boots/combat,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"aKg" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/fpcenter)
+"aKh" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aKi" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp/qm,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aKj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/item/device/megaphone,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Quartermaster Office";
+ dir = 8;
+ name = "security camera"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"aKn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"aKo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aKr" = (
+/obj/structure/stairs/spawner/south,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/stairwell)
+"aKz" = (
+/obj/machinery/papershredder,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"aKA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"aKB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - HoP's Office";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"aKC" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hop)
+"aKG" = (
+/obj/machinery/suit_cycler/medical,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_emt_bay)
+"aKH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"aKJ" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"aKK" = (
+/obj/structure/table/steel,
+/obj/item/device/multitool,
+/obj/item/weapon/deck/cards,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - EMT Bay";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"aKM" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/food/drinks/britcup,
+/obj/random/medical,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = -5
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aKN" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/item/device/denecrotizer/medical,
+/obj/item/device/sleevemate,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aKO" = (
+/obj/item/modular_computer/console/preset/medical{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aKP" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "medbayrecquar";
+ name = "Medbay Entrance Quarantine Shutters Control";
+ pixel_x = -4;
+ pixel_y = -4;
+ req_access = list(5)
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aKQ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/computer/transhuman/designer{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"aKR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aKS" = (
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/prison)
+"aKT" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aKU" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aKV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aKW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aKX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aKY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Equipment Storage";
+ req_access = list(2)
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/security_equiptment_storage)
+"aKZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aLa" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aLb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aLc" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = list(1)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/evidence_storage)
+"aLd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aLe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aLf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aLg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aLh" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Evidence Storage";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aLs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aLt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aLu" = (
+/obj/machinery/vending/tool{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aLv" = (
+/obj/structure/closet/toolcloset,
+/obj/item/device/flashlight,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aLw" = (
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aLx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aLy" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/workshop)
+"aLB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aLC" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aLD" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"aLE" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"aLF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aLG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aLH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aLI" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aLJ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/break_room)
+"aLM" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aLN" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aLO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"aLP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"aLQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"aLS" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aLT" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aLX" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/construction/seconddeck/construction1)
+"aLY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster";
+ req_access = list(41)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/qm)
+"aLZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aMc" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance Access";
+ req_one_access = list(12,19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aMg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"aMi" = (
+/obj/structure/sign/deck/second,
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/stairwell)
+"aMm" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/random/medical,
+/obj/random/medical,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"aMn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"aMo" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aMp" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"aMr" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMs" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMt" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMu" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMv" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Briefing"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMw" = (
+/obj/structure/sign/goldenplaque{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMy" = (
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/item/weapon/storage/box/glasses/square,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aMA" = (
+/turf/simulated/wall,
+/area/security/range)
+"aMB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aMC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aMN" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"aMP" = (
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/quartermaster/warehouse)
+"aMQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/apcenter)
+"aMR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport1";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aMS" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aMT" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 2;
+ tag_south = 4;
+ use_power = 0
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/engine_setup/atmo_filter,
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"aMV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"aMY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aNa" = (
+/obj/machinery/vending/engivend{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aNb" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"aNs" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aNt" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aNv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aNw" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/cigarettes,
+/obj/random/tech_supply,
+/obj/random/technology_scanner,
+/obj/random/toolbox,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aNz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH6";
+ next_patrol = "CIV"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aNB" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"aNC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"aND" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "exam_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/exam_room)
+"aNE" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Examination Room";
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/exam_room)
+"aNG" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aNH" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"aNI" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"aNL" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aNM" = (
+/obj/structure/cable/green,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aNN" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNP" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNR" = (
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 1";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNV" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aNZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aOa" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/computer/cryopod{
+ layer = 3.3;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aOb" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom/department/security{
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aOc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aOd" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aOe" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/gun/projectile/colt/detective,
+/obj/item/weapon/gun/projectile/colt/detective,
+/obj/item/weapon/gun/projectile/colt/detective,
+/obj/item/weapon/gun/projectile/colt/detective,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_equiptment_storage)
+"aOg" = (
+/obj/structure/table/standard,
+/obj/item/device/t_scanner,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"aOh" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "recycler"
+ },
+/obj/machinery/recycling/crusher,
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"aOi" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "disposalsorter"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"aOj" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/warehouse)
+"aOk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"aOm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"aOn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"aOo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aOr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aOt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aOC" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/requests_console{
+ department = "Engineering";
+ departmentType = 3;
+ name = "Engineering RC";
+ pixel_y = -32
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aOD" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aOE" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/material/plasteel{
+ amount = 30
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/fiftyspawner/plastic,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aOF" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/airlock_electronics,
+/obj/item/weapon/airlock_electronics,
+/obj/item/weapon/cell/high,
+/obj/item/stack/material/glass/phoronrglass{
+ amount = 20
+ },
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aOG" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/belt/utility,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/stack/cable_coil/cyan{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/cyan{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aOL" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/weapon/rig/ce/equipped,
+/obj/machinery/door/window/northright{
+ name = "Chief Engineer Suit Storage"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/chief)
+"aON" = (
+/obj/machinery/atm{
+ pixel_x = -28
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/subterranean,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aOO" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aOP" = (
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aOQ" = (
+/turf/simulated/wall,
+/area/engineering/break_room)
+"aOR" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aOS" = (
+/obj/machinery/computer/security/engineering{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aOU" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/woodentable,
+/obj/item/weapon/dice,
+/obj/item/weapon/deck/cards,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aOV" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/glasses/square,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aOX" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"aPa" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aPb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aPc" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aPd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aPf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"aPj" = (
+/obj/structure/closet/crate/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/clean,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/medbay)
+"aPk" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medbay_emt_bay)
+"aPm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = null;
+ name = "EMT Bay";
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_emt_bay)
+"aPn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_emt_bay)
+"aPo" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/security_equiptment_storage)
+"aPp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aPr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_hallway)
+"aPs" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aPt" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/laundry_basket,
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aPu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aPv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aPw" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aPx" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aPy" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPz" = (
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPA" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPB" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPE" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPF" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aPG" = (
+/obj/structure/sign/warning/caution{
+ name = "\improper CAUTION: FIRING RANGE"
+ },
+/turf/simulated/wall,
+/area/security/range)
+"aPH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aPK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ffff"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aPN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ffff"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aPO" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aPP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#ffcc00"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aPS" = (
+/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{
+ id_tag = "engine_room_airlock";
+ name = "Engine Room Airlock";
+ pixel_y = 24;
+ tag_airpump = "engine_airlock_pump";
+ tag_chamber_sensor = "eng_al_c_snsr";
+ tag_exterior_door = "engine_airlock_exterior";
+ tag_exterior_sensor = "eng_al_ext_snsr";
+ tag_interior_door = "engine_airlock_interior";
+ tag_interior_sensor = "eng_al_int_snsr"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"aPT" = (
+/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id = "engine_airlock_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "eng_al_c_snsr";
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"aPU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engine_airlock)
+"aPV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"aPY" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/workshop)
+"aQb" = (
+/obj/machinery/door/window/northleft{
+ name = "Animal Pen";
+ req_access = newlist();
+ req_one_access = list(35,28)
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"aQd" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/cash,
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"aQe" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/chief)
+"aQf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Access"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/foyer)
+"aQg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/engineering/foyer)
+"aQh" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/foyer)
+"aQo" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/break_room)
+"aQr" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engi_restroom)
+"aQt" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/structure/disposalpipe/down,
+/obj/structure/cable{
+ d1 = 32;
+ d2 = 2;
+ icon_state = "32-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/open,
+/area/maintenance/engineering)
+"aQu" = (
+/obj/structure/lattice,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/open,
+/area/maintenance/engineering)
+"aQv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"aQw" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/central)
+"aQx" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aQz" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aQA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aQB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"aQC" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aQD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aQE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aQG" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aQH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_access = list(12)
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"aQI" = (
+/obj/structure/disposalpipe/sortjunction/untagged{
+ dir = 1
+ },
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Warehouse North";
+ dir = 6;
+ name = "security camera"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"aQJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aQM" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster";
+ req_access = list(41)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/qm)
+"aQN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "quart_tint"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"aQO" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/quartermaster/lockerroom)
+"aQQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aQR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"aQV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aQW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aQY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aRa" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/apcenter)
+"aRc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"aRf" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/blast/regular{
+ id = "Cell 2";
+ name = "Cell 2 Door"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"aRg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"aRh" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"aRi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"aRo" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aRp" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aRq" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/blast/regular{
+ id = "Cell 1";
+ name = "Cell 1 Door"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"aRr" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aRs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonentry";
+ name = "Brig Entry";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"aRt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonentry";
+ name = "Brig Entry";
+ req_access = list(2)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"aRu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aRv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "Hot Loop Waste Gas Ejection Switch"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aRw" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"aRz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aRC" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aRE" = (
+/obj/machinery/atmospherics/valve/digital{
+ name = "secondary TEG valve"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aRK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor/airlock_exterior{
+ id_tag = "eng_al_ext_snsr";
+ layer = 3.3;
+ master_tag = "engine_room_airlock";
+ pixel_y = -22;
+ req_access = list(10)
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"aRL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Engine Access";
+ req_one_access = list(11)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engine_airlock)
+"aRN" = (
+/obj/machinery/cryopod/robot{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"aRQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aRR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aRV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"aSb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aSc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aSd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aSe" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"aSg" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aSh" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/bookcase/manuals/engineering,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"aSi" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aSj" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aSl" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aSm" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aSp" = (
+/obj/machinery/light/small,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"aSq" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 4;
+ icon_state = "32-4"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/substation/central)
+"aSr" = (
+/turf/simulated/wall,
+/area/security/warden)
+"aSs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Warden's Office";
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/warden)
+"aSt" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"aSv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"aSx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aSy" = (
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"aSz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aSA" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aSC" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Emergency Storage"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"aSD" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"aSE" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aSG" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aSH" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/red,
+/obj/item/clothing/glasses/hud/security,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/main)
+"aSI" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/red,
+/area/security/main)
+"aSJ" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/random/trash,
+/obj/random/trash,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"aSK" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/obj/item/device/geiger/wall/west,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"aSL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"aSP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"aSQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"aSR" = (
+/obj/structure/disposalpipe/tagger/partial{
+ dir = 1;
+ name = "Sorting Office";
+ sort_tag = "Sorting Office"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/warehouse)
+"aST" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"aSU" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aSV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aTb" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aTc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aTd" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/donut,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aTe" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"aTf" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/magnetic_controller{
+ autolink = 1
+ },
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/aviator,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/weapon/tool/screwdriver,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aTg" = (
+/obj/machinery/door/window/northleft{
+ name = "Range Access"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aTh" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/gun/energy/laser/practice,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aTi" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/gun/energy/laser/practice,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aTj" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"aTk" = (
+/turf/simulated/wall/r_wall,
+/area/security/brig)
+"aTl" = (
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aTm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aTn" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 Locker"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Cell 2";
+ dir = 8
+ },
+/obj/item/device/radio/headset,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aTo" = (
+/obj/structure/bed/padded,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "Cell 1";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aTp" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 Locker"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Cell 1";
+ dir = 8
+ },
+/obj/item/device/radio/headset,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aTq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aTs" = (
+/obj/structure/lattice,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Cooling North";
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"aTt" = (
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aTu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/digital{
+ name = "secondary TEG valve"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aTv" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/ai_status_display{
+ pixel_y = 28
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aTB" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_airlock)
+"aTC" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_airlock)
+"aTH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/obj/item/device/geiger/wall/west,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aTI" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Master Grid";
+ name_tag = "Master"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aTK" = (
+/turf/simulated/wall,
+/area/engineering/workshop)
+"aTR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aTS" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aTT" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/radio/off{
+ pixel_y = 6
+ },
+/obj/item/device/radio/off{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/device/radio/off{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/device/radio/off,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"aTV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aTW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aTX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aTY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"aTZ" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Coffee Shop";
+ sortType = "Coffee Shop"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"aUc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aUd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig Enterance";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aUg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "visit_blast";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/prison)
+"aUh" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/teleporter)
+"aUk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"aUm" = (
+/obj/machinery/teleport/station{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter)
+"aUn" = (
+/obj/machinery/teleport/hub{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter)
+"aUq" = (
+/obj/machinery/door/airlock{
+ id_tag = "visitdoor";
+ name = "Visitation Area";
+ req_access = list(63)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"aUu" = (
+/obj/machinery/computer/prisoner,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aUv" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Warden's Office"
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aUw" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Break Room";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"aUx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aUy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aUz" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 5
+ },
+/obj/item/weapon/stamp/ward,
+/obj/item/weapon/tool/crowbar,
+/obj/item/device/radio/off,
+/obj/item/weapon/tool/wrench,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/gps/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aUA" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/machinery/light_switch{
+ pixel_x = 36;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/button/windowtint{
+ id = "secward";
+ pixel_x = 36;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aUB" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway Fore";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aUC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aUD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aUE" = (
+/turf/simulated/wall,
+/area/security/security_processing)
+"aUG" = (
+/obj/structure/table/standard,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"aUH" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"aUI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"aUJ" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"aUK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"aUM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aUN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aUO" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aUP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aUS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aUT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aUV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/turf/simulated/floor,
+/area/engineering/engine_monitoring)
+"aUW" = (
+/obj/machinery/computer/power_monitor{
+ dir = 4
+ },
+/obj/item/device/geiger/wall/north,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aUX" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/supermatter_engine,
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aUY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aUZ" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aVb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Emergency EVA";
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"aVd" = (
+/obj/structure/bed/padded,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/item/weapon/bedsheet/green,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"aVj" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/port)
+"aVn" = (
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ dir = 4
+ },
+/obj/structure/sign/directions/cryo{
+ dir = 4;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"aVw" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"aVx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/computer/guestpass{
+ pixel_x = 28
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"aVy" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aVF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/medbay)
+"aVG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fpcenter)
+"aVJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"aVL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aVU" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aVV" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"aVZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/red{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/folder/red{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/hand_labeler,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"aWa" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aWb" = (
+/turf/simulated/wall,
+/area/maintenance/research)
+"aWe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aWf" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"aWi" = (
+/turf/simulated/wall,
+/area/maintenance/robotics)
+"aWj" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"aWl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aWm" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/red,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/main)
+"aWn" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/main)
+"aWo" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aWp" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"aWq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/range)
+"aWr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aWs" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aWt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"aWu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aWv" = (
+/obj/machinery/light/spot,
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"aWw" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/atmos)
+"aWx" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Nitrogen"
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/atmos)
+"aWy" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/atmos)
+"aWz" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Oxygen"
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/atmos)
+"aWA" = (
+/obj/machinery/air_sensor{
+ frequency = 1443;
+ id_tag = "air_sensor";
+ output = 7
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/atmos)
+"aWB" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Air"
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/corner/blue{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/atmos)
+"aWC" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"aWF" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1438;
+ id = "cooling_in";
+ name = "Coolant Injector";
+ pixel_y = 1;
+ power_rating = 30000;
+ use_power = 1;
+ volume_rate = 700
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/engine_room)
+"aWG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ id_tag = "engine_access_hatch";
+ locked = 1;
+ req_access = list(11)
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aWH" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"aWI" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aWJ" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "Emergency Cooling Valve 1"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aWK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aWL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/turf/simulated/floor,
+/area/engineering/engine_monitoring)
+"aWM" = (
+/obj/machinery/computer/rcon{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aWO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aWP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engine Monitoring Room";
+ req_access = list(11)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 10;
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engine_monitoring)
+"aWZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/port)
+"aXa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "medbayrecquar";
+ name = "Medbay Emergency Quarantine Shutters";
+ opacity = 0
+ },
+/obj/machinery/light,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"aXj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXk" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXm" = (
+/obj/machinery/station_map{
+ pixel_y = 32
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/port)
+"aXn" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXo" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXq" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aXr" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/port)
+"aXs" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fpcenter)
+"aXu" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aXB" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter)
+"aXI" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aXJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"aXK" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"aXM" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "waste_sensor";
+ output = 63
+ },
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/atmos)
+"aXN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"aXQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "qm_warehouse";
+ name = "Warehouse Shutters"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"aXR" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"aXU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aXV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aXW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D3)
+"aXX" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"aXY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"aYd" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/weapon/stamp/cargo,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"aYe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/lockerroom)
+"aYf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"aYj" = (
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Gas Mixing"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/atmos)
+"aYk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aYl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"aYn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aYo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aYq" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Medbay Substation";
+ req_access = list(5);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"aYs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aYt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "permentryflash";
+ name = "Floor mounted flash"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aYu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aYv" = (
+/obj/structure/bed/chair,
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Visitation";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aYw" = (
+/obj/machinery/flasher{
+ id = "IAflash";
+ pixel_x = 26
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aYx" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -26;
+ pixel_y = 26
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aYy" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_waste)
+"aYA" = (
+/obj/machinery/door/blast/regular{
+ id = "EngineVent";
+ name = "Reactor Vent"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/engine_room)
+"aYB" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 8;
+ icon_state = "emitter2";
+ id = "EngineEmitter";
+ state = 2
+ },
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aYC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Engine Power";
+ name_tag = "Engine Power"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aYD" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aYE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"aYF" = (
+/obj/machinery/disposal,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Monitoring Room";
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 10;
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aYJ" = (
+/turf/simulated/wall,
+/area/engineering/hallway/engineer_hallway)
+"aYK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"aYX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"aZc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/port)
+"aZe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"aZf" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"aZg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"aZh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"aZj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"aZk" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/port)
+"aZm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"aZn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aZx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"aZB" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aZC" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aZD" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aZE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aZF" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance Access";
+ req_one_access = list(12,19)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"aZG" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"aZH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"aZI" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"aZJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aZK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aZL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"aZM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D3)
+"aZN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "security_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = 26;
+ pixel_y = 38;
+ req_access = list(2)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Warden_Shutters";
+ name = "Privacy Shutters";
+ pixel_x = 26;
+ pixel_y = 27;
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aZO" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aZQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"aZS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"aZU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"aZV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"aZW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"aZY" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"aZZ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"baa" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secpro"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_processing)
+"bab" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bac" = (
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bad" = (
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bae" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/evidence,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bai" = (
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"baj" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/item/weapon/storage/bag/trash,
+/obj/structure/table/gamblingtable,
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bak" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bam" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bap" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/engineering{
+ name = "Cargo Substation";
+ req_one_access = list(50)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"baq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bas" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/nifsofts_security,
+/turf/simulated/floor/tiled/red,
+/area/security/main)
+"bav" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/box/holowarrants{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/holowarrants{
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/main)
+"baw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bax" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"baz" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 2";
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/engine_room)
+"baA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/engine_room)
+"baB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ id_tag = "engine_access_hatch";
+ locked = 1;
+ req_access = list(11)
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"baC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"baD" = (
+/obj/machinery/atmospherics/unary/vent_pump/engine{
+ dir = 4;
+ external_pressure_bound = 100;
+ external_pressure_bound_default = 0;
+ frequency = 1438;
+ icon_state = "map_vent_in";
+ id_tag = "cooling_out";
+ initialize_directions = 1;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/engine_room)
+"baE" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"baG" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/general_air_control/supermatter_core{
+ dir = 4;
+ input_tag = "cooling_in";
+ name = "Engine Cooling Control";
+ output_tag = "cooling_out";
+ sensors = list("engine_sensor"="Engine Core")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"baH" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"baI" = (
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"baJ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Engine Access";
+ req_one_access = list(11)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engine_airlock)
+"baK" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"baL" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_monitoring)
+"baO" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"baU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/port)
+"baV" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"baX" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 10;
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"baY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"baZ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbb" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"bbc" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbe" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Port Hallway 3";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbi" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"bbo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bbp" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/port)
+"bbq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Port Hallway 1";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"bbr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"bbt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH4";
+ next_patrol = "CH5"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"bbE" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bbF" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bbK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"bbM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Starboard Hallway 2";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"bbN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/station_map{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"bbP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"bbR" = (
+/obj/structure/ladder/updown,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"bbS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bbT" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bbU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bbV" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bbW" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/range)
+"bbZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"bca" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"bcb" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"bcc" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"bcd" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -26
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/item/ammo_magazine/s45/practice,
+/obj/item/ammo_magazine/s45/practice,
+/obj/item/ammo_magazine/s45/practice,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"bce" = (
+/turf/simulated/wall,
+/area/rnd/test_area)
+"bcf" = (
+/obj/machinery/door/airlock/external{
+ name = "Toxins Test Chamber"
+ },
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"bcg" = (
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/atmos)
+"bch" = (
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/atmos)
+"bcj" = (
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/atmos)
+"bck" = (
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/atmos)
+"bcl" = (
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/wall/r_wall,
+/area/security/brig)
+"bcn" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_room)
+"bcp" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "SupermatterPort";
+ layer = 3.3;
+ name = "Reactor Blast Door"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bcr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bcs" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/engine_setup/coolant_canister,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bcu" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/engine_setup/coolant_canister,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bcv" = (
+/obj/item/device/geiger/wall/south,
+/obj/machinery/computer/security/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"bcw" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/ears/earmuffs,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/clamp,
+/obj/item/clamp,
+/obj/item/clamp,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"bcx" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"bcy" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/engineering/engine_monitoring)
+"bcB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bcH" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"bcK" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"bcL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bcM" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bcR" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bcS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Emergency EVA"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/ai_monitored/storage/emergency/eva)
+"bcV" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"bcY" = (
+/obj/structure/disposalpipe/broken{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"bcZ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fpcenter)
+"bdb" = (
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"bdc" = (
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"bdd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bdg" = (
+/turf/unsimulated/mask,
+/area/hallway/primary/seconddeck/apcenter)
+"bdh" = (
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bdj" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bdk" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "HoP Maintenance Access";
+ req_one_access = list(57)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hop)
+"bdn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/ascenter)
+"bdo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/ascenter)
+"bdq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"bds" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bdA" = (
+/obj/structure/sign/directions/bridge{
+ dir = 8;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/evac{
+ dir = 8;
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/maintenance/medbay_fore)
+"bdF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window/brigdoor/northright{
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access = null;
+ req_one_access = list(2,4)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/brig)
+"bdG" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bdH" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bdN" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/obj/machinery/recycling/stamper,
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"bdO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/weapon/stool,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"bdP" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/warehouse)
+"bdQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bdR" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bdS" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/office)
+"bdT" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/window/brigdoor/northright{
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access = null;
+ req_one_access = list(2,4)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/brig)
+"bdU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonexit";
+ name = "Brig Exit";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"bdV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonexit";
+ name = "Brig Exit";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"bdY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bec" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_smes)
+"bei" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/tagger/partial{
+ dir = 1;
+ name = "Sorting Office";
+ sort_tag = "Sorting Office"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"beq" = (
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"ber" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"bet" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"bez" = (
+/obj/structure/flora/ausbushes/pointybush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"beB" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"beC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"beK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/apcenter)
+"beL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/apcenter)
+"beO" = (
+/obj/machinery/computer/skills,
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "hop_office_desk";
+ name = "Desk Privacy Shutter";
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/obj/machinery/button/windowtint{
+ id = "hop_office";
+ pixel_y = 29
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/item/device/gps/command,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"beP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"beQ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"beT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"beX" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"beY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"beZ" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"bfa" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bfb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bfc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bfh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bfl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"bfm" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bfo" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Cargo Subgrid";
+ name_tag = "Cargo Subgrid"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"bfp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"bfr" = (
+/obj/structure/closet,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bfs" = (
+/obj/structure/table/steel,
+/obj/item/device/t_scanner,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/random/cash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bft" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bfu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bfv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Emergency Storage"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"bfx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"bfy" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/window/northright{
+ name = "Visitation";
+ req_access = list(2)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"bfz" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/prison)
+"bfA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bfB" = (
+/obj/machinery/photocopier/faxmachine{
+ department = "Warden's Office"
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bfD" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bfE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bfF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bfG" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bfH" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Warden's Desk";
+ req_access = list(3)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bfI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bfJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bfK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bfL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Security Processing";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_processing)
+"bfN" = (
+/obj/structure/lattice,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Cooling South";
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"bfO" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bfQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"bfS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"bfV" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"bfW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bfY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bga" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bgb" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bgc" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bge" = (
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"bgf" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"bgj" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/weapon/storage/bag/ore,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"bgk" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"bgl" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"bgm" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"bgo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/emergency/eva)
+"bgp" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"bgq" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fpcenter)
+"bgr" = (
+/obj/structure/bed/roller,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"bgA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bgB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bgE" = (
+/obj/structure/table/glass,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/recharger,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Center Stair Access"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"bgF" = (
+/obj/structure/table/glass,
+/obj/random/cigarettes,
+/obj/random/toolbox,
+/obj/random/tech_supply,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"bgG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/stairwell)
+"bgH" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bgI" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bgK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "hop_office_desk";
+ name = "HoP Office Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Head of Personnel's Desk";
+ req_access = list(57)
+ },
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Reception Window"
+ },
+/obj/structure/noticeboard{
+ pixel_y = 27
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hop)
+"bgL" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"bgM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"bgN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bgQ" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bgR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"bgS" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bgU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bgW" = (
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "Medbay";
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"bgZ" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bha" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhb" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhc" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhf" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/device/t_scanner,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhg" = (
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/suit/storage/hazardvest,
+/obj/item/device/radio,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhh" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhi" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/backpack,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/firstaid,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"bhj" = (
+/turf/simulated/wall,
+/area/maintenance/medbay_fore)
+"bhk" = (
+/obj/structure/table/standard,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bhl" = (
+/obj/structure/table/standard,
+/obj/item/device/tape/random,
+/obj/item/device/taperecorder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bhm" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
+"bho" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bhp" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bhq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bhr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bhs" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/obj/machinery/door/window/southleft{
+ name = "Recycling Chute";
+ req_access = list(50)
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"bhw" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"bhx" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bhy" = (
+/obj/machinery/floodlight,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"bhD" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"bhE" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/space,
+/area/space)
+"bhF" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"bhH" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bhI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bhJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/alarm/nobreach{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ color = "#00ff00"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bhL" = (
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Engine - Core";
+ charge = 2e+006;
+ input_attempt = 1;
+ input_level = 100000;
+ output_level = 200000
+ },
+/obj/effect/engine_setup/smes,
+/turf/simulated/floor/plating,
+/area/engineering/engine_smes)
+"bhM" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/table/steel,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"bhN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/table/steel,
+/obj/item/device/multitool{
+ pixel_x = 5
+ },
+/obj/item/clothing/gloves/yellow,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - SMES Room";
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"bhP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bib" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/main)
+"bid" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bie" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bih" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"bii" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/stairwell)
+"bik" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"bin" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bir" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"biv" = (
+/turf/simulated/wall/r_wall,
+/area/medical/exam_room)
+"biw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bix" = (
+/obj/machinery/space_heater,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"biz" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Medical Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"biB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"biC" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ pixel_y = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/item/device/gps/medical/cmo,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"biD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"biE" = (
+/turf/simulated/wall,
+/area/security/aid_station)
+"biF" = (
+/turf/simulated/wall,
+/area/security/security_ses)
+"biG" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_ses)
+"biH" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"biI" = (
+/obj/effect/floor_decal/corner/red/full,
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "n2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/atmos)
+"biJ" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "n2_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/atmos)
+"biK" = (
+/obj/effect/floor_decal/corner/blue/full,
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "o2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/atmos)
+"biL" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "o2_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/atmos)
+"biM" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/corner/blue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1443;
+ id = "air_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/atmos)
+"biN" = (
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1443;
+ icon_state = "map_vent_in";
+ id_tag = "air_out";
+ internal_pressure_bound = 2000;
+ internal_pressure_bound_default = 2000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/atmos)
+"biO" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/engineering/atmos)
+"biP" = (
+/obj/effect/floor_decal/corner/lime/full,
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "waste_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/atmos)
+"biQ" = (
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "waste_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/atmos)
+"biT" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"biU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/machinery/door_timer/cell_2{
+ pixel_y = 32;
+ req_access = null;
+ req_one_access = list(2,4)
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Cell Hallway 1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"biV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/button/remote/blast_door{
+ id = "Cell 2";
+ name = "Cell 2 Door";
+ pixel_x = -1;
+ pixel_y = 28;
+ req_access = null;
+ req_one_access = list(2,4)
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/flasher{
+ id = "Cell 2";
+ name = "Cell 2 Flash";
+ pixel_x = -1;
+ pixel_y = 36;
+ req_access = list(2,4)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"biW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"biX" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"biY" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/space,
+/area/space)
+"biZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"bjc" = (
+/obj/machinery/power/generator{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bje" = (
+/obj/machinery/power/generator{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bjf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bjh" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bjt" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bju" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/door_timer/cell_1{
+ pixel_y = 32;
+ req_access = null;
+ req_one_access = list(2,4)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bjw" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Cell 1";
+ name = "Cell 1 Door";
+ pixel_x = -1;
+ pixel_y = 28;
+ req_access = null;
+ req_one_access = list(2,4)
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/flasher{
+ id = "Cell 1";
+ name = "Cell 1 Flash";
+ pixel_x = -1;
+ pixel_y = 36;
+ req_access = list(2,4)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bjx" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bjy" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Big Brother is watching.";
+ name = "Brig Monitor";
+ network = list("Prison");
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bjz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bjA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/remote/airlock{
+ id = "prisonentry";
+ name = "Entry Doors";
+ pixel_x = 26;
+ pixel_y = -9;
+ req_access = list(2)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "prisonexit";
+ name = "Exit Doors";
+ pixel_x = 26;
+ req_access = list(2)
+ },
+/obj/machinery/button/flasher{
+ id = "permentryflash";
+ name = "entry flash";
+ pixel_x = 39;
+ req_access = list(2)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Prison Gate";
+ name = "Prison Lockdown";
+ pixel_x = 32;
+ pixel_y = 9;
+ req_access = list(2)
+ },
+/obj/machinery/button/flasher{
+ id = "permflash";
+ name = "Brig flashes";
+ pixel_x = 39;
+ pixel_y = -9;
+ req_access = list(2)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bjC" = (
+/obj/machinery/computer/supplycomp/control,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bjD" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"bjE" = (
+/obj/machinery/button/remote/blast_door{
+ id = "visit_blast";
+ name = "Privacy Shutters";
+ pixel_x = 25
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/flasher{
+ id = "IAflash";
+ pixel_x = 25;
+ pixel_y = 12
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"bjF" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bjG" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 9";
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bjH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bjI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bjJ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bjL" = (
+/obj/structure/table/rack,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tank,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/catwalk,
+/obj/random/cash,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bjM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bjP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/stairwell)
+"bjQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/stairwell)
+"bjR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Center Elevator Access";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bjS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"bjT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"bka" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"bkc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"bkd" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"bke" = (
+/obj/structure/table/glass,
+/obj/item/weapon/cane,
+/obj/item/weapon/cane{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/rxglasses,
+/obj/random/medical,
+/obj/random/firstaid,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"bkf" = (
+/obj/machinery/vending/snack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkh" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bki" = (
+/obj/structure/bed/chair,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkj" = (
+/obj/structure/noticeboard{
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkk" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkl" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/computer/med_data/laptop,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bko" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/navbeacon/delivery/north{
+ location = "QM #1"
+ },
+/mob/living/bot/mulebot,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bkp" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Office Aft";
+ dir = 1;
+ name = "security camera"
+ },
+/obj/machinery/navbeacon/delivery/north{
+ location = "QM #3"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bkr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bkt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bkw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bkx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bkz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bkB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bkC" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bkE" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/item/clothing/glasses/meson,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"bkG" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"bkJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bkK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bkL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 6;
+ icon_state = "5-6"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"bkM" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bkO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bkP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bkR" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ dir = 4
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/apcenter)
+"bkT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"bkV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"bkW" = (
+/turf/simulated/wall,
+/area/construction/seconddeck/construction1)
+"bkY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/stack/tile/floor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/construction/seconddeck/construction1)
+"bkZ" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bla" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"blb" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"blc" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/weapon/hand_labeler,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bld" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"ble" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secpro"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_processing)
+"blf" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Processing";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"blg" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"blh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bli" = (
+/obj/structure/table/standard,
+/obj/item/device/camera,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"blk" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"bll" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"blm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"blo" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"blp" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"blr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"blu" = (
+/turf/simulated/wall,
+/area/maintenance/central)
+"blw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"blx" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/ascenter)
+"blB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"blC" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"blD" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"blN" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"blR" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio{
+ anchored = 1;
+ canhear_range = 1;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ name = "Reception Emergency Phone";
+ pixel_x = -5
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"blS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"blT" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"blU" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"blV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"blW" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"blX" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
+"blY" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = 10
+ },
+/obj/item/stack/medical/ointment{
+ pixel_y = 10
+ },
+/obj/random/medical/lite,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"blZ" = (
+/obj/structure/table/standard,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/item/weapon/reagent_containers/syringe/inaprovaline,
+/obj/item/weapon/reagent_containers/syringe/inaprovaline{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/syringe/inaprovaline{
+ pixel_y = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"bma" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Medical Station";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"bmb" = (
+/turf/simulated/wall/r_wall,
+/area/security/aid_station)
+"bmd" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bme" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bmf" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Secondary Equipment Storage"
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bmh" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bmk" = (
+/obj/structure/closet/crate,
+/obj/random/drinkbottle,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/action_figure,
+/obj/random/plushie,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bml" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"bmm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bmt" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"bmw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"bmA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Emergency Storage"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"bmC" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"bmD" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel,
+/area/construction/seconddeck/construction1)
+"bmG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bmH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bmJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bmP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bmQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bmT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bmX" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/central)
+"bmY" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/stairwell)
+"bmZ" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"bna" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bne" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bnf" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bni" = (
+/obj/structure/closet/wardrobe/orange,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bnj" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"bnk" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bnl" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"bno" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bnq" = (
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = 32
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bnr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bns" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/item/modular_computer/console/preset/medical{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bnu" = (
+/obj/machinery/photocopier,
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bnw" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Cryogenics";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bnx" = (
+/obj/machinery/door/blast/regular{
+ id = "toxinsdriver";
+ name = "Toxins Launcher Bay Door"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"bny" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"bnz" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"bnA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bnB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bnC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "mair_in_meter";
+ name = "Mixed Air Tank In"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bnD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "mair_out_meter";
+ name = "Mixed Air Tank Out"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bnE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"bnF" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/space,
+/area/space)
+"bnG" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"bnH" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"bnM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bnN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bnO" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bnP" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bnQ" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"bnR" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"bnS" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"bnW" = (
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"bnY" = (
+/obj/structure/closet/hydrant{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"bnZ" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"bob" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor,
+/area/engineering/atmos)
+"boc" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bod" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bof" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bog" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bom" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bon" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"boo" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bop" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bos" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"bou" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bov" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bow" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"boB" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"boC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"boE" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/computer/cryopod{
+ layer = 3.3;
+ pixel_y = -32
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"boF" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"boH" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"boI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"boL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = list(57)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/hop)
+"boP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"boR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"boU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/apcenter)
+"boV" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -10
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/apcenter)
+"boY" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hop)
+"boZ" = (
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/apcenter)
+"bpa" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/fireaxecabinet{
+ pixel_x = -32
+ },
+/obj/item/weapon/stool/padded,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Paramedic"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"bpb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"bpc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"bpf" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36;
+ pixel_y = -6
+ },
+/obj/machinery/button/windowtint{
+ id = "exam_window_tint";
+ pixel_x = 36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"bph" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bpi" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bpj" = (
+/obj/machinery/light/small,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bpk" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bpl" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bpm" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio{
+ anchored = 1;
+ canhear_range = 1;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ name = "Reception Emergency Phone"
+ },
+/obj/machinery/door/window/eastright{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bpn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"bpo" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bpp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bpq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bpr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Cell Hallway 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bps" = (
+/obj/item/weapon/material/shard{
+ icon_state = "medium"
+ },
+/obj/item/stack/rods,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bpt" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bpy" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bpz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bpB" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/item/weapon/material/knife,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bpD" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/loading,
+/obj/machinery/navbeacon/delivery/south{
+ location = "Bar"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/bar)
+"bpE" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/aft)
+"bpF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/valve/shutoff{
+ dir = 4;
+ name = "Deck 2 Aft automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bpG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bpH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bpI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bpK" = (
+/obj/machinery/door/airlock{
+ id_tag = "visitdoor";
+ name = "Visitation Area";
+ req_access = list(63)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/prison)
+"bpL" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bpM" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bpN" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"bpO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bpP" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bqc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bqe" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"bqf" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bqh" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/modular_computer/console/preset/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bqi" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"bql" = (
+/obj/machinery/computer/supplycomp{
+ dir = 4;
+ icon_rotation = 90
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bqm" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bqn" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bqo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bqq" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/qm)
+"bqr" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bqu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table/steel,
+/obj/random/medical,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bqy" = (
+/turf/simulated/floor,
+/area/maintenance/bar)
+"bqz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bqC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bqD" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bqE" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bqI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bqQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH7";
+ next_patrol = "CH8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bqR" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secpro"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_processing)
+"bra" = (
+/turf/simulated/wall,
+/area/medical/medbay_emt_bay)
+"brb" = (
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/structure/table/glass,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"brc" = (
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Break Area";
+ dir = 4
+ },
+/obj/item/weapon/tool/screwdriver,
+/obj/item/organ/internal/lungs/erikLungs,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"brd" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bre" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"brf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"brg" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"brh" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"bri" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"brj" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"brk" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "secpro";
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"brl" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"brm" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/main)
+"brn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ name = "Briefing Room";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/main)
+"bro" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Briefing Room";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/main)
+"brp" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/security/main)
+"brq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"brr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"brs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"brt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bru" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"brv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"brw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"brx" = (
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bry" = (
+/obj/structure/sign/warning/bomb_range,
+/turf/simulated/wall,
+/area/rnd/test_area)
+"brA" = (
+/obj/machinery/door/airlock/external{
+ name = "Toxins Test Chamber"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/rnd/test_area)
+"brB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"brC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"brD" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/space,
+/area/space)
+"brF" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/space,
+/area/space)
+"brG" = (
+/turf/simulated/wall/r_wall,
+/area/security/riot_control)
+"brH" = (
+/turf/simulated/wall,
+/area/security/riot_control)
+"brI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/security{
+ name = "Riot Control";
+ req_access = list(2)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"brK" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"brL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"brM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"brN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ name = "Solitary Confinement 1";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/brig)
+"brO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ name = "Solitary Confinement 2";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/brig)
+"brQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"brS" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "garbage"
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"brT" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_room)
+"brU" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"brW" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "garbage"
+ },
+/obj/effect/landmark/teleplumb_exit,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"brY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/disposal)
+"brZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/cargo)
+"bsa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bsb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bsd" = (
+/obj/machinery/space_heater,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"bse" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_smes)
+"bsf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bsi" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"bsn" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
+"bso" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bsp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Cargo Office";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/office)
+"bss" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bst" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/backpack/dufflebag,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bsx" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 10
+ },
+/obj/machinery/clonepod/full,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"bsC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room B"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/patient_b)
+"bsD" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/bar)
+"bsG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/loading,
+/obj/machinery/navbeacon/delivery/west{
+ location = "Kitchen"
+ },
+/obj/structure/plasticflaps/mining{
+ opacity = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/kitchen)
+"bsM" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bsN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bsO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/apcenter)
+"bsP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bsQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"bsR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"bsS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"bsU" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"bsV" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bsY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bsZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Cells";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/brig)
+"bta" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"btf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bth" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bti" = (
+/turf/simulated/wall,
+/area/medical/reception)
+"btj" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/item/weapon/book/manual/stasis,
+/obj/item/weapon/book/manual/medical_diagnostics_manual{
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"btk" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"btl" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southleft{
+ name = "Bar Delivery";
+ req_access = list(25)
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/bar)
+"btq" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"btr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bts" = (
+/obj/structure/closet/gmcloset,
+/obj/item/glass_jar,
+/obj/item/device/retail_scanner/civilian,
+/obj/item/device/retail_scanner/civilian,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Bar Storage"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"btt" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"btw" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bty" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"btE" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"btH" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"btJ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for Surgery.";
+ id = "Surgery";
+ name = "Surgery";
+ pixel_y = 36
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"btL" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"btO" = (
+/obj/machinery/conveyor{
+ id = "garbage"
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"btQ" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/structure/biowaste_tank,
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"btU" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"btV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"btY" = (
+/turf/simulated/wall,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"bub" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"buc" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"bud" = (
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"buf" = (
+/obj/machinery/computer/supplycomp/control{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bug" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"buh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"buj" = (
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"buk" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/lockerroom)
+"bum" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/quartermaster/lockerroom)
+"bup" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/patient_b)
+"buq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"buu" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Warden's Office";
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/warden)
+"buw" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bux" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"buy" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"buz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"buA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"buB" = (
+/obj/machinery/disposal,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"buD" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"buE" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"buF" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buJ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"buK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"buL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/reception)
+"buM" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"buN" = (
+/turf/simulated/wall/r_wall,
+/area/medical/reception)
+"buO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buR" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secpro"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_processing)
+"buS" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secpro"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_processing)
+"buT" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/security{
+ name = "Security Processing";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_processing)
+"buU" = (
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buV" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buX" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"buZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bva" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/aid_station)
+"bvb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"bvc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"bvd" = (
+/obj/structure/bed/roller,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"bve" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/seccarts{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bvf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bvg" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bvh" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/machinery/door/window/northleft,
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bvi" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/machinery/door/window/northright,
+/turf/simulated/floor/tiled,
+/area/security/security_ses)
+"bvj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"bvk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bvl" = (
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bvn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bvo" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos)
+"bvr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -26;
+ req_access = list(50)
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvu" = (
+/obj/structure/table/steel,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/weapon/stamp/cargo,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvy" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvA" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvB" = (
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Office Starboard";
+ name = "security camera"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvC" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bvF" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36;
+ pixel_y = -6
+ },
+/obj/machinery/button/windowtint{
+ id = "quart_tint";
+ pixel_x = -36;
+ pixel_y = 6
+ },
+/obj/structure/flora/pottedplant/tropical,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"bvG" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"bvH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"bvI" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"bvL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bvN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bvO" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bvP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bvU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bvV" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bvW" = (
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bvZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bwa" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/apcenter)
+"bwd" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bwe" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bwg" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bwj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bwl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bwo" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bwp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bwq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bws" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bwu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bwz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_medical,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay)
+"bwB" = (
+/turf/simulated/wall/r_wall,
+/area/medical/foyer)
+"bwC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bwG" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southright{
+ name = "Kitchen Delivery";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/kitchen)
+"bwI" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_x = -28;
+ pixel_y = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bwJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bwK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bwL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bwP" = (
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bwR" = (
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bwS" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bwU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bwV" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bwW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bwY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bwZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bxb" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bxc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bxd" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bxe" = (
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bxf" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bxg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_access = list(12)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bxh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bxi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bxj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bxl" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bxm" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bxn" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/powercell,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bxq" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/apmaint)
+"bxr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"bxt" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bxv" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/weapon/pen,
+/obj/item/device/retail_scanner/civilian{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bxA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bxB" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "QM Office";
+ sortType = "QM Office"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bxD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"bxI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bxL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"bxM" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bxP" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/apcenter)
+"bxQ" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"bxR" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/apcenter)
+"bxX" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bxY" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"bxZ" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 6";
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/communicator,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"bya" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"byc" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/ascenter)
+"byd" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bye" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"byg" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/weapon/tank/air,
+/obj/item/weapon/tank/air,
+/obj/item/weapon/tank/air,
+/obj/item/clothing/mask/gas,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"byj" = (
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bym" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"byp" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Hallway Port 1";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/sign/goldenplaque{
+ desc = "Done No Harm.";
+ name = "Best Doctor 2552";
+ pixel_y = -32
+ },
+/obj/machinery/door/airlock/glass_medical,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay)
+"byr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bys" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byv" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"byx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"byy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"byz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"byA" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"byB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"byC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Cells";
+ req_access = list(1)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/brig)
+"byD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"byF" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byG" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byH" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byK" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byO" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byP" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_hallway)
+"byQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byT" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"byV" = (
+/obj/machinery/mass_driver{
+ id = "trash"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/disposal)
+"byW" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/disposal)
+"byX" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Waste Disposal";
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"byY" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bzb" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bzc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bzd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bze" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bzf" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bzh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/item/weapon/stool,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"bzj" = (
+/turf/simulated/wall,
+/area/quartermaster/foyer)
+"bzk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway Mid"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bzm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bzn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bzp" = (
+/obj/machinery/photocopier,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bzt" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/weapon/storage/backpack/dufflebag,
+/obj/item/weapon/stamp/cargo,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"bzu" = (
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/obj/structure/table/steel,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Stairwell";
+ dir = 1;
+ name = "security camera"
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/lockerroom)
+"bzv" = (
+/turf/simulated/wall,
+/area/quartermaster/lockerroom)
+"bzx" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ name = "Deck 2 Port automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bzy" = (
+/turf/simulated/wall,
+/area/ai_monitored/storage/emergency/eva)
+"bzz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bzA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bzB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"bzC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bzJ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"bzL" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/apcenter)
+"bzM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bzN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bzO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bzU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bzV" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bzW" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/ascenter)
+"bAc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bAi" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "Medbay";
+ pixel_x = -32
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"bAj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/sleeper)
+"bAk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bAl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bAm" = (
+/obj/structure/sign/greencross{
+ desc = "White cross in a green field, you can get medical aid here.";
+ name = "First-Aid"
+ },
+/turf/simulated/wall,
+/area/security/aid_station)
+"bAn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Medical";
+ req_access = newlist()
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/aid_station)
+"bAq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_ses)
+"bAr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Secondary Equipment Storage";
+ req_access = list(2)
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_ses)
+"bAs" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_ses)
+"bAt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bAu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ name = "N2 to Connector"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bAv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Nitrogen Outlet Valve"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bAw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"bAx" = (
+/obj/structure/sign/warning/moving_parts,
+/turf/simulated/wall,
+/area/maintenance/disposal)
+"bAz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bAA" = (
+/obj/machinery/light/small,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bAG" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"bAH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/computer/general_air_control/large_tank_control{
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bAM" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/engine{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bAO" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/trolley{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bAP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bAQ" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bAT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBc" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 1;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bBd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bBe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bBg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ name = "O2 to Connector"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Oxygen Outlet Valve"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/computer/general_air_control/large_tank_control{
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBn" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Fore"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBp" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"bBq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"bBr" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bBs" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"bBu" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1443;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ pressure_setting = 2000;
+ sensors = list("air_sensor"="Tank")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance";
+ req_access = list(28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/fans/hardlight/colorable{
+ light_color = "#D7D7D7"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/kitchen)
+"bBx" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Mixed Air Inlet Valve"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBy" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Mixed Air Outlet Valve"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBz" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "Air Mix to Connector"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bBC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bBF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Medbay Subgrid";
+ name_tag = "Medbay Subgrid"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bBG" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bBH" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/medical)
+"bBL" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/fancy/vials{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/fancy/vials,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bBN" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/sleeper)
+"bBQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bBR" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/sleeper)
+"bCd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bCe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bCf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bCg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bCi" = (
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bCj" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bCl" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bCn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bCo" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bCr" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/maintenance/medbay)
+"bCu" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/holodeck_control)
+"bCx" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ input_tag = "waste_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "waste_out";
+ sensors = list("waste_sensor"="Tank")
+ },
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bCy" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bCA" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bCC" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bCD" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/item/device/geiger/wall/north,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"bCE" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/disposal)
+"bCF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "crg_aft_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bCK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/bag/trash{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/bag/trash,
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"bCM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bCP" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/random/cigarettes,
+/obj/item/weapon/flame/lighter/random,
+/obj/item/weapon/deck/cards,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bCU" = (
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bCV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/quartermaster/office)
+"bDb" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/cargo)
+"bDc" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"bDd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bDf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/computer/area_atmos/tag{
+ scrub_id = "Brig"
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bDg" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/item/weapon/stool,
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bDj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bDk" = (
+/obj/structure/table/steel,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/device/radio/headset,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bDl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bDn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"bDo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bDp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bDq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"bDr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/apcenter)
+"bDs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bDt" = (
+/obj/structure/table/steel,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/item/device/radio/headset,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bDu" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/light,
+/obj/item/device/radio/headset,
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"bDv" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/radio/headset,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"bDw" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bDx" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bDy" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bDE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/cargo)
+"bDG" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/device/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"bDH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bDJ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bDK" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/command{
+ id_tag = null;
+ name = "CMO's Quarters";
+ req_access = list(40)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/cmo)
+"bDL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bDO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bDQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bDT" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bDU" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bDV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bDZ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEa" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway Port";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEo" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEt" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "crg_aft_airlock";
+ pixel_x = -25;
+ req_access = null;
+ tag_airpump = "crg_aft_pump";
+ tag_chamber_sensor = "crg_aft_sensor";
+ tag_exterior_door = "crg_aft_outer";
+ tag_interior_door = "crg_aft_inner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "crg_aft_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bEw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"bEx" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"bEy" = (
+/obj/structure/closet/crate/medical,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Warehouse South";
+ dir = 10;
+ name = "security camera"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"bEz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "HoS Office";
+ sortType = "HoS Office"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bEE" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bEF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bEJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bEP" = (
+/turf/simulated/wall,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"bEV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/navbeacon/patrol{
+ location = "CH5";
+ next_patrol = "CH6"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"bEW" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/apcenter)
+"bEZ" = (
+/obj/structure/table/woodentable,
+/obj/item/device/tape/random,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/starcaster_news{
+ pixel_x = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"bFa" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"bFh" = (
+/turf/simulated/wall,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"bFi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bFj" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bFk" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bFm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "CMO's Office"
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bFn" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bFo" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/white_cmo,
+/obj/item/weapon/stamp/cmo,
+/obj/item/weapon/pen/multi,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bFq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bFv" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/sleeper)
+"bFy" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bFD" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bFF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFI" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Security";
+ sortType = "Security"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Wing";
+ req_access = list(63)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_hallway)
+"bFK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFR" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bFS" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_hallway)
+"bFV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bFW" = (
+/obj/structure/kitchenspike,
+/obj/machinery/alarm/freezer{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bFX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bFY" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bGa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bGb" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bGc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bGd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bGe" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bGg" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"bGh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"bGl" = (
+/turf/unsimulated/mask,
+/area/hallway/primary/seconddeck/port)
+"bGm" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/warehouse)
+"bGn" = (
+/turf/simulated/wall,
+/area/quartermaster/warehouse)
+"bGs" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bGt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/southleft{
+ name = "Cargo Desk";
+ req_access = list(50)
+ },
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bGw" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/navbeacon/delivery/north{
+ location = "QM #2"
+ },
+/mob/living/bot/mulebot,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bGx" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/brown/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bGz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/quartermaster/office)
+"bGG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"bGI" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bGK" = (
+/obj/structure/table/marble,
+/obj/item/weapon/material/ashtray/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bGL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bGN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bGP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bGR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bGS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bGT" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"bGZ" = (
+/turf/simulated/wall,
+/area/maintenance/substation/medical)
+"bHd" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36;
+ pixel_y = -6
+ },
+/obj/machinery/button/windowtint{
+ id = "cmooffice";
+ pixel_x = -36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/structure/dogbed{
+ name = "\improper Runtime's bed"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bHe" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bHf" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Control";
+ pixel_x = -32;
+ pixel_y = 36;
+ req_access = list(5)
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "virologyquar";
+ name = "Virology Emergency Lockdown Control";
+ pixel_x = -28;
+ pixel_y = 28;
+ req_access = list(5)
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the CMO's office.";
+ id = "cmodoor";
+ name = "CMO Office Door Control";
+ pixel_x = -38;
+ pixel_y = 28
+ },
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bHg" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/glasses/sunglasses/medhud,
+/obj/item/device/radio{
+ frequency = 1487;
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/device/megaphone,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bHh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "cmooffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/cmo)
+"bHo" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bHp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bHq" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/curtain/open/privacy,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/cryo)
+"bHr" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bHs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bHt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bHu" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/button/windowtint{
+ id = "cryo_tint";
+ pixel_x = 36;
+ pixel_y = 6
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bHv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/vending/cart,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"bHw" = (
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"bHx" = (
+/obj/machinery/computer/arcade/clawmachine,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"bHy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/vending/giftvendor,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"bHz" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"bHA" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"bHC" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "O- Blood Locker";
+ pixel_y = -32
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bHD" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bHE" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Ward Starboard";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bHF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bHG" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bHL" = (
+/turf/simulated/wall,
+/area/maintenance/cargo)
+"bHO" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "crg_aft_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"bHP" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/toy,
+/obj/random/tank,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bHQ" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bHR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"bHV" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bHZ" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/item/clothing/head/soft,
+/obj/item/clothing/head/soft,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/office)
+"bId" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIl" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bIm" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"bIn" = (
+/obj/structure/catwalk,
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIp" = (
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIq" = (
+/turf/simulated/wall/r_wall,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"bIr" = (
+/obj/machinery/light/small,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"bIu" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"bIx" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIy" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIz" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIA" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIC" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bIH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Medbay Substation";
+ req_one_access = list(11,24,5)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bIJ" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/weapon/cmo_disk_holder,
+/obj/item/device/denecrotizer/medical,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bIL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "cmooffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/cmo)
+"bIM" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/sleeper)
+"bIO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bIP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bIQ" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/medical_wall/pills{
+ pixel_x = 32
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bIS" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Diagnostics";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner2,
+/obj/effect/floor_decal/corner/pink/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bIT" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "O- Blood Locker";
+ pixel_y = -32
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bIX" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bIY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bIZ" = (
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bJa" = (
+/obj/machinery/atmospherics/valve,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Riot Control";
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bJb" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bJc" = (
+/obj/machinery/atmospherics/valve,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bJd" = (
+/obj/structure/cryofeed{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Solitary Confinement 1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/brig)
+"bJe" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/brig)
+"bJf" = (
+/obj/machinery/cryopod,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/brig)
+"bJg" = (
+/obj/structure/cryofeed,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Solitary Confinement 2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/brig)
+"bJh" = (
+/turf/simulated/wall,
+/area/security/detectives_office)
+"bJi" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "detoffice"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"bJj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security{
+ id_tag = "detdoor";
+ name = "Detective";
+ req_access = list(4)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/detectives_office)
+"bJk" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "detoffice"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"bJl" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/security_hallway)
+"bJm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Wing";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_hallway)
+"bJn" = (
+/turf/simulated/wall,
+/area/security/lobby)
+"bJo" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(63)
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = -34
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the brig foyer.";
+ id = "BrigFoyer";
+ name = "Brig Foyer Doors";
+ pixel_x = -24;
+ req_access = list(63)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bJq" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bJs" = (
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(63)
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bJF" = (
+/turf/simulated/wall,
+/area/maintenance/emergencyeva)
+"bJG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bJJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bJR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bJY" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"bKb" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"bKf" = (
+/obj/structure/catwalk,
+/obj/item/tape/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKk" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKn" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/cmo)
+"bKp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bKs" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - CMO"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"bKt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bKu" = (
+/turf/simulated/wall,
+/area/medical/sleeper)
+"bKF" = (
+/turf/simulated/wall,
+/area/medical/cryo)
+"bKI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Wing";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_hallway)
+"bKJ" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_hallway)
+"bKK" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKM" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKO" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKQ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKR" = (
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKS" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKT" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Wing";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/security_hallway)
+"bKU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway Starboard";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bKY" = (
+/obj/structure/lattice,
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/space,
+/area/space)
+"bKZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bLa" = (
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bLb" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bLg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bLs" = (
+/turf/simulated/wall,
+/area/quartermaster/office)
+"bLu" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bLC" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bLH" = (
+/obj/machinery/smartfridge/drinks,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bLI" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/obj/structure/sign/double/barsign{
+ pixel_y = 32
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bLJ" = (
+/obj/machinery/button/remote/blast_door{
+ id = "bar";
+ name = "Bar Shutters";
+ pixel_x = -26;
+ pixel_y = -6
+ },
+/obj/machinery/button/holosign{
+ id = "baropen";
+ name = "Open Sign";
+ pixel_x = -24;
+ pixel_y = 6
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = -32;
+ pixel_y = 6
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Bar Fore";
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 17
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bLK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bLN" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLP" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLW" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLX" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLY" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLZ" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bMb" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/structure/curtain/open/privacy,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bMc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bMf" = (
+/obj/structure/closet/wardrobe/medic_white,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bMh" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/curtain/open/privacy,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bMj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bMl" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/kitchen)
+"bMn" = (
+/obj/machinery/media/jukebox,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bMo" = (
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bMp" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bMq" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_hallway)
+"bMr" = (
+/obj/random/tool,
+/turf/space,
+/area/space)
+"bMs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMu" = (
+/obj/machinery/atmospherics/omni/mixer{
+ active_power_usage = 7500;
+ tag_east = 2;
+ tag_east_con = null;
+ tag_north = 1;
+ tag_north_con = 0.21;
+ tag_south_con = null;
+ tag_west = 1;
+ tag_west_con = 0.79
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMw" = (
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Foyer";
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bMx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMB" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Air Tank Bypass Pump"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bMS" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bMU" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bMW" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"bNb" = (
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bNg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bNi" = (
+/mob/living/carbon/human/monkey/punpun,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bNj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bNn" = (
+/obj/structure/table/marble,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bNp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bNr" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"bNu" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bNv" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Bar Backroom";
+ req_access = list(25)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/bar)
+"bNB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/sign/warning/airlock{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bND" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNE" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "aft_starboard_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = -26;
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNJ" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNL" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNM" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNQ" = (
+/obj/structure/table/glass,
+/obj/item/device/radio{
+ anchored = 1;
+ canhear_range = 7;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ name = "Surgery Emergency Phone"
+ },
+/obj/random/medical,
+/obj/random/medical,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNU" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNV" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"bNW" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bNZ" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bOa" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bOb" = (
+/turf/simulated/wall,
+/area/medical/morgue)
+"bOc" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bOd" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bOe" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bOg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 11
+ },
+/obj/machinery/button/windowtint{
+ id = "gamble_window_tint";
+ pixel_x = -24;
+ pixel_y = -10;
+ range = 9
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bOi" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"bOj" = (
+/obj/effect/floor_decal/steeldecal/monofloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artgallery)
+"bOk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"bOl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bOm" = (
+/obj/structure/disposalpipe/junction,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bOn" = (
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/holodeck_control)
+"bOp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bOq" = (
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bOr" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bOs" = (
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bOt" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/item/weapon/tool/wrench,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bOw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microscope,
+/obj/item/device/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bOx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bOy" = (
+/obj/machinery/computer/security/wooden_tv,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bOz" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "detoffice";
+ pixel_x = -12;
+ pixel_y = 24
+ },
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
+/obj/item/device/tape/random,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bOA" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Detective Office"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bOB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bOC" = (
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bOD" = (
+/obj/structure/closet/wardrobe/detective,
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/structure/noticeboard{
+ pixel_y = 30
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bOE" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bOF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bOG" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"bOH" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bOK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bOL" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bOQ" = (
+/turf/unsimulated/mask,
+/area/quartermaster/office)
+"bPb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bPd" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bPg" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bPj" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bPl" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"bPp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bPs" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "aft_starboard_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bPt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/r_wall,
+/area/maintenance/medbay)
+"bPu" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bPx" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bPy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance Access";
+ req_access = list(5)
+ },
+/turf/simulated/floor/plating,
+/area/medical/ward)
+"bPz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bPA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bPC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bPG" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bPI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"bPK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bPM" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -30
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"bPN" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/holodeck_control)
+"bPP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/medbay)
+"bPU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bPV" = (
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bPZ" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hos)
+"bQa" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hos)
+"bQb" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"bQd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ id_tag = null;
+ name = "Head of Security Quarters";
+ req_access = list(58)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/hos)
+"bQe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bQf" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"bQl" = (
+/turf/simulated/wall/r_wall,
+/area/lawoffice)
+"bQn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_hallway)
+"bQo" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northright{
+ name = "Security Delivery";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"bQq" = (
+/obj/item/stack/material/glass/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bQr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ name = "Security Substation";
+ req_access = list(1);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bQt" = (
+/obj/effect/floor_decal/corner/black/full{
+ dir = 8
+ },
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "co2_sensor"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/atmos)
+"bQu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bQz" = (
+/turf/simulated/wall/r_wall,
+/area/quartermaster/office)
+"bQH" = (
+/obj/structure/table/marble,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bQK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bQM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bQN" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bQO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"bQP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/medbay)
+"bQY" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bQZ" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bRa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bRb" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bRf" = (
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/atmos)
+"bRg" = (
+/obj/effect/floor_decal/corner/black/full{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "co2_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/atmos)
+"bRh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bRi" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ name = "N2 to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRk" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 4;
+ tag_south = 2;
+ tag_west = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRl" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 3;
+ tag_west = 2
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ name = "O2 to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRo" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRp" = (
+/obj/machinery/atmospherics/tvalve/mirrored/bypass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRq" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Fore Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bRs" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/atmos{
+ name = "Riot Control Maintenance";
+ req_access = newlist();
+ req_one_access = list(2,12,24)
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
+"bRt" = (
+/obj/structure/table/steel,
+/obj/item/device/t_scanner,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bRu" = (
+/obj/structure/closet/firecloset/full,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bRv" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bRw" = (
+/obj/machinery/disposal,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bRz" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"bRA" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"bRB" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/blue{
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/yellow{
+ pixel_y = -5
+ },
+/obj/item/weapon/storage/box/swabs{
+ layer = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bRE" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/device/flash,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bRG" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/foyer)
+"bRJ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bRK" = (
+/obj/structure/table/wooden_reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bRL" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bRN" = (
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bRO" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/briefcase{
+ pixel_x = 3
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bRQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "detoffice"
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"bRU" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bRX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bSc" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"bSf" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "aft_starboard_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "aft_starboard_sensor";
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bSh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/medbay)
+"bSm" = (
+/turf/simulated/wall/r_wall,
+/area/medical/ward)
+"bSo" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "st1_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgery)
+"bSp" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 1";
+ req_access = list(45)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/surgery)
+"bSq" = (
+/turf/simulated/wall,
+/area/medical/surgery)
+"bSt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bSu" = (
+/turf/simulated/wall,
+/area/medical/ward)
+"bSx" = (
+/turf/simulated/wall,
+/area/medical/surgery2)
+"bSB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSC" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/lobby)
+"bSD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Secure Door"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSF" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Secure Door"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSI" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/lobby)
+"bSJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bSL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"bSM" = (
+/obj/machinery/disposal,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"bSN" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - HoS' Office"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bSO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bSR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/mob/living/simple_mob/animal/passive/snake/python/noodle,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bSS" = (
+/obj/machinery/photocopier,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = 36
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"bSV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bSZ" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/button/windowtint{
+ id = "lawyer_tint";
+ pixel_x = 30;
+ pixel_y = -26;
+ req_access = list(58)
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bTc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bTd" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bTe" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/clipboard,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bTf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Internal Affairs"
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bTh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bTk" = (
+/obj/machinery/vending/dinnerware{
+ dir = 4;
+ pixel_x = -4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bTl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bTo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Aft Hallway 2";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bTq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"bTu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bTv" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"bTw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"bTx" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "aft_starboard_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bTy" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "aft_starboard_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bTz" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/medbay)
+"bTA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access = list(1)
+ },
+/turf/simulated/floor/plating,
+/area/security/security_hallway)
+"bTC" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/navbeacon/delivery/north{
+ location = "Security"
+ },
+/turf/simulated/floor/plating,
+/area/security/security_hallway)
+"bTD" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Security Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bTG" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bTH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bTI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bTJ" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "surgeryobs";
+ name = "Privacy Shutters";
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bTM" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/holosign/surgery,
+/obj/machinery/door/airlock/medical{
+ id_tag = "surgery_observation";
+ name = "Observation Room";
+ req_access = null;
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/surgeryobs)
+"bTO" = (
+/turf/simulated/wall,
+/area/medical/surgeryobs)
+"bTQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"bTR" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "st2_tint";
+ pixel_x = -11;
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/button/holosign{
+ pixel_x = -11;
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"bTS" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"bTT" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Security"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bTV" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Security Subgrid";
+ name_tag = "Security Subgrid"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bTY" = (
+/obj/effect/floor_decal/corner/black/full,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Carbon Dioxide";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/atmos)
+"bUd" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fscenter)
+"bUe" = (
+/obj/effect/floor_decal/corner/black/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "co2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/atmos)
+"bUf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/engineering/atmos)
+"bUg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "CO2 Outlet Valve"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/black/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Fore Port";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUj" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "CO2 to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUl" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUn" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUo" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUs" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bUt" = (
+/obj/structure/sign/warning/compressed_gas,
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos)
+"bUu" = (
+/turf/simulated/wall,
+/area/maintenance/security_port)
+"bUx" = (
+/obj/structure/closet,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bUz" = (
+/obj/machinery/appliance/mixer/candy,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bUB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bUM" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/medbay)
+"bUN" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bUP" = (
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bUQ" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bUS" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bUT" = (
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bUU" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bUX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"bUY" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"bVa" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bVb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bVc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"bVd" = (
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"bVe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bVg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"bVh" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/briefcase/crimekit,
+/obj/item/weapon/storage/briefcase/crimekit,
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bVj" = (
+/obj/structure/table/woodentable,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/photo_album{
+ pixel_y = -10
+ },
+/obj/item/device/camera_film,
+/obj/item/device/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bVk" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bVl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bVm" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bVr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bVs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bVu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bVv" = (
+/obj/machinery/door/airlock/security{
+ id_tag = "detdoor";
+ name = "Detective";
+ req_access = list(4)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/detectives_office)
+"bVw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bVx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bVy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bVz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bVA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/guestpass{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"bVB" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bVC" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bVH" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bVI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"bVJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"bVN" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cafeteria)
+"bVO" = (
+/obj/structure/bed/chair/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bVP" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"bVT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bVV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bWd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bWf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bWg" = (
+/obj/structure/bed/chair,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bWi" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bWj" = (
+/obj/machinery/papershredder,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"bWl" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall,
+/area/medical/surgery)
+"bWm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bWn" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bWp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"bWq" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"bWr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "surgeryobs2";
+ name = "Operating Theatre Privacy Shutters";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/surgeryobs)
+"bWt" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bWu" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Recreational Lounge";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bWz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bWA" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bWB" = (
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/lamp,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bWC" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder{
+ pixel_x = -4
+ },
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp/internalaffairs,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bWD" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/weapon/material/ashtray/plastic{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bWE" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/deck/cah{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/deck/cah/black{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bWF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bWG" = (
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bWJ" = (
+/obj/machinery/atmospherics/valve,
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bWL" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Kitchen";
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bWN" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/device/starcaster_news{
+ pixel_x = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cafeteria)
+"bWQ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/deck/cah{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/deck/cah/black{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bWR" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Cafeteria Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bWU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"bWW" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bWY" = (
+/obj/structure/sign/directions/chapel{
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/library)
+"bWZ" = (
+/obj/structure/casino_table/roulette_table,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"bXa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bXb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted/frosted,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"bXg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"bXh" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/sink/countertop{
+ pixel_y = 7
+ },
+/obj/item/trash/plate{
+ pixel_y = -2
+ },
+/obj/item/trash/plate,
+/obj/item/trash/plate{
+ pixel_y = 2
+ },
+/obj/item/trash/plate{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"bXj" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"bXk" = (
+/turf/simulated/wall,
+/area/lawoffice)
+"bXq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bXr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bXs" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bXv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"bXA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"bXC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Holodeck Control"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/holodeck_control)
+"bXE" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"bXF" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "st1_tint";
+ pixel_x = -11;
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/button/holosign{
+ pixel_x = -11;
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bXH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/meter,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"bXI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"bXJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ name = "Security Substation";
+ req_one_access = list(1,11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bXK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Security";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bXL" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bXM" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/security)
+"bXN" = (
+/turf/simulated/wall,
+/area/space)
+"bXP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "CO2 to Connector"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bXT" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bXU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bXX" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#ffcc00"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bXZ" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bYa" = (
+/obj/machinery/atmospherics/unary/heater{
+ icon_state = "heater"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"bYc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bYd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bYe" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bYf" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/random/powercell,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bYh" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"bYi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bYk" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"bYm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"bYq" = (
+/obj/item/weapon/material/ashtray/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/acloset{
+ name = "leisure closet"
+ },
+/obj/item/weapon/deck/tarot,
+/obj/item/weapon/deck/tarot,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/holder,
+/obj/item/weapon/deck/holder,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/storage/pill_bottle/dice_nerd,
+/obj/item/weapon/storage/dicecup/loaded,
+/obj/item/toy/eight_ball,
+/obj/item/toy/tennis,
+/obj/item/toy/tennis,
+/obj/item/toy/eight_ball/conch,
+/obj/item/weapon/deck/cah/black,
+/obj/item/weapon/deck/cah,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"bYD" = (
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"bYF" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/surgical/FixOVein,
+/obj/item/weapon/surgical/surgicaldrill,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"bYH" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgeryobs)
+"bYI" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/cups,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"bYL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment";
+ req_access = list(12)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"bYM" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Forensic Office";
+ dir = 4
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/bodybags,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bYN" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"bYQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"bYR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"bYS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/window/westright{
+ name = "Forensics Area";
+ req_one_access = list(4)
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"bYT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bYU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bYV" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bYW" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"bYZ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "detoffice"
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"bZb" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bZd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bZi" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cargo)
+"bZk" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bZl" = (
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bZx" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bZz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"bZA" = (
+/obj/structure/bed/chair/oldsofa{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"bZD" = (
+/obj/machinery/atm{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"bZF" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Holodeck Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"bZI" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/security/lobby)
+"bZK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bZL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"bZN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"bZR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"bZU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bZV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red_hos,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/multi,
+/obj/item/weapon/stamp/hos,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bZW" = (
+/obj/machinery/computer/skills{
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/gps/security/hos,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"bZY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Security"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"caa" = (
+/obj/machinery/photocopier,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Internal Affairs";
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cad" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"caf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cag" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cai" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"caj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/sign/warning/high_voltage{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cak" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Central"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cal" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cam" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"car" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cas" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cau" = (
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/kitchen)
+"caw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cax" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"caz" = (
+/obj/structure/flora/pottedplant/bamboo{
+ pixel_y = 10
+ },
+/obj/structure/table/bench/glass,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"caC" = (
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"caE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/computer/timeclock/premade/west,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"caF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"caG" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"caI" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/bed/chair/oldsofa{
+ dir = 5
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"caJ" = (
+/obj/structure/bed/chair/oldsofa/left{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"caK" = (
+/obj/structure/table/bench/wooden,
+/obj/item/weapon/deck/holder,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"caL" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"caN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/deck/tarot,
+/obj/item/weapon/deck/tarot,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"caS" = (
+/obj/structure/closet,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"caU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"caW" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"caX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"caZ" = (
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/hemostat,
+/obj/item/weapon/surgical/cautery,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cba" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"cbc" = (
+/obj/machinery/dnaforensics,
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"cbd" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/papershredder,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"cbe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"cbf" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/material/ashtray/bronze,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"cbg" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/device/flashlight/lamp/green,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"cbj" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cbl" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbn" = (
+/obj/machinery/atm{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbp" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Lobby";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbq" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbr" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/flora/pottedplant/fern,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbs" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbt" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/computer/guestpass{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"cbu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"cbw" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cbx" = (
+/turf/simulated/wall,
+/area/maintenance/bar)
+"cbA" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Kitchen";
+ sortType = "Kitchen"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"cbB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cbE" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/kitchen)
+"cbF" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"cbG" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cbH" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/flame/candle,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 38
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cbJ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fpcenter)
+"cbN" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cbO" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cbP" = (
+/obj/structure/sign/directions/cryo,
+/obj/structure/sign/directions/recreation{
+ dir = 5;
+ pixel_y = 9
+ },
+/obj/structure/sign/directions/library{
+ pixel_y = -9
+ },
+/turf/simulated/wall,
+/area/crew_quarters/coffee_shop)
+"cbQ" = (
+/turf/simulated/wall,
+/area/crew_quarters/coffee_shop)
+"cbT" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cbV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/toilet,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cbZ" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"ccb" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "HoSdoor";
+ name = "Office Door";
+ pixel_x = -36;
+ pixel_y = 29
+ },
+/obj/machinery/button/windowtint{
+ id = "hosoffice";
+ pixel_x = -26;
+ pixel_y = 30;
+ req_access = list(58)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "security_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = -36;
+ pixel_y = 39;
+ req_access = list(2)
+ },
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"ccd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hos)
+"ccf" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_x = 30
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/snakesnackbox,
+/obj/item/device/megaphone,
+/obj/item/device/radio/off,
+/obj/item/device/tape/random,
+/obj/item/device/taperecorder,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"ccg" = (
+/obj/structure/closet/lawcloset,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cch" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cci" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"ccj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"ccl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"ccn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"cco" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"ccq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ccr" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/bed/chair/comfy/brown,
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"ccs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cct" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"ccu" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"ccv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"ccw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"ccx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ccy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ccz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ccA" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ccB" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/random/maintenance/security,
+/obj/random/cash,
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
+"ccC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ccD" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/maintenance/security_port)
+"ccH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/detectives_office)
+"ccI" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"ccK" = (
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"ccM" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/machinery/atm{
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"ccN" = (
+/turf/simulated/wall,
+/area/crew_quarters/cafeteria)
+"ccP" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ccQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ccS" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/aft)
+"ccU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/cafeteria)
+"ccV" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"ccW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"ccX" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cda" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/patient_a)
+"cde" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"cdk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"cdl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"cdm" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"cdo" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
+/obj/item/device/tape/random,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"cdp" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Lobby";
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/lobby)
+"cdq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/security/lobby)
+"cdr" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cds" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Lobby";
+ req_one_access = null
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/lobby)
+"cdt" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/wall,
+/area/security/lobby)
+"cdu" = (
+/obj/structure/filingcabinet,
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ icon_override = "secintercom";
+ pixel_x = -21
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"cdv" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/item/modular_computer/console/preset/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"cdw" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"cdx" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"cdy" = (
+/obj/machinery/status_display{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/hos2,
+/obj/item/weapon/cell/device,
+/obj/item/device/holowarrant,
+/obj/item/weapon/rig/ch/pursuit/equipped,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"cdz" = (
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/structure/closet,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cdA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cdB" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cdC" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/button/windowtint{
+ id = "lawyer_tint";
+ pixel_x = -26;
+ pixel_y = 30;
+ req_access = list(58)
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cdD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/valve/shutoff{
+ name = "Security automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cdE" = (
+/obj/machinery/atmospherics/valve/digital/open,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cdF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cdG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cdH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/closet/crate,
+/obj/item/clothing/mask/gas,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/random/maintenance/research,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cdI" = (
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 1
+ },
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2o_sensor"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Nitrous Oxide";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/atmos)
+"cdJ" = (
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/atmos)
+"cdK" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "n2o_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/atmos)
+"cdL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cdM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cdN" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cdO" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cdQ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/firecloset,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cdR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_port)
+"cdT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cdU" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 17
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cdX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"cdY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"cdZ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/cafeteria)
+"cea" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ceb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cec" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cee" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cef" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ceh" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"cei" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cej" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cel" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cem" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cex" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/spray/luminol,
+/obj/item/device/uv_light,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"ceA" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/obj/item/weapon/forensics/sample_kit,
+/turf/simulated/floor/tiled/freezer,
+/area/security/detectives_office)
+"ceC" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = -26
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"ceD" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/device/flash,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"ceE" = (
+/obj/machinery/computer/security/wooden_tv,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"ceF" = (
+/obj/item/weapon/bedsheet/ian,
+/obj/item/clothing/suit/ianshirt,
+/turf/simulated/floor/plating,
+/area/security/lobby)
+"ceG" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fore)
+"ceH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ceI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ceK" = (
+/obj/machinery/appliance/mixer/cereal,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"ceM" = (
+/obj/structure/bed/chair/wood,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"ceN" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"ceP" = (
+/obj/structure/bed/chair/wood,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"ceQ" = (
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Recreational Lounge"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/coffee_shop)
+"ceS" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"ceT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cfb" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cfd" = (
+/obj/machinery/computer/guestpass{
+ dir = 4;
+ pixel_x = -19
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cfe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central6,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cafeteria)
+"cff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"cfg" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cfh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"cfi" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"cfj" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cfk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CIV";
+ next_patrol = "CH7"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"cfm" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cfn" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cfo" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cfp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cfq" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/barrestroom)
+"cfr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cfs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cft" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cfF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"cfH" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"cfI" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"cfJ" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"cfN" = (
+/obj/structure/sign/deck/second,
+/turf/simulated/wall,
+/area/security/lobby)
+"cfO" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cfP" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cfQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "surgeryobs";
+ name = "Operating Theatre Privacy Shutters";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/surgeryobs)
+"cfR" = (
+/turf/simulated/wall,
+/area/crew_quarters/heads/sc/hos)
+"cfS" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = 3
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cfT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cfU" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cfV" = (
+/obj/machinery/papershredder,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cfW" = (
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/lamp,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cfX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"cfY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 1;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cfZ" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/item/weapon/storage/backpack,
+/obj/item/weapon/storage/backpack,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/firstaid,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cga" = (
+/obj/structure/closet,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/item/clothing/suit/storage/hazardvest/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
+"cgb" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"cgc" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/atmos)
+"cgd" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cge" = (
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red,
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "n2o_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/atmos)
+"cgf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cgg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"cgk" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/lime/bordercorner,
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cgn" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"cgo" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"cgq" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cgs" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/aft)
+"cgy" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cgC" = (
+/obj/structure/table/standard,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/random/soap,
+/obj/random/soap,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cgD" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cgI" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cgK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cgL" = (
+/obj/structure/sign/warning/high_voltage{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"cgM" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cgO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cgP" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/eva_hallway)
+"cgQ" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cgR" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/hallway/secondary/eva_hallway)
+"cgS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cgT" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cgU" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/eva_hallway)
+"cgV" = (
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/eva_hallway)
+"cgW" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/eva_hallway)
+"cgX" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lawyer_tint"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/lawoffice)
+"cgY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Internal Affairs";
+ req_access = list(38)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/lawoffice)
+"cgZ" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lawyer_tint"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/lawoffice)
+"cha" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"chb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/wall,
+/area/maintenance/security_starboard)
+"chc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/hallway/secondary/eva_hallway)
+"chd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/hallway/secondary/eva_hallway)
+"che" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/wall,
+/area/hallway/secondary/eva_hallway)
+"chf" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/eva_hallway)
+"chg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access = list(24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"chh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"chi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/security_port)
+"chj" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/security_port)
+"chk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id_tag = "eva_port_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "eva_port_sensor";
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"chl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id_tag = "eva_port_pump"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"chm" = (
+/obj/machinery/suit_cycler/medical,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chp" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"chq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"chs" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Gallery"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 8
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/seconddeck/artgallery)
+"cht" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/seconddeck/artgallery)
+"chy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/aft)
+"chz" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"chE" = (
+/obj/structure/noticeboard/airlock,
+/turf/simulated/wall,
+/area/crew_quarters/barrestroom)
+"chG" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/crew_quarters/barrestroom)
+"chI" = (
+/obj/machinery/suit_cycler/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/command{
+ c_tag = "EVA - Port"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chL" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chM" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "EVA - Starboard"
+ },
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chN" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/rods,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chO" = (
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ department = "EVA";
+ pixel_y = 26
+ },
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"chQ" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"chR" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"chS" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"chT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/item/device/radio/beacon,
+/obj/machinery/navbeacon/patrol{
+ location = "SEC";
+ next_patrol = "CH1"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fore)
+"chU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"chW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"chX" = (
+/obj/structure/table/woodentable,
+/obj/item/device/radio/subspace{
+ desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!";
+ name = "Bar subspace radio";
+ pixel_y = 5
+ },
+/obj/item/weapon/deck/cards{
+ pixel_x = -5;
+ pixel_y = -2
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"chY" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"chZ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/structure/table/bench/wooden,
+/obj/item/device/starcaster_news,
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"cif" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/eva_hallway)
+"cig" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cih" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cij" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cil" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cim" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cin" = (
+/obj/machinery/button/windowtint{
+ id = "Gallery";
+ pixel_x = 10;
+ pixel_y = 24;
+ range = 12
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 26
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cip" = (
+/obj/structure/easel,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"cir" = (
+/obj/structure/easel,
+/obj/item/canvas/twentythree_twentythree,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"cis" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"ciu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"civ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cix" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"ciy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ciB" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel Fore"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"ciC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/wall,
+/area/maintenance/substation/civilian)
+"ciD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Civilian Substation";
+ req_one_access = list(11,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"ciF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/eva_hallway)
+"ciM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Fore Starboard Hallway 2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"ciU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cjg" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"cjh" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"cji" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cjp" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"cjq" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_starboard_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cjr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id_tag = "eva_starboard_pump"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cjs" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id_tag = "eva_starboard_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "eva_starboard_airlock";
+ pixel_y = 26;
+ req_access = null;
+ tag_airpump = "eva_starboard_pump";
+ tag_chamber_sensor = "eva_starboard_sensor";
+ tag_exterior_door = "eva_starboard_outer";
+ tag_interior_door = "eva_starboard_inner"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cjt" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_starboard_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/eva_hallway)
+"cju" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "eva_starboard_airlock";
+ name = "exterior access button";
+ pixel_x = -26;
+ pixel_y = 25;
+ req_access = null
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/hallway/secondary/eva_hallway)
+"cjv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/space)
+"cjw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cjx" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/obj/machinery/meter,
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cjy" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cjz" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cjA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/red,
+/obj/machinery/meter,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cjB" = (
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cjC" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access = list(24)
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"cjD" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/substation/atmospherics)
+"cjH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 10
+ },
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cjL" = (
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cjN" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cjO" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cjP" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"cjQ" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"cjR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cjV" = (
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Civilian";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"ckd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"ckf" = (
+/obj/structure/sign/painting/public,
+/turf/simulated/wall/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"ckg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"ckj" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/aft)
+"ckk" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ckn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"cko" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"ckp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"ckq" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ckr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 6
+ },
+/obj/machinery/honey_extractor,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cks" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"ckt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"ckv" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cky" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ckB" = (
+/turf/simulated/wall,
+/area/maintenance/substation/atmospherics)
+"ckC" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"ckE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ckJ" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ckO" = (
+/obj/structure/bed/chair/sofa/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/seconddeck/artgallery)
+"ckP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"ckQ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"ckR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"ckV" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ckX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "eva_port_airlock";
+ name = "exterior access button";
+ pixel_y = -26;
+ req_access = null
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/security_port)
+"clg" = (
+/turf/simulated/wall,
+/area/crew_quarters/bar)
+"clh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cli" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"clj" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/sugar,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cafeteria)
+"clm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cln" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"clr" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"clt" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"clv" = (
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"clx" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"cly" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"clA" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/weapon/extinguisher,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"clJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"clL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"clO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/security_port)
+"clQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"clT" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"clW" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chapel"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"clY" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Chapel"
+ },
+/obj/structure/curtain/bed,
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/main)
+"clZ" = (
+/obj/structure/curtain/bed,
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/main)
+"cma" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cmc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cme" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/clothing/suit/storage/apron/white{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/clothing/suit/storage/apron/white{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/clothing/suit/storage/apron/white{
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/regular/hipster{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/clothing/mask/smokable/pipe/cobpipe{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/beret{
+ pixel_x = 5;
+ pixel_y = 11
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cmg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"cmh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artsupplies)
+"cmj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A.";
+ req_access = list(18);
+ req_one_access = list(18)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/ai_monitored/storage/eva)
+"cmk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central6,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artsupplies)
+"cml" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cmm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cmn" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cmp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Art Storage";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"cms" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cmt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cmu" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cmx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/table/marble,
+/obj/item/device/daredevice,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cmA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cmB" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cmC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"cmD" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cmE" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Gallery Bow";
+ dir = 10
+ },
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cmF" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"cmH" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cmO" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_r"
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/cryo/station)
+"cmP" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cmQ" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"cmT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Art Supplies"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/seconddeck/artsupplies)
+"cna" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Gallery"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/seconddeck/artgallery)
+"cnb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cnc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cnd" = (
+/obj/item/stack/rods,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"cnf" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "tabletop_window_tint"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/library)
+"cnm" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"cnq" = (
+/obj/structure/table/woodentable,
+/obj/structure/noticeboard{
+ pixel_y = 27
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/pen/fountain5,
+/obj/item/weapon/pen/fountain6{
+ pixel_y = 7
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"cns" = (
+/obj/item/weapon/reagent_containers/food/drinks/soymilk,
+/obj/item/weapon/reagent_containers/food/drinks/soymilk,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,
+/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallmilk,
+/obj/item/weapon/reagent_containers/food/drinks/smallmilk,
+/obj/structure/closet/secure_closet/freezer/fridge{
+ pixel_x = 6
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"cnt" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/vending/dinnerware,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"cny" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"cnC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"cnD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/docking_hallway2)
+"cnE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cnF" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/snacks/pie,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cafeteria)
+"cnI" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cnJ" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cnL" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/machinery/button/windowtint{
+ id = "tabletop_window_tint";
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"cnM" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"cnN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/library)
+"cnP" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Library";
+ sortType = "Library"
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"cnR" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/bookbinder,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"cod" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"coe" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cog" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "gamble_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/coffee_shop)
+"coh" = (
+/obj/structure/bed/chair/oldsofa/left{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/coffee_shop)
+"cok" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"col" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "tabletop_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/library)
+"com" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"con" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"cos" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"cot" = (
+/obj/item/weapon/dice,
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/carpet,
+/area/library)
+"cou" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"cow" = (
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"cox" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"coy" = (
+/obj/structure/table/marble,
+/obj/item/weapon/hand_labeler{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/item/weapon/reagent_containers/food/condiment/sugar{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/condiment/sugar{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/item/weapon/reagent_containers/food/condiment/carton/flour{
+ pixel_x = -5;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"coJ" = (
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"coN" = (
+/obj/structure/table/marble,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = -7;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/box/donut{
+ pixel_x = 3;
+ pixel_y = 11
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"coR" = (
+/obj/structure/bed/chair/sofa/brown{
+ layer = 2.9
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"coT" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"coU" = (
+/obj/structure/bed/chair/sofa/corner/brown{
+ layer = 2.9
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"coZ" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"cpd" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/dockhallway)
+"cpg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cpi" = (
+/obj/structure/bed/chair/sofa/left/brown{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"cpj" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/ai_monitored/storage/eva)
+"cpl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cpm" = (
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to start your own honey farm.";
+ name = "beekeeping crate"
+ },
+/obj/item/beehive_assembly,
+/obj/item/bee_smoker,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/bee_pack,
+/obj/item/weapon/tool/crowbar,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cpw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cpx" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Janitor Closet";
+ sortType = "Janitor Closet"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cpy" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"cpB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cpL" = (
+/obj/structure/table/glass,
+/obj/item/device/starcaster_news{
+ pixel_x = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/aft)
+"cpM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cpN" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery)
+"cpO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/weapon/surgical/retractor,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cpP" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Operating Theatre 1";
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel,
+/obj/item/weapon/surgical/bioregen,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cpQ" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Surgery Observation";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"cpT" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 8
+ },
+/obj/machinery/chemical_analyzer,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"cpW" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"cqf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/eva_hallway)
+"cqg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cql" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Fore Starboard Hallway 1";
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/eva_hallway)
+"cqq" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqu" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "eva_starboard_airlock";
+ name = "interior access button";
+ pixel_x = 26;
+ pixel_y = -25;
+ req_access = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_starboard_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "eva_starboard_sensor";
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"cqy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/hallway/secondary/eva_hallway)
+"cqz" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/research)
+"cqA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/research)
+"cqM" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "fore_starboard_airlock";
+ name = "exterior access button";
+ pixel_x = 26;
+ pixel_y = -25;
+ req_one_access = null
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/research)
+"cqN" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/research)
+"cqO" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/research)
+"cqQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"cqR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"cqS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"cqT" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/security_port)
+"cqU" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cqV" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cqW" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cqX" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cqY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"cqZ" = (
+/obj/structure/cable,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"cra" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cri" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"crk" = (
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"crl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fore)
+"crm" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"crn" = (
+/obj/structure/sign/greencross{
+ desc = "White cross in a green field, you can get medical aid here.";
+ name = "First-Aid"
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/eva_hallway)
+"crp" = (
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"crq" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"crs" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"crt" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"crB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"crC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"crD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/eva_hallway)
+"crE" = (
+/turf/simulated/wall,
+/area/janitor)
+"crH" = (
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/window/northleft{
+ name = "Janitorial Desk"
+ },
+/obj/machinery/door/window/southright{
+ name = "Janitorial Desk";
+ req_access = list(26)
+ },
+/obj/machinery/door/blast/shutters{
+ id = "janitor_blast";
+ layer = 3.1;
+ name = "Janitorial Shutters"
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"crI" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access = list(26)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/janitor)
+"crJ" = (
+/turf/simulated/wall,
+/area/storage/auxillary)
+"crK" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/storage/auxillary)
+"crU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Auxiliary Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/storage/auxillary)
+"crV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/eva_hallway)
+"crW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/eva_hallway)
+"crX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/wall,
+/area/hallway/secondary/eva_hallway)
+"crY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/wall,
+/area/hallway/secondary/eva_hallway)
+"crZ" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "fore_starboard_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/research)
+"csa" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"csb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"csc" = (
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 8
+ },
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "tox_sensor"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Phoron";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/atmos)
+"cse" = (
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/atmos)
+"csf" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "tox_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/purple/diagonal,
+/obj/effect/floor_decal/corner/orange{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/atmos)
+"csg" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"csh" = (
+/obj/structure/table/steel,
+/obj/item/clothing/head/orangebandana,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"csj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"csk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Hardsuits";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"csm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Hardsuits"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"csn" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cso" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"csp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fore)
+"csq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Fore Hallway 2";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"csw" = (
+/turf/simulated/wall,
+/area/medical/first_aid_station/seconddeck/fore)
+"csx" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/first_aid_station/seconddeck/fore)
+"csy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_medical{
+ name = "First-Aid Station";
+ req_access = newlist();
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"csz" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Janitor"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"csA" = (
+/obj/machinery/button/remote/blast_door{
+ id = "janitor_blast";
+ name = "Privacy Shutters";
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"csB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"csC" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"csD" = (
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/machinery/requests_console{
+ department = "Janitorial";
+ departmentType = 1;
+ pixel_y = 28
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"csE" = (
+/obj/structure/table/steel,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"csF" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_port)
+"csG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"csH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"csI" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"csJ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/tape_roll{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"csK" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"csL" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"csM" = (
+/obj/structure/closet/firecloset/full,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/firstaid,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"csN" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"csY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"csZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"cta" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/storage/primary)
+"ctb" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"ctc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"ctd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "fore_starboard_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "fore_starboard_airlock";
+ pixel_x = -25;
+ req_access = null;
+ tag_airpump = "fore_starboard_pump";
+ tag_chamber_sensor = "fore_starboard_sensor";
+ tag_exterior_door = "fore_starboard_outer";
+ tag_interior_door = "fore_starboard_inner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cte" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "fore_starboard_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "fore_starboard_sensor";
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"ctf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"ctg" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cth" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/closet/crate/internals,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/engi,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/random/tank,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cti" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"ctj" = (
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"ctl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ctm" = (
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"ctu" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/diagonal,
+/obj/effect/floor_decal/corner/orange{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/atmos)
+"ctv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"ctx" = (
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "tox_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/atmos)
+"ctG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ff00";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ctJ" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ctK" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ctL" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ctM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ctN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"ctP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/engineering/atmos/monitoring)
+"ctQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"ctR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"ctS" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/weapon/rig/eva/equipped,
+/obj/machinery/door/window/westright{
+ name = "Engineering Hardsuits";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"ctT" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/machinery/door/window/westright{
+ name = "Security Hardsuits";
+ req_one_access = list(1)
+ },
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"ctU" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/door/window/westright{
+ name = "Medical Hardsuits";
+ req_one_access = list(5)
+ },
+/obj/item/clothing/head/helmet/space/void/medical,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"ctV" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"ctW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"ctX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fore)
+"ctY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"ctZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/device/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_x = -25
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cua" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cub" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cuc" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cud" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cue" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cuf" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Janitor"
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cug" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Custodial Closet";
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cuh" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cui" = (
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cuj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cum" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cun" = (
+/obj/structure/table/steel,
+/obj/item/device/camera_film{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/camera_film{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/device/camera,
+/obj/item/device/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cuo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cur" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cus" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cuu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/dockhallway)
+"cux" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cuy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"cuC" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuD" = (
+/obj/structure/table/steel,
+/obj/random/powercell,
+/obj/random/maintenance/research,
+/obj/random/tool,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuE" = (
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuG" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"cuI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "fore_starboard_pump"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "fore_starboard_pump"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"cuL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuN" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/structure/closet/wardrobe/white,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/obj/random/technology_scanner,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuQ" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cuR" = (
+/obj/structure/lattice,
+/obj/item/stack/rods,
+/turf/space,
+/area/space)
+"cuS" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor,
+/area/maintenance/research)
+"cuT" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/research)
+"cuU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cafeteria)
+"cuV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"cvb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/computer/timeclock/premade/south,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvc" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvd" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cve" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvg" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvh" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/atm{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvi" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock Hallway 2";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"cvs" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/research)
+"cvt" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/airless,
+/area/space)
+"cvw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/space)
+"cvy" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"cvz" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"cvG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"cvJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"cvK" = (
+/obj/machinery/light/small,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cvL" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "toxins_airlock";
+ name = "exterior access button";
+ pixel_x = 28;
+ pixel_y = -22;
+ req_one_access = list(8,13,65)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cvM" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cvN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cvO" = (
+/obj/structure/table/standard,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/black,
+/obj/item/weapon/storage/belt/utility/atmostech,
+/obj/item/weapon/storage/belt/utility/atmostech,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Aft Port";
+ dir = 1
+ },
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cvP" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"cvQ" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/computer/shutoff_monitor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos/monitoring)
+"cvR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cvT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/pipedispenser,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cvU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light/small,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Engineering";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"cvV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"cvW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"cvX" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"cvY" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/machinery/door/window/westleft{
+ name = "Engineering Hardsuits";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"cvZ" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/machinery/door/window/westleft{
+ name = "Security Hardsuits";
+ req_one_access = list(1)
+ },
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"cwa" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/machinery/door/window/westleft{
+ name = "Medical Staff Only";
+ req_one_access = list(5)
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/head/helmet/space/void/medical,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"cwb" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fore)
+"cwc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cwd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fore)
+"cwe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cwf" = (
+/obj/machinery/newscaster{
+ pixel_x = -28;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/bed/roller,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cwh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cwj" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cwk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cwn" = (
+/obj/structure/closet/jcloset,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cwp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cwq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/monotile,
+/area/janitor)
+"cwr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cws" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cwt" = (
+/obj/structure/closet/toolcloset,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cwu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cwv" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Auxiliary Storage";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/item/weapon/storage/fancy/markers,
+/obj/item/weapon/storage/fancy/markers,
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cww" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwx" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment";
+ req_access = null;
+ req_one_access = list(12,47)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwy" = (
+/obj/random/mob/mouse,
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwz" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwA" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwB" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/r_wall,
+/area/maintenance/research)
+"cwD" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "fore_starboard_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwG" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 4;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/valve/shutoff{
+ dir = 4;
+ name = "Research automatic shutoff valve"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwI" = (
+/obj/random/mob/mouse,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwK" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cwM" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cwN" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cwT" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/toxins_launch)
+"cwV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D1)
+"cwZ" = (
+/obj/machinery/door/blast/regular{
+ id = "toxinsdriver";
+ name = "Toxins Launcher Bay Door"
+ },
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cxc" = (
+/obj/structure/sign/warning/bomb_range,
+/turf/simulated/wall/r_wall,
+/area/rnd/toxins_launch)
+"cxd" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/toxins_launch)
+"cxe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/toxins_launch)
+"cxh" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cxi" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/hallway/primary/seconddeck/aft)
+"cxm" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "toxins_outer";
+ locked = 1;
+ name = "Toxins External Access";
+ req_access = list(8,10,13)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/toxins_launch)
+"cxn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/atmos)
+"cxo" = (
+/obj/structure/sign/warning/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos/monitoring)
+"cxp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/atmos/monitoring)
+"cxq" = (
+/obj/structure/table/steel,
+/obj/random/powercell,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/random/tool/powermaint,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cxr" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/fore)
+"cxs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cxu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fore)
+"cxw" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cxz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"cxA" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/random/medical/lite,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - FA Station Fore";
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cxI" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/closet/medical_wall{
+ pixel_y = -31
+ },
+/obj/item/roller,
+/obj/item/bodybag/cryobag,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/pill_bottle/spaceacillin,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cxK" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "defibrillator closet";
+ pixel_y = -31
+ },
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/fore)
+"cxL" = (
+/obj/structure/closet/jcloset,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cxM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cxN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cxO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cxP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cxQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cxR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cxS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/cell_charger,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cxT" = (
+/obj/structure/table/steel,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/hand_labeler,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cxU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cxV" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cxW" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cxX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyj" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyk" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cym" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyo" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "fore_starboard_airlock";
+ name = "interior access button";
+ pixel_x = -26;
+ pixel_y = 25;
+ req_one_access = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyp" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cys" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyt" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyu" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/tvalve{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyx" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cyy" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance Access";
+ req_one_access = list(47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research)
+"cyz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cyA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cyB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cyD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cyF" = (
+/turf/simulated/wall,
+/area/rnd/toxins_launch)
+"cyN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_x = -32
+ },
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cyO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/doppler_array,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/toxins_launch)
+"cyP" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins Test Area");
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cyQ" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins Test Area");
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cyS" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins Test Area");
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/button/remote/driver{
+ id = "toxinsdriver";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cyT" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "toxins_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "toxins_airlock";
+ pixel_x = -25;
+ tag_airpump = "toxins_pump";
+ tag_chamber_sensor = "toxins_sensor";
+ tag_exterior_door = "toxins_outer";
+ tag_interior_door = "toxins_inner"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "toxins_sensor";
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cyU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cyV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cyW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cyX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cyY" = (
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cyZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cza" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"czb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"czc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"czd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"czq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock 1 Fore";
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"czt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"czu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/inflatable/door/torn,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"czx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"czI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"czJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"czK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"czO" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"czV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"czY" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fore)
+"czZ" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/eastright{
+ name = "Janitorial Delivery";
+ req_one_access = list(26)
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cAb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cAc" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/janitorialcart,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cAq" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cAu" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cAv" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cAw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/atmos)
+"cAx" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cAy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cAz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cAB" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cAC" = (
+/obj/structure/table/steel,
+/obj/item/device/tape/random,
+/obj/item/device/tape/random,
+/obj/item/device/taperecorder,
+/obj/item/device/taperecorder,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/storage/auxillary)
+"cAJ" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAK" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAN" = (
+/obj/structure/closet,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAO" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAP" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hor)
+"cAQ" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAV" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAW" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAX" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAY" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cAZ" = (
+/turf/simulated/wall,
+/area/rnd/research_lockerroom)
+"cBa" = (
+/turf/simulated/wall,
+/area/rnd/research_restroom_sc)
+"cBe" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cBf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cBg" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cBh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cBi" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/storage)
+"cBj" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/airlock_sensor{
+ pixel_x = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cBk" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/window/westleft{
+ name = "Toxins Launcher";
+ req_access = list(8)
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Toxins Launcher";
+ req_access = list(8)
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/toxins_launch)
+"cBl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cBp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cBs" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cBt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "toxins_inner";
+ locked = 1;
+ name = "Toxins External Access"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/toxins_launch)
+"cBu" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "eng_port_airlock";
+ name = "exterior access button";
+ pixel_y = -25;
+ req_one_access = list(11,24)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small,
+/turf/simulated/floor/airless,
+/area/engineering/drone_fabrication)
+"cBv" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/engineering/drone_fabrication)
+"cBw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/shield_diffuser,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/sign/warning/engineering_access{
+ pixel_x = 32
+ },
+/turf/simulated/floor/airless,
+/area/engineering/drone_fabrication)
+"cBx" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"cBy" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/storage)
+"cBz" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Hard Storage"
+ },
+/turf/simulated/floor,
+/area/engineering/storage)
+"cBD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cBG" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cBH" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cBI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cBJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Hallway 1";
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cBK" = (
+/obj/random/toolbox,
+/obj/machinery/light/small,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cBL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/meter,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cBM" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"cBN" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment";
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cBO" = (
+/obj/structure/closet,
+/obj/item/clothing/head/ushanka,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cBX" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 4;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cBY" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ dir = 4;
+ name = "Deck 2 Fore automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cBZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cCa" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fore)
+"cCb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fore)
+"cCe" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fore)
+"cCf" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cCh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Cafeteria"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/cafeteria)
+"cCl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cCm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"cCo" = (
+/obj/structure/closet/crate/freezer/rations,
+/obj/random/action_figure,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCp" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon/delivery/north{
+ location = "Janitor"
+ },
+/turf/simulated/floor/tiled,
+/area/janitor)
+"cCs" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Custodial Maintenance";
+ req_access = list(26)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/janitor)
+"cCv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cCw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/storage/auxillary)
+"cCy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCG" = (
+/obj/structure/table,
+/obj/item/stack/material/plastic,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/weldingtool/hugetank,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCH" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCI" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cCJ" = (
+/obj/item/weapon/rig/hazmat/equipped,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/door/window/southright{
+ name = "RD Suit";
+ req_one_access = list(30)
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cCK" = (
+/obj/structure/closet/secure_closet/RD,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/random_multi/single_item/hand_tele,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cCL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Research Director's Office"
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cCM" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/button/remote/blast_door{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_access = list(47)
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the cargo doors.";
+ id = "researchdoor";
+ name = "Research door control";
+ pixel_x = 6;
+ pixel_y = 24;
+ req_access = list(30)
+ },
+/obj/machinery/button/windowtint{
+ id = "rdoffice";
+ pixel_x = -16;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cCO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cCP" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/circuitboard/teleporter,
+/obj/item/weapon/circuitboard/aicore{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/cartridge/signal/science,
+/obj/item/weapon/cartridge/signal/science{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/signal/science{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/device/megaphone,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director RC";
+ pixel_x = 30;
+ pixel_y = -2
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cCR" = (
+/turf/simulated/wall,
+/area/rnd/research)
+"cCS" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance Access";
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research)
+"cCT" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/obj/item/device/gps/science,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cCU" = (
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Locker Room"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cCV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/scientist,
+/obj/item/device/gps/science,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cCW" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cCX" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cCY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cCZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cDa" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cDb" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cDc" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cDd" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cDe" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cDf" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cDg" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cDh" = (
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "toxinsdriver"
+ },
+/turf/simulated/floor/airless,
+/area/rnd/toxins_launch)
+"cDk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cDm" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/rnd/toxins_launch)
+"cDn" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cDo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cDp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Launch Room";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cDr" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ target_pressure = 200
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "toxins_airlock";
+ name = "interior access button";
+ pixel_y = 22;
+ req_one_access = list(8,13,65)
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cDs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/plating,
+/area/rnd/toxins_launch)
+"cDt" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/sign/warning/airlock{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/toxins_launch)
+"cDu" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eng_port_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"cDv" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/stack/cable_coil/orange,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"cDw" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/foyer)
+"cDx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering EVA Storage";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engineer_eva)
+"cDy" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/engineering/engineer_eva)
+"cDz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cDA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Emergency Storage"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"cDB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"cDC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"cDD" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"cDE" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"cDF" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"cDH" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"cDI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/barrestroom)
+"cDP" = (
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDQ" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDR" = (
+/obj/structure/grille/broken,
+/obj/item/stack/rods,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDW" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cDZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cEa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cEb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cEc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cEd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cEe" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cEf" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/research)
+"cEg" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cEh" = (
+/mob/living/simple_mob/slime/xenobio/rainbow/kendrick,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cEi" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Research Director"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cEj" = (
+/obj/structure/table/reinforced,
+/obj/item/device/paicard{
+ pixel_x = 4
+ },
+/obj/item/device/tape,
+/obj/item/device/taperecorder{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/jar,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cEk" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cEl" = (
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cEm" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cEn" = (
+/obj/machinery/disposal,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cEo" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/item/device/gps/science,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cEp" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cEq" = (
+/obj/structure/closet/wardrobe/science_white,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/gloves,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cEr" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cEs" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cEt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway Fore";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cEu" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cEz" = (
+/obj/structure/sign/warning/compressed_gas,
+/turf/simulated/wall/r_wall,
+/area/rnd/storage)
+"cEA" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cEB" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cEC" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cED" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cEE" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cEH" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Equipment Storage";
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"cEI" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"cEJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room";
+ req_access = list(7)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/toxins_launch)
+"cEK" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "eng_port_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "eng_port_sensor";
+ pixel_x = -24
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"cEM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"cEN" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "eng_port_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"cEO" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"cEP" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/hallway/atmos_hallway)
+"cEQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"cER" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"cEX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Aft Hallway 1";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"cEZ" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cFa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cFb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/device/multitool,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cFi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cFj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"cFk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"cFt" = (
+/turf/simulated/wall,
+/area/crew_quarters/barrestroom)
+"cFF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/holodeck_control)
+"cFG" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/holodeck_control)
+"cFH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/holodeck_control)
+"cFI" = (
+/turf/simulated/wall,
+/area/holodeck_control)
+"cFM" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"cFN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"cFO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cFP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cFU" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos)
+"cFV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cFW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cFX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cFY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cFZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cGa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/meter,
+/obj/structure/closet/toolcloset,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cGd" = (
+/turf/simulated/wall,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"cGe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cGf" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/structure/sign/warning/high_voltage{
+ pixel_x = 32
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"cGm" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Research"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"cGn" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"cGo" = (
+/obj/machinery/computer/aifixer{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hor)
+"cGp" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cGq" = (
+/obj/structure/flora/pottedplant/mysterious,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cGw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/item/device/gps/science/rd,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cGx" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white_rd,
+/obj/item/weapon/stamp/rd{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/welding/superior,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cGy" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen/multi,
+/obj/item/weapon/paper/monitorkey,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ name = "Research Monitor";
+ network = list("Research","Toxins Test Area","Robots","Anomaly Isolation","Research Outpost");
+ pixel_x = 32;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"cGD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cGE" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cGF" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"cGH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/research{
+ name = "Research Locker Room";
+ req_access = list(47)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research_lockerroom)
+"cGK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cGL" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cGO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"cGP" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Research Restroom";
+ req_access = list(47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research_restroom_sc)
+"cGQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cGR" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/weapon/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/weapon/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/weapon/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/weapon/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/weapon/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/random/soap,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cGT" = (
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cGU" = (
+/obj/structure/window/basic,
+/obj/structure/undies_wardrobe,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"cGW" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w1_e_airlock";
+ landmark_tag = "d2_w1_e";
+ name = "Deck 2, Dock 1-E"
+ },
+/turf/space,
+/area/space)
+"cGY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cHs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"cHR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access = list(8)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/storage)
+"cIl" = (
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"cIn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"cIo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"cIQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cJn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"cJL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"cKs" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"cKu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"cMi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"cMz" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"cNa" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access = list(8)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/storage)
+"cNk" = (
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cNB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cND" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"cNV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Maintenance";
+ req_access = list(25)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"cPg" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"cPv" = (
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#444444";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"cQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cQM" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Coffee Shop";
+ req_one_access = list(25,28)
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"cRd" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"cRi" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cSb" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"cSi" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Lab 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cSC" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/blue,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"cSF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cSR" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cTb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"cTj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cTz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "d2_w3_d_airlock";
+ pixel_y = -27;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"cUx" = (
+/obj/item/stack/material/phoron{
+ amount = 5
+ },
+/obj/structure/table/glass,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"cUR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"cUT" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"cVi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel Office";
+ req_access = list(27)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/office)
+"cVs" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_emt_bay)
+"cVG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"cVH" = (
+/obj/machinery/chem_master,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"cVI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"cWj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"cWk" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"cWU" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "dock3_south_pump"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"cXd" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"cXz" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"cXB" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"cXZ" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"cYh" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"cZy" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"cZS" = (
+/obj/structure/bed/chair/comfy/beige,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"dar" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "eng_port_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "eng_port_airlock";
+ pixel_x = -25;
+ req_access = list(13);
+ req_one_access = null;
+ tag_airpump = "eng_port_pump";
+ tag_chamber_sensor = "eng_port_sensor";
+ tag_exterior_door = "eng_port_outer";
+ tag_interior_door = "eng_port_inner"
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"day" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"dbg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/coffee_shop)
+"dbK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"dck" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"dcS" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"ddf" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment";
+ req_access = newlist();
+ req_one_access = list(12,25,27,28,35)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ddH" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "eng_port_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"ddO" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"den" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"deQ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/gun/launcher/syringe,
+/obj/item/weapon/storage/box/syringegun,
+/obj/random/medical,
+/obj/random/medical,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"dfc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"dgM" = (
+/obj/structure/sign/examroom{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"dgU" = (
+/turf/simulated/wall/r_wall,
+/area/holodeck_control)
+"dgY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/engineering/storage)
+"dhP" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"dhR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"djg" = (
+/obj/effect/floor_decal/sign/dock/one,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"djr" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"dkb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"dln" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Blast Doors";
+ pixel_y = 25;
+ req_access = null;
+ req_one_access = list(11,24)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"dlt" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/holodeck_control)
+"dlx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"dlB" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/item/weapon/storage/box/nifsofts_medical,
+/obj/item/weapon/backup_implanter{
+ pixel_y = -6
+ },
+/obj/item/weapon/backup_implanter,
+/obj/item/weapon/backup_implanter{
+ pixel_y = 6
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"dlP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"dlW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Civilian Hallway 1";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"dmm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engineer_eva)
+"dmt" = (
+/obj/structure/bed/chair/comfy/purp,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"doj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering)
+"doR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/foyer)
+"dpN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"dpO" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fscenter)
+"dpP" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/surgical/FixOVein,
+/obj/item/weapon/surgical/surgicaldrill,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"dpQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"dqc" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"dqp" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/item/weapon/storage/box/monkeycubes,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"dqr" = (
+/turf/simulated/wall/r_wall,
+/area/medical/cryo/autoresleeve)
+"dqF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"drD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"drJ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "pr1_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/patient_a)
+"dsj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"dso" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"dtI" = (
+/obj/structure/closet/emcloset,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"dtN" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"duc" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/technology_scanner,
+/obj/structure/catwalk,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"duE" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon/delivery/west{
+ location = "Hydroponics"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"duK" = (
+/obj/machinery/floodlight,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"duU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"dve" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Science Substation";
+ req_one_access = list(11,24,47)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"dvr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"dvz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"dvB" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"dvT" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"dwh" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1380;
+ id_tag = "cryostorage_shuttle";
+ name = "cryostorage controller";
+ pixel_x = -26;
+ req_access = list(19);
+ tag_door = "cryostorage_shuttle_hatch"
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"dwx" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"dwP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"dwV" = (
+/obj/machinery/computer/robotics{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hor)
+"dwY" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"dxa" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"dxh" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"dxR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"dyd" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"dyw" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/heads/sc/hor)
+"dyy" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"dyK" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/emergency/eva)
+"dyN" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"dyX" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/obj/machinery/recycling/sorter,
+/obj/structure/sign/warning/moving_parts{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"dzb" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "rdoffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hor)
+"dzi" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Xenobiologist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"dzl" = (
+/obj/machinery/libraryscanner,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Arrivals Lounge";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"dzN" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"dzX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"dBF" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 7";
+ dir = 1
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/starcaster_news,
+/obj/item/clothing/accessory/scarf/christmas,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/apcenter)
+"dBK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/hallway/primary/seconddeck/stairwell)
+"dCb" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"dCe" = (
+/obj/structure/ladder/up,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"dCy" = (
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth (Chaplain)";
+ req_access = list(22)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/main)
+"dCH" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"dCI" = (
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"dDw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"dEa" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/landmark/start{
+ name = "Barista"
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"dEc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"dEo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"dEU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"dEZ" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"dGs" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"dGB" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"dGC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_lockerroom)
+"dGE" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"dHp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"dHR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"dHU" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "garbage";
+ name = "disposal coveyor"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/button/remote/driver{
+ id = "trash";
+ pixel_x = -26;
+ pixel_y = -6
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"dIm" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"dIq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"dIu" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"dIx" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/machinery/door/window/westright{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"dJJ" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/foyer)
+"dJN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"dJS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"dKV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Cargo Second Deck";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"dLg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"dLA" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"dLF" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"dMl" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"dMp" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"dMF" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"dNr" = (
+/obj/structure/bookcase{
+ name = "bookcase (Religious)"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"dNI" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"dOF" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"dPi" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/bar)
+"dPW" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"dQc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"dRO" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/structure/fans/tiny,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"dSc" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"dSt" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/firecloset,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/storage)
+"dSY" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"dTh" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"dTv" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/library)
+"dTG" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"dTN" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"dUc" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"dUe" = (
+/obj/structure/sign/warning/compressed_gas,
+/turf/simulated/wall,
+/area/rnd/storage)
+"dUz" = (
+/obj/machinery/vending/phoronresearch{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"dUH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"dUK" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_waste)
+"dVl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"dVq" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Cafeteria Port";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"dVM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"dVT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"dWe" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/plasticflaps/mining,
+/obj/structure/sign/deathsposal{
+ icon_state = "falling";
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"dWl" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Port";
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"dWp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"dWC" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"dWG" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Heated to Waste"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"dWM" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/atmospherics/binary/pump{
+ name = "Waste to Scrubbers"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/mixing)
+"dXD" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"dXI" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/pump,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"dYg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"dYC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"dYS" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/glass,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"dYT" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1445;
+ id = "engine_exhaust_output";
+ name = "Engine Exhaust";
+ power_rating = 30000;
+ use_power = 1;
+ volume_rate = 700
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/air_sensor{
+ frequency = 1445;
+ id_tag = "engine_exhaust_sensor"
+ },
+/turf/simulated/floor/airless,
+/area/engineering/engine_waste)
+"dZA" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/docking_hallway2)
+"dZD" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"dZU" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Heater to Waste"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"eae" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"eaB" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"eaF" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"eaJ" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"ebf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ebw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"ebA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"ebS" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"ecb" = (
+/obj/structure/bed/chair/sofa/left/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/seconddeck/artgallery)
+"ecy" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/mixing)
+"ecT" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"edR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"eeQ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/pen,
+/obj/item/device/flash,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Arrival Checkpoint";
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"efb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"efl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"efz" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/module/power_control,
+/obj/item/weapon/cell{
+ maxcharge = 2000
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"efB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"efH" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eng_port_inner";
+ locked = 1;
+ name = "Engineering Internal Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"egb" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Medical Restroom"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medical_restroom)
+"ego" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"egG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"egH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eng_port_inner";
+ locked = 1;
+ name = "Engineering Internal Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor,
+/area/engineering/drone_fabrication)
+"ehE" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/thermoregulator,
+/turf/simulated/floor,
+/area/engineering/storage)
+"eia" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"eiA" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"eiB" = (
+/obj/machinery/power/emitter,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"eiG" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"eiI" = (
+/obj/structure/closet/crate/solar,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"ejk" = (
+/obj/machinery/door/window/southright{
+ name = "Bar";
+ req_access = list(25)
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"ejl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"ejD" = (
+/obj/machinery/space_heater,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/storage)
+"ejP" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"eke" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"ekk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ekq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"ekL" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"ekT" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"eli" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"elC" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"emk" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"emn" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/atmos_hallway)
+"emv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"emI" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"emX" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/flashlight/lamp{
+ pixel_y = 10
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"enc" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/sleeper)
+"end" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fp_emergency)
+"enG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fscenter)
+"enR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"eov" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"eow" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"eoK" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"epn" = (
+/obj/item/device/geiger/wall/west,
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"eqB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/pen/multi,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"eqD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/bodyscanner,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"eqL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"eqR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"erh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"erE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"erJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"esc" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/transhuman/resleever,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"esm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"esJ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ets" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance Access";
+ req_access = list(5)
+ },
+/turf/simulated/floor/plating,
+/area/medical/medbay)
+"etv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"etA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"etF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"eup" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"euB" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"euY" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"eva" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/conveyor_switch/oneway{
+ id = "recycler";
+ name = "Recycling Process";
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central4,
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"evb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"evM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room A"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/patient_a)
+"evZ" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"ewQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/material/knife/machete/hatchet,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/material/minihoe,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ewV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Emergency Storage"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"exb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"eyb" = (
+/obj/structure/table/woodentable,
+/obj/item/toy/plushie/therapy/blue,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"eyV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"eAf" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"eBi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"eBm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"eBZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"eCc" = (
+/obj/structure/table/bench/wooden,
+/obj/item/device/flashlight/lamp/clown{
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"eCo" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Research";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"eCW" = (
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"eDi" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/navbeacon/delivery/south{
+ location = "Tool Storage"
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"eDx" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Research Subgrid";
+ name_tag = "Research Subgrid"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"eEj" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "surgeryobs2";
+ name = "Privacy Shutters";
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"eEy" = (
+/obj/structure/closet/coffin,
+/obj/machinery/door/window/northleft{
+ name = "Coffin Storage";
+ req_access = list(27)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"eEQ" = (
+/obj/structure/bed/chair,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"eEU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"eEX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"eFj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/westright{
+ name = "EVA Suit Storage";
+ req_access = list(5)
+ },
+/obj/item/device/suit_cooling_unit,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"eFx" = (
+/obj/machinery/computer/mecha{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hor)
+"eFW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"eGp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - RD's Office";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"eGr" = (
+/obj/item/device/radio/intercom/locked/confessional{
+ pixel_y = -21
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"eGF" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"eGO" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"eHa" = (
+/obj/structure/closet/crate,
+/obj/random/toy,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/action_figure,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"eHi" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "crg_aft_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"eHo" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"eHw" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"eHG" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"eHK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"eHU" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Civilian";
+ name_tag = "Civilian Subgrid"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"eHV" = (
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"eHX" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Xenobiologist"
+ },
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"eHY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"eIu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"eIM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"eIX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"eIY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"eIZ" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"eJf" = (
+/obj/machinery/door/window/westleft{
+ name = "Shower"
+ },
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/research_restroom_sc)
+"eKe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"eKp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"eKs" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"eKB" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"eKZ" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artsupplies)
+"eLa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/wall,
+/area/maintenance/substation/civilian)
+"eLe" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"eLf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"eLk" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Gas Storage";
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"eLs" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/apcenter)
+"eLH" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/organ_printer/flesh/full,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"eLI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"eMc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ frequency = 1380;
+ id_tag = null;
+ pixel_x = -27
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"eMm" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"eMv" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/computer/area_atmos/tag{
+ dir = 1;
+ scrub_id = "Toxins"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"eMF" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/requests_console{
+ department = "Tool Storage";
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 10
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"eMV" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"eNj" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/storage)
+"eNs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"eNz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "Surgery";
+ name = "Patient Ward";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/ward)
+"eNJ" = (
+/turf/simulated/wall,
+/area/rnd/storage)
+"eNU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"eOl" = (
+/obj/machinery/optable,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"eOG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"eOJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"ePp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"eQy" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"eQz" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"eQK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"eRd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"eRm" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"eRK" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/rnd/mixing)
+"eRO" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled/steel,
+/area/rnd/mixing)
+"eSn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"eSw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry Laboratory";
+ req_access = list(33)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/chemistry)
+"eSF" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ dir = 4
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"eSJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"eTf" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/rnd/mixing)
+"eTt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"eTM" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"eUR" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"eVw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"eVz" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/maintenance/cargo)
+"eWt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/toolbox/electrical,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"eXe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"eXg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"eXp" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"eXq" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"eXs" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/beige/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"eXF" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Cargo Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"eXP" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "d2_w1_a_airlock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"eYn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"eYr" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/medical_lockerroom)
+"eYu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"eYX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"eZp" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"eZt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"eZS" = (
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"fbc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"fbN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"fbP" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "eng_port_airlock";
+ name = "interior access button";
+ pixel_y = 25;
+ req_one_access = list(11,24)
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"fbR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"fbZ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fce" = (
+/obj/machinery/space_heater,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/storage)
+"fcO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"fcX" = (
+/obj/structure/sign/warning/docking_area,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D3)
+"fdh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fdB" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"fdE" = (
+/obj/machinery/disposal/deliveryChute,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/plasticflaps/mining,
+/obj/structure/sign/deathsposal{
+ icon_state = "falling";
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"fdK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"fdL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"fdO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"fee" = (
+/obj/structure/sign/department/shield,
+/turf/simulated/wall/r_wall,
+/area/engineering/hallway/atmos_hallway)
+"feh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/atmos_hallway)
+"fek" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"ffB" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"ffZ" = (
+/obj/structure/table,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"fge" = (
+/obj/structure/table,
+/turf/simulated/floor/tiled/yellow,
+/area/maintenance/engineering)
+"fgg" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"fgJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"fgL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"fgN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"fhn" = (
+/obj/machinery/smartfridge/produce,
+/turf/simulated/wall/r_wall,
+/area/hydroponics)
+"fhH" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"fhU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"fhX" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Public Office";
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"fia" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"fid" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "aft_starboard_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = 26;
+ req_one_access = null
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/medbay)
+"fil" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"fiw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"fix" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"fiG" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"fjp" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"fjv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"fjy" = (
+/obj/structure/ladder/updown,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"fjz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"fjA" = (
+/obj/structure/closet/hydrant{
+ pixel_x = 32
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/fs_emergency)
+"fld" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"flB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Science Substation";
+ req_access = list(47);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/research)
+"flC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "rdoffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hor)
+"flL" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/status_display{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"fma" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/medical_wall/pills{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"fmH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"fno" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"fnp" = (
+/turf/simulated/wall,
+/area/maintenance/chapel)
+"fnG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"foc" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ id_tag = null;
+ name = "Research Director Quarters";
+ req_access = list(30)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/hor)
+"foi" = (
+/obj/structure/morgue/crematorium{
+ dir = 1;
+ id = "Chapelburn"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"foz" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"foF" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "rdoffice"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hor)
+"foG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"foZ" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"fpc" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"fpA" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"fql" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/rnd/research)
+"frT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/rnd/research)
+"frZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"fsh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"fsn" = (
+/obj/machinery/smartfridge/secure/medbay{
+ req_one_access = list(33,66)
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"fsr" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "d2_w3_c_airlock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"fsC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"ftm" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"ftv" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"ftz" = (
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/item/stack/tile/floor,
+/turf/simulated/floor/plating,
+/area/construction/seconddeck/construction1)
+"fub" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"fur" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"fuP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"fuU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"fva" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/rnd/research)
+"fvE" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/tape_roll,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"fvH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock{
+ name = "Research Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research_restroom_sc)
+"fvK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ dir = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"fvS" = (
+/obj/item/weapon/deck/cards,
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/carpet,
+/area/library)
+"fwZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"fxl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"fxZ" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "crg_aft_airlock";
+ name = "exterior access button";
+ pixel_y = 25;
+ req_one_access = null
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/cargo)
+"fya" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"fyo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/sign/dock/two,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fyD" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"fyL" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"fyN" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"fzk" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"fzR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/bombcloset,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_x = -32
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"fAl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"fAD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fAH" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"fAL" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"fBa" = (
+/obj/machinery/smartfridge/produce,
+/turf/simulated/wall,
+/area/crew_quarters/coffee_shop)
+"fBz" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"fBJ" = (
+/obj/structure/sign/warning/hot_exhaust,
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"fBN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"fBW" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1380;
+ id_tag = "escape_dock_snorth_airlock";
+ master_tag = "escape_dock";
+ pixel_y = 27;
+ req_one_access = list(13);
+ tag_airlock_mech_sensor = null;
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null;
+ tag_shuttle_mech_sensor = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"fCl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"fCw" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"fCA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"fCI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"fDf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"fDv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fDD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"fDG" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"fEi" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"fEE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"fEU" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"fFh" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"fFv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"fFx" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"fFA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"fFD" = (
+/obj/structure/table/woodentable,
+/obj/structure/flora/pottedplant/stoutbush{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fFG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"fGb" = (
+/obj/structure/table/woodentable,
+/obj/machinery/recharger,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Aft";
+ dir = 1
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"fGl" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"fGG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"fGW" = (
+/obj/structure/sign/warning/fire,
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"fHf" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"fHh" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"fHv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"fHP" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"fHQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"fHV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"fIx" = (
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"fIL" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"fIO" = (
+/mob/living/simple_mob/animal/sif/fluffy,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"fIX" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"fJb" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Engine - ShieldGen";
+ cur_coils = 4;
+ input_level = 750000;
+ output_level = 750000
+ },
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/hallway/engineer_hallway)
+"fJl" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "CE Office";
+ sortType = "CE Office"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"fJr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"fJy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"fJF" = (
+/obj/structure/bed/psych,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"fJX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"fKl" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/engineering/hallway/engineer_hallway)
+"fLN" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo";
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"fLS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"fMc" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"fMC" = (
+/obj/structure/table/marble,
+/obj/item/toy/plushie/face_hugger,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"fMG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"fMS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Locker Room";
+ req_one_access = list(10)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/locker_room)
+"fMV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"fNB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"fON" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 8;
+ regulate_mode = 0;
+ target_pressure = 4500;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"fOV" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "coffeeshop";
+ name = "Cafe Shutters";
+ pixel_y = -26;
+ req_one_access = list(25,28)
+ },
+/obj/machinery/button/neonsign{
+ id = "cafeopen";
+ name = "Cafe Sign Switch";
+ pixel_x = 11;
+ pixel_y = -27
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"fPb" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"fPk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"fPE" = (
+/obj/random/toolbox,
+/turf/simulated/floor/tiled/steel,
+/area/maintenance/engineering)
+"fPU" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"fPV" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fQL" = (
+/obj/structure/sign/directions/cryo{
+ pixel_y = -10
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/fscenter)
+"fRK" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"fRL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Fore Hallway 1";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"fRS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"fSb" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"fSk" = (
+/obj/structure/table/standard,
+/obj/item/toy/plushie/box,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"fSQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"fSY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"fTt" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -10
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/fscenter)
+"fUQ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"fVj" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"fVu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"fVv" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/machinery/navbeacon/delivery/east{
+ location = "Research Division"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/research)
+"fVA" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Research Division Delivery";
+ req_access = list(47)
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/research)
+"fVP" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"fWd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"fWj" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"fWS" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/soap/nanotrasen,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"fXq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"fYw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"fYH" = (
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"fYN" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"fZr" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"fZN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"fZU" = (
+/turf/simulated/wall,
+/area/medical/psych)
+"gar" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"gaL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"gbd" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gbs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gbB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gbG" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"gbW" = (
+/obj/structure/bookcase{
+ name = "Forbidden Knowledge"
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"gcc" = (
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"gcd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway Port 1"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gch" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"gcj" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"gck" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"gcB" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "RD Office";
+ sortType = "RD Office"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gdd" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/door/airlock/glass_research,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gdI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 6
+ },
+/obj/structure/bed/double,
+/obj/item/weapon/bedsheet/bluedouble,
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"gdV" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gel" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"geo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"gew" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/item/device/geiger/wall/west,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gex" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"geI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/obj/machinery/vending/blood,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"gfQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Research";
+ sortType = "Research"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"ggi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"ggA" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ggV" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"gho" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"ghX" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"gil" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"git" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"giQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"giY" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"gjb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gjl" = (
+/obj/machinery/chem_master,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/beige/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"gjr" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"gju" = (
+/obj/machinery/door/airlock/glass{
+ name = "Cryogenic Storage"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/docking_hallway2)
+"gjJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"gkh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gkl" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Cargo Bay";
+ sortType = "Cargo Bay"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"gkn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"gkO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gkY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Maintenance";
+ req_access = list(50)
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/lockerroom)
+"gkZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D1)
+"glE" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"gmm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"gmp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"gmI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gmX" = (
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"got" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"goF" = (
+/obj/machinery/vending/tool{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"gpB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/door/airlock/glass_research,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gpG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gpI" = (
+/obj/item/weapon/stool,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"gqm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gqp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gro" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/medical_lockerroom)
+"grM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"gsP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gsX" = (
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"gtd" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"gtw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gtA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel Starboard"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"guk" = (
+/turf/simulated/wall,
+/area/medical/medical_lockerroom)
+"guC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gvv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"gvF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"gwp" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway Starboard"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Particle Accelerator door";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research/particleaccelerator)
+"gxV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"gyf" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"gyw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/stairs/spawner/east,
+/obj/structure/cable/green{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up,
+/obj/structure/sign/warning/radioactive{
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research/particleaccelerator)
+"gyA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/closet/emcloset,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"gyD" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"gyT" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"gzN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"gzP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ id_tag = null;
+ pixel_x = 27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"gAD" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"gAK" = (
+/obj/structure/table/woodentable,
+/obj/machinery/librarycomp,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"gAX" = (
+/obj/machinery/atmospherics/tvalve/bypass{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "tox_airlock_control";
+ pixel_x = 24;
+ tag_airpump = "tox_airlock_pump";
+ tag_chamber_sensor = "tox_airlock_sensor";
+ tag_exterior_door = "tox_airlock_exterior";
+ tag_interior_door = "tox_airlock_interior"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"gBn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"gBs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"gCo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"gCy" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1443;
+ id = "air_in";
+ use_power = 1
+ },
+/obj/machinery/sparker{
+ id = "mixingsparker";
+ pixel_x = -22
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"gCE" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"gCH" = (
+/obj/machinery/door/blast/regular{
+ id = "mixvent";
+ name = "Mixer Room Vent"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/mixing)
+"gCT" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"gDg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"gDr" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"gDA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"gDC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_medical,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay2)
+"gDF" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/machinery/dna_scannernew,
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"gDI" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/random/medical/lite,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"gDU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Engine Waste Handling";
+ req_one_access = list(10,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"gEj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"gEM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D1)
+"gFD" = (
+/obj/structure/table/wooden_reinforced,
+/obj/structure/flora/pottedplant/thinbush{
+ pixel_y = 10
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"gFH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"gFO" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/weapon/nullrod,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "chapeloffice";
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"gGj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"gGE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"gHy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"gIc" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Hallway Port 2";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"gIM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"gJr" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/hallway/engineer_hallway)
+"gJB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"gJR" = (
+/obj/machinery/neonsign/cafe{
+ id = "cafeopen"
+ },
+/turf/simulated/wall,
+/area/library)
+"gJV" = (
+/obj/structure/closet,
+/obj/item/weapon/lipstick/purple,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"gKx" = (
+/obj/structure/kitchenspike,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"gKC" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/item/weapon/storage/fancy/markers,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"gKU" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"gLd" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gLq" = (
+/obj/random/obstruction,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"gLw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gLD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/engineer_hallway)
+"gLO" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall/no_join,
+/area/shuttle/cryo/station)
+"gMa" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gMr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"gMz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artgallery)
+"gNb" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"gNy" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"gNI" = (
+/obj/item/weapon/dice/d20,
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/carpet,
+/area/library)
+"gOj" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gOu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gOI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"gPc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"gPh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 10;
+ icon_state = "0-10"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gPA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"gPC" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"gPG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gQh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"gQu" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"gQv" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"gQR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/engineer_hallway)
+"gQT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/morgue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"gRF" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/item/weapon/book/manual/chef_recipes,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"gRL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"gRP" = (
+/obj/structure/sign/poster,
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"gSn" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/westleft{
+ name = "EVA Suit Storage";
+ req_access = list(5)
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/weapon/tank/oxygen,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/weapon/tank/oxygen,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"gSJ" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"gSR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"gTh" = (
+/obj/item/stack/tile/floor/yellow,
+/obj/item/frame/light,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"gTx" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"gTM" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"gUd" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1380;
+ id_tag = "arrivals_dock_north_airlock";
+ master_tag = "arrivals_dock";
+ pixel_y = 27;
+ req_one_access = list(13);
+ tag_airlock_mech_sensor = null;
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null;
+ tag_shuttle_mech_sensor = null
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"gUj" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 12"
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/communicator,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"gUk" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"gUm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"gUV" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"gVl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"gVm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"gVw" = (
+/turf/simulated/wall/r_wall,
+/area/medical/patient_a)
+"gWf" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/food/drinks/britcup,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"gWC" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"gWL" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"gWZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"gXB" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"gYl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"gYm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"gZj" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/closet/emcloset,
+/obj/item/weapon/tool/crowbar/red,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"gZm" = (
+/obj/structure/sign/directions/bridge{
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ dir = 4
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fscenter)
+"gZF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"had" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"hai" = (
+/obj/structure/table/glass,
+/obj/item/weapon/towel{
+ color = "#FF6666";
+ name = "light red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#FF6666";
+ name = "light red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#FF6666";
+ name = "light red towel"
+ },
+/obj/item/weapon/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green,
+/obj/random/soap,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"hax" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"hay" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 8
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fscenter)
+"haC" = (
+/obj/structure/easel,
+/obj/item/canvas/nineteen_nineteen,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"haO" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"hcg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/overgrown,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"hcA" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"hcP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"hdb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"hdd" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fscenter)
+"hdj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"hdI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"hdV" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 1"
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/paicard,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fscenter)
+"hen" = (
+/obj/effect/floor_decal/chapel,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"heo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"hex" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fscenter)
+"heB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"hff" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "cmooffice"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/cmo)
+"hft" = (
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_x = 25
+ },
+/obj/structure/flora/pottedplant/flower,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"hgn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"hgv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"hgz" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hgO" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "Hydroponics"
+ },
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Hydroponics";
+ req_one_access = list(35,28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hydroponics)
+"hhw" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"hhQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"hiu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"hiK" = (
+/obj/structure/closet/wardrobe/chaplain_black,
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"hjA" = (
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hjH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"hkr" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"hkO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"hkW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway Port 2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hlb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hlo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"hlC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"hlN" = (
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/igniter,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/obj/item/device/assembly/timer,
+/obj/structure/closet/crate{
+ name = "Grenade Crate"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"hlX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hmD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"hmH" = (
+/obj/structure/bookcase{
+ name = "bookcase (Adult)"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"hny" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hnG" = (
+/turf/simulated/wall,
+/area/medical/medbay2)
+"hnS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hoa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"hoK" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"hpn" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"hpA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hpC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"hqq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"hqB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hqU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"hru" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hrz" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"hsI" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w1_a_airlock";
+ landmark_tag = "d2_w1_a";
+ name = "Deck 2, Dock 1-A"
+ },
+/turf/space,
+/area/space)
+"hsP" = (
+/obj/structure/casino_table/roulette_chart,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"hsW" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"hti" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/door/airlock/glass_research,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"htI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"hua" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"hul" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hut" = (
+/obj/random/junk,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"hvb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hvG" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hwF" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"hwH" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"hwJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/medical/medbay_emt_bay)
+"hwR" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"hxj" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"hxs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hxA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hyf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway Mid";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hyq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/vending/medical,
+/turf/simulated/wall,
+/area/medical/medbay_primary_storage)
+"hzq" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Hallway Starboard 3";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"hzr" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"hzy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"hzE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hzO" = (
+/turf/simulated/wall,
+/area/medical/biostorage)
+"hzX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hBg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"hBo" = (
+/turf/simulated/wall/r_wall,
+/area/medical/patient_wing)
+"hBq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hBt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hBM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "medbayrecquar";
+ name = "Medbay Emergency Quarantine Shutters";
+ opacity = 0
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"hBX" = (
+/obj/structure/closet/secure_closet/paramedic,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"hCW" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "arrivals_dock_south_airlock";
+ master_tag = "arrivals_dock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ tag_airlock_mech_sensor = null;
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null;
+ tag_shuttle_mech_sensor = null
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"hCX" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/tool/screwdriver,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"hDc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hDe" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"hDz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/cryopod{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"hDI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"hEr" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"hEv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hEC" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"hEU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hGd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"hGu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"hGX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"hHj" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"hHG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hIh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hIn" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"hIE" = (
+/turf/simulated/wall,
+/area/maintenance/medbay)
+"hIK" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"hIR" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/device/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"hJg" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"hJo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hJw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access = list(28)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hydroponics)
+"hJC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"hJU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/mixing)
+"hJX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"hKa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"hKF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"hKV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"hLg" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_interior";
+ locked = 1;
+ name = "Mixing Room Interior Airlock";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/mixing)
+"hLi" = (
+/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{
+ frequency = 1379;
+ id = "tox_airlock_pump"
+ },
+/obj/machinery/air_sensor{
+ frequency = 1430;
+ id_tag = "toxins_mixing_interior";
+ output = 63;
+ pixel_x = -8;
+ pixel_y = -18
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"hLS" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_exterior";
+ locked = 1;
+ name = "Mixing Room Exterior Airlock";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/mixing)
+"hMr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/sign/dock/two,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"hMv" = (
+/obj/machinery/air_sensor{
+ frequency = 1430;
+ id_tag = "toxins_mixing_exterior";
+ output = 63
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"hMB" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"hMG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"hMM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"hMR" = (
+/obj/machinery/door/blast/regular{
+ id = "mixvent";
+ name = "Mixer Room Vent"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/mixing)
+"hNm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"hNv" = (
+/turf/simulated/wall,
+/area/storage/primary)
+"hNJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"hNK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/drone_fabricator/unify,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"hOi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"hOj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"hOu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"hOK" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lounge_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/docking_lounge)
+"hPl" = (
+/obj/machinery/lapvend{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"hPt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/main)
+"hPC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"hPQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Drone Fabrication";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/drone_fabrication)
+"hPS" = (
+/obj/structure/table/standard,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"hPV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"hPZ" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"hQg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"hQJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/engineer_hallway)
+"hQY" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"hRr" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hop_office"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hop)
+"hRv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 10;
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/engineer_hallway)
+"hSp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"hSM" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"hSQ" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Medbay";
+ sortType = "Medbay"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"hTs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"hTu" = (
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder,
+/obj/effect/floor_decal/carpet/blue{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"hTx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"hTF" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 1;
+ master_tag = null;
+ name = "interior access button";
+ pixel_x = 27;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"hUh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"hUM" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"hUO" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"hUT" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"hVh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fscenter)
+"hVN" = (
+/obj/item/weapon/tool/wrench,
+/obj/structure/table/glass,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/item/device/sleevemate,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cryo)
+"hVT" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/dockhallway)
+"hWv" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"hWw" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ dir = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"hWE" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"hWO" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"hXo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/medical/virology)
+"hXA" = (
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"hXY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"hYp" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"hYq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"hYG" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"hYM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"hYU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"hYY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Lounge"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/docking_lounge)
+"hZr" = (
+/turf/simulated/wall,
+/area/crew_quarters/seconddeck/artsupplies)
+"hZu" = (
+/obj/effect/floor_decal/chapel,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"hZZ" = (
+/obj/structure/ladder/up,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"iah" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"ibt" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"ibC" = (
+/obj/structure/closet/crate/plastic,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ibQ" = (
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"ibY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/patient_wing)
+"ich" = (
+/turf/simulated/wall,
+/area/rnd/lab)
+"icB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"idF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"idI" = (
+/turf/simulated/wall,
+/area/maintenance/substation/cargo)
+"idM" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"idP" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"idT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"ief" = (
+/obj/structure/table/glass,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"iej" = (
+/turf/simulated/wall,
+/area/assembly/robotics)
+"ieG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/beacon,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"ifd" = (
+/turf/simulated/wall/r_wall,
+/area/assembly/robotics)
+"ifw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"ifD" = (
+/obj/structure/bed/chair/sofa/left/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"ifO" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall/r_wall,
+/area/rnd/misc_lab)
+"igH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/floodlight,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"igN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Miscellaneous Reseach Room";
+ req_access = list();
+ req_one_access = list(7,29)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/misc_lab)
+"ihl" = (
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"iho" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"ihz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ihG" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/circular_saw{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"ihH" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"iih" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/misc_lab)
+"iio" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/server)
+"iis" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w2_e_airlock";
+ landmark_tag = "d2_w2_e";
+ name = "Deck 2, Dock 2-E"
+ },
+/turf/space,
+/area/space)
+"iiA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"iiG" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Sorting Office";
+ sortType = "Sorting Office"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"iiQ" = (
+/obj/structure/sign/warning/server_room,
+/turf/simulated/wall/r_wall,
+/area/server)
+"ijc" = (
+/turf/simulated/wall/r_wall,
+/area/server)
+"ijr" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ijz" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ color = "#00ff00";
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"ijR" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"ijU" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/maintenance/bar)
+"ijW" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lime/border,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ikD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"ikG" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ikX" = (
+/obj/machinery/vending/fitness,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay2)
+"ilk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"ilr" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cryo)
+"ily" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/obj/structure/closet/radiation{
+ anchored = 1;
+ starts_with = list(/obj/item/clothing/suit/radiation=4,/obj/item/clothing/head/radiation=4,/obj/item/device/geiger=4)
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"ilQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"ini" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"inE" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"ioL" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"ipd" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"ipq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ipy" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"ipN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"iqf" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/button/ignition{
+ id = "mixingsparker";
+ pixel_x = 25;
+ pixel_y = -5
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "mixvent";
+ name = "Mixing Room Vent Control";
+ pixel_x = 25;
+ pixel_y = 5;
+ req_access = list(7)
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"iqj" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/light/small,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/sign/deathsposal{
+ icon_state = "falling";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"iqu" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"iqT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"irj" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"irx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"irO" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/machinery/sparker{
+ id = "mixingsparker";
+ pixel_x = -22
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"isq" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"isR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "Gallery"
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"itj" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/mixing)
+"itK" = (
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#444444";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#ffcc00";
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"iuA" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"iuX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/computer/security/engineering{
+ dir = 4;
+ name = "Drone Monitoring Cameras";
+ network = list("Engineering")
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Drone Fabrication";
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"ive" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"ivx" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"ivF" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/dockhallway)
+"ivH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"iwp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"iwC" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"ixj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"ixU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"iya" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"izn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = -30
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 10;
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"izw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"izx" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"izS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Workshop";
+ req_one_access = list(11,24)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/workshop)
+"iAw" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"iAD" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/ai_status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"iBu" = (
+/obj/structure/sink/puddle,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"iCs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"iCy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"iCB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/warehouse)
+"iCL" = (
+/turf/simulated/wall,
+/area/security/checkpoint2)
+"iCX" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"iDz" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"iEe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"iEr" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fscenter)
+"iEH" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iES" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iEX" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iFy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iFC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"iGf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iHF" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"iHG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"iHR" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"iIm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iIA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/docking_hallway2)
+"iIG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"iJh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"iJx" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iJG" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"iJP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"iJT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"iJY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/maintenance/substation/civilian)
+"iKa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"iKg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"iKn" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/obj/machinery/smartfridge/sheets{
+ density = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"iKA" = (
+/obj/machinery/autolathe,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"iKC" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"iKM" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastright,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"iLb" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/clothing/glasses/welding,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - R&D Lab Fore"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/item/stack/material/copper{
+ amount = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"iLw" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"iLA" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"iMc" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/table/standard,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"iMo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"iNa" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = -27
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"iNs" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"iOA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"iOI" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"iOS" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay2)
+"iOW" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"iPq" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/lab)
+"iPs" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"iQe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"iQL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"iRP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/vending/hydronutrients{
+ dir = 4;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"iSo" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w3_c_airlock";
+ landmark_tag = "d2_w3_c";
+ name = "Deck 2, Dock 3-C"
+ },
+/turf/space,
+/area/space)
+"iSq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"iSG" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 8;
+ master_tag = null;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"iSH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"iSR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/docking_hallway2)
+"iSS" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"iUH" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"iUU" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"iVk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"iVx" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"iVF" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"iVP" = (
+/obj/structure/closet{
+ name = "materials"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/item/stack/material/plastic{
+ max_amount = 25
+ },
+/obj/item/stack/material/plastic{
+ max_amount = 25
+ },
+/obj/item/stack/material/copper{
+ amount = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"iWj" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"iXo" = (
+/obj/structure/table/bench/glass,
+/obj/item/device/starcaster_news,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"iXv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"iXY" = (
+/obj/machinery/autolathe,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"iYb" = (
+/obj/effect/floor_decal/sign/dock/three,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"iYs" = (
+/obj/machinery/computer/rdconsole/robotics,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"iYD" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"iYP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"iYZ" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/red,
+/obj/item/weapon/pen/blue,
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/obj/item/weapon/hand_labeler,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"iZh" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/docking_hallway2)
+"iZI" = (
+/obj/structure/closet/l3closet/medical,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"iZV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"jaC" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"jaH" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"jaX" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/item/weapon/weldingtool/largetank,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"jbN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"jcd" = (
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = 30;
+ pixel_y = -1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"jci" = (
+/obj/item/device/t_scanner,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"jcM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"jdc" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"jdw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"jdC" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"jeg" = (
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 1
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/secondary/entry/D2)
+"jew" = (
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"jeH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"jeI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/computer/transhuman/resleeving,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"jfz" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"jfT" = (
+/obj/machinery/disposal,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"jfW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"jgq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 6;
+ pixel_y = 26;
+ req_access = list(47)
+ },
+/obj/machinery/button/ignition{
+ id = "Xenobio";
+ pixel_x = -6;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"jgt" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"jgx" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/airless,
+/area/medical/genetics)
+"jgy" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ req_access = list(47);
+ state = 1
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/steel,
+/area/rnd/misc_lab)
+"jgG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"jgH" = (
+/obj/structure/table/standard,
+/obj/structure/table/standard,
+/obj/item/stack/cable_coil,
+/obj/item/device/multitool,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/sparker{
+ dir = 4;
+ id = "Xenobio";
+ pixel_x = -25
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"jhW" = (
+/obj/structure/table/standard,
+/obj/item/device/assembly/igniter,
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"jim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"jiH" = (
+/obj/structure/table/standard,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"jiL" = (
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"jiS" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer_1";
+ power_setting = 20;
+ set_temperature = 73;
+ use_power = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Server Room"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"jjH" = (
+/turf/simulated/wall,
+/area/medical/medical_restroom)
+"jjL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"jjV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"jkg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"jko" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"jkU" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/aft)
+"jlu" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"jlD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"jlK" = (
+/obj/structure/sign/warning/caution,
+/turf/simulated/wall/r_wall,
+/area/rnd/mixing)
+"jlQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/quartermaster/office)
+"jmh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"jmu" = (
+/obj/machinery/computer/general_air_control{
+ dir = 4;
+ frequency = 1430;
+ name = "Mixing Chamber Monitor";
+ sensors = list("toxins_mixing_exterior"="Mixing Chamber - Exterior","toxins_mixing_interior"="Mixing Chamber - Interior")
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"jmx" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"jmU" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"jnc" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"jnl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/mixing)
+"jnp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"jnL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/medical{
+ name = "Autoresleeving Bay";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"jnX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"jow" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"joH" = (
+/obj/machinery/door/airlock/research{
+ name = "Genetics Isolation Room";
+ req_one_access = list(5,47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/genetics)
+"jpF" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"jpG" = (
+/obj/machinery/door/blast/regular{
+ id = "trash";
+ name = "disposal mass driver"
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/disposal)
+"jpX" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medbay_primary_storage)
+"jqd" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"jqg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"jqu" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"jqw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/geiger/wall/east,
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 1;
+ name = "Hot Loop Waste Gas pressure regulator";
+ regulate_mode = 1;
+ target_pressure = 1500
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"jqz" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D2)
+"jqO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/sign/dock/one,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock Hallway 1";
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"jrE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/drone_fabricator/unify,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"jrF" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"jrS" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"jsn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"jsG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"jtu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"jtC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/holodeck_control)
+"jtM" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"juu" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/circular_saw{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"jvl" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/engineer_hallway)
+"jvu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"jwx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 10;
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/hallway/engineer_hallway)
+"jwC" = (
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"jwD" = (
+/obj/structure/bed/chair/wheelchair,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"jwJ" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/hazardvest,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"jwK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"jwT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"jxe" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = null;
+ pixel_y = 27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"jxs" = (
+/turf/simulated/wall,
+/area/crew_quarters/seconddeck/artgallery)
+"jxN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"jyb" = (
+/turf/simulated/wall,
+/area/medical/surgery_storage)
+"jyp" = (
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/hemostat,
+/obj/item/weapon/surgical/cautery,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"jyC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"jyK" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/fancy/candle_box,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"jzf" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"jzA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"jzV" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/noticeboard{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"jAh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"jAm" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"jAR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"jAY" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"jBP" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"jBV" = (
+/obj/structure/lattice,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Waste Handling Exterior 1";
+ dir = 1
+ },
+/turf/space,
+/area/space)
+"jCe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -30
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = 32;
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"jCR" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"jDi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"jDs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"jDw" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/westright{
+ name = "EVA Suit Storage";
+ req_access = newlist();
+ req_one_access = list(5,18)
+ },
+/obj/item/weapon/rig/medical/equipped,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"jEc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fscenter)
+"jEf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"jEj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"jEl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/weapon/stool,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"jEm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"jEn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"jFB" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"jFL" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"jGd" = (
+/obj/structure/table/marble,
+/obj/item/device/retail_scanner/civilian{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"jGK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"jGV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"jHa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"jHm" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"jHn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fscenter)
+"jHH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"jHO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"jIM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"jIY" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/docking_hallway2)
+"jJf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"jJi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"jJH" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Hydroponics Fore"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"jKa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"jKf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"jKu" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"jKM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"jKO" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"jLa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"jLI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/computer/id_restorer{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"jMa" = (
+/obj/structure/table/standard,
+/obj/random/toolbox,
+/obj/random/cigarettes,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tool,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"jMb" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "chapel";
+ pixel_x = -11;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"jMe" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"jMn" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"jMO" = (
+/obj/structure/table/standard,
+/obj/random/tool,
+/obj/random/tool,
+/obj/item/frame,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"jMS" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/apcenter)
+"jMY" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"jOR" = (
+/obj/structure/bedsheetbin,
+/obj/structure/table/steel,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"jPg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"jPh" = (
+/obj/machinery/door/window/eastright{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"jPi" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"jPB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/south,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"jPU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"jQa" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -30
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"jQo" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"jRr" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"jRN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"jRW" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"jSi" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"jSo" = (
+/obj/structure/closet/lasertag/red,
+/obj/item/stack/flag/red,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"jSL" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Hallway Starboard 2";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"jTu" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 1;
+ master_tag = null;
+ name = "interior access button";
+ pixel_x = -27;
+ pixel_y = 7
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"jTH" = (
+/obj/structure/flora/pottedplant,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"jUv" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"jUw" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"jUx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Research and Development";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/lab)
+"jUJ" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 9;
+ name = "Reinforced Window Nugget"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"jVI" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"jVL" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"jXa" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"jXg" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"jXw" = (
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_y = -6
+ },
+/obj/item/device/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = -1;
+ pixel_y = -9
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"jXU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"jYe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"jYf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = null;
+ pixel_y = 27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "dock3_south_pump"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"jYj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Robotics Lab";
+ req_access = list(29,47)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/assembly/robotics)
+"jYp" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"jYr" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"jYC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"jYZ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/ascenter)
+"jZo" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"jZp" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall,
+/area/medical/surgery2)
+"jZy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"jZL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artsupplies)
+"jZO" = (
+/obj/machinery/cryopod{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"kal" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"kay" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"kaM" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kcc" = (
+/obj/structure/filingcabinet/chestdrawer{
+ desc = "A large drawer filled with autopsy reports.";
+ name = "Autopsy Reports"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"kdg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"kdq" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kdL" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"ker" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"keQ" = (
+/obj/structure/table/standard,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"keY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"kff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"kfI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"kfJ" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = -1;
+ pixel_y = -2
+ },
+/obj/item/weapon/book/manual/robotics_cyborgs{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/device/defib_kit/jumper_kit/loaded,
+/obj/item/device/defib_kit/jumper_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kfN" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"kfT" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"kfY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kgi" = (
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kgk" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/item/weapon/storage/backpack,
+/obj/item/weapon/storage/backpack,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"kgw" = (
+/obj/machinery/light,
+/obj/structure/sign/deck/second{
+ pixel_y = -32
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"kgG" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"kha" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/table/gamblingtable,
+/obj/item/weapon/storage/dicecup/loaded,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"khr" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Robotics Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"khA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"khW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/mask/gas,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"kis" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"kiG" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"kjb" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"kjI" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/docking_hallway2)
+"kke" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"klh" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"klK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"klO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"klR" = (
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/stairwell)
+"kmi" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/surgical/surgicaldrill,
+/obj/item/weapon/surgical/FixOVein,
+/obj/item/weapon/surgical/circular_saw,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/weapon/surgical/retractor,
+/obj/item/weapon/surgical/hemostat,
+/obj/item/weapon/surgical/cautery,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel,
+/obj/item/stack/nanopaste,
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"kmj" = (
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"kml" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"knz" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"knE" = (
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"knP" = (
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"kot" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"kow" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"koD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"koF" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"kpx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"kqp" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"kqH" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"kqI" = (
+/obj/structure/table/woodentable,
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_brush{
+ pixel_x = -4;
+ pixel_y = -5
+ },
+/obj/item/paint_brush{
+ pixel_x = -6;
+ pixel_y = -1
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"krH" = (
+/obj/structure/dispenser,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"krQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"krZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"ksd" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"kse" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"kst" = (
+/obj/structure/dogbed,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"ktt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"ktK" = (
+/obj/structure/bed/chair,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"kux" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"kuT" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"kvq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"kwy" = (
+/obj/item/weapon/tool/wrench,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"kwC" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Hydroponics";
+ sortType = "Hydroponics"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"kwY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"kxM" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"kyt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"kzp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/orientaltree,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"kzs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"kzz" = (
+/obj/machinery/pipedispenser,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"kzA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/door/blast/regular{
+ id = "EngineEmitterPortWest";
+ layer = 3.3;
+ name = "Engine Waste Handling Access"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"kzO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"kzX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/computer/drone_control{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"kAh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/computer/cryopod/robot{
+ pixel_x = 30
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"kAo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 5;
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"kAw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"kBX" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"kCe" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"kCp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access = list(5)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/foyer)
+"kCx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"kDd" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"kDj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"kDy" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/delivery)
+"kDK" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/blood/AMinus,
+/obj/item/weapon/reagent_containers/blood/APlus,
+/obj/item/weapon/reagent_containers/blood/BMinus,
+/obj/item/weapon/reagent_containers/blood/BPlus,
+/obj/item/weapon/reagent_containers/blood/OPlus,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"kEp" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"kEy" = (
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/structure/fans/tiny,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"kEz" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chapeloffice"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/office)
+"kFC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "escape_dock_south_airlock";
+ master_tag = "escape_dock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ tag_airlock_mech_sensor = null;
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null;
+ tag_shuttle_mech_sensor = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"kFH" = (
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"kFY" = (
+/obj/structure/table/steel,
+/obj/item/weapon/wrapping_paper,
+/obj/item/weapon/wrapping_paper,
+/obj/item/weapon/wrapping_paper,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"kGf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"kGU" = (
+/obj/structure/sign/directions/recreation{
+ pixel_y = 2
+ },
+/turf/simulated/wall,
+/area/crew_quarters/seconddeck/artgallery)
+"kGV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"kHj" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"kHl" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"kHv" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"kHB" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w3_e_airlock";
+ landmark_tag = "d2_w3_e";
+ name = "Deck 2, Dock 3-E"
+ },
+/turf/space,
+/area/space)
+"kHE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"kHG" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"kIt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"kII" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"kJg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/station_map{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"kJY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light/small,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"kKp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"kKF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/fscenter)
+"kLg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"kLl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH1";
+ next_patrol = "CH2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kLo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kLv" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Aft Hallway 3";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"kLB" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/navbeacon/patrol{
+ location = "CH12";
+ next_patrol = "SEC"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kLD" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kLG" = (
+/obj/machinery/turretid/stun{
+ check_records = 0;
+ control_area = "\improper Teleporter";
+ name = "Teleporter turret control";
+ pixel_y = -24;
+ req_access = list(17)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kLW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kMi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"kMj" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kMw" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kNS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"kOl" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"kOM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kOQ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"kOS" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"kPk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Civilian Substation";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"kPr" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/navbeacon/patrol{
+ location = "CH11";
+ next_patrol = "CH12"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"kPH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Hallway Starboard 1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"kPK" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"kPL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"kQG" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/mask/gas,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"kQH" = (
+/obj/machinery/r_n_d/protolathe,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lab)
+"kQV" = (
+/turf/simulated/floor/tiled,
+/area/rnd/lab)
+"kRu" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/lab)
+"kRR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"kSs" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"kSu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"kSM" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"kTh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/lab)
+"kTo" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"kTt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"kTw" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"kTR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"kTT" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/item/device/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/item/device/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Robotics Port";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kUt" = (
+/obj/structure/bed/chair/sofa/left/blue{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"kUD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kVv" = (
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"kVy" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"kVB" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock 2 Fore";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"kVF" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/monotile,
+/area/assembly/robotics)
+"kVL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kWB" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"kXd" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"kXk" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"kXm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kYA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kYN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/disposal)
+"kZv" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"kZG" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"lal" = (
+/obj/random/trash,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"las" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"laQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"lbd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/closet/crate,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/crowbar/red,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used to monitor the proceedings inside the test chamber.";
+ name = "Test Chamber Monitor";
+ network = list("Miscellaneous Reseach");
+ pixel_x = -32;
+ pixel_y = -4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Miscellaneous Research";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"lbo" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"lbI" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"lbW" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/door/window/westright{
+ name = "Test Chamber";
+ req_one_access = list(7,29)
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Test Chamber";
+ req_one_access = list(7,29)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/misc_lab)
+"lbX" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"lce" = (
+/obj/machinery/atmospherics/unary/vent_scrubber{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"lci" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Miscellaneous Test Chamber";
+ dir = 8;
+ network = list("Research","Miscellaneous Reseach")
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"ldX" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"lfa" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"lfq" = (
+/obj/machinery/computer/message_monitor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"lgj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"lgm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"lgv" = (
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/storage/primary)
+"lhc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"lhG" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/mixing)
+"lhH" = (
+/turf/simulated/shuttle/wall/no_join{
+ base_state = "orange";
+ icon = 'icons/turf/shuttle_orange.dmi';
+ icon_state = "orange"
+ },
+/area/shuttle/cryo/station)
+"lhV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"liq" = (
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"liI" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/docking_hallway2)
+"ljh" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Chemistry";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/beige/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"ljr" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Civilian Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"lju" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"ljE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Locker Room";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medical_lockerroom)
+"ljU" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"lki" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"lks" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"lkw" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/security/checkpoint2)
+"lkA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Hot Loop Waste Gas Management Switch"
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineEmitterPortWest";
+ name = "Engine Room Blast Doors";
+ pixel_x = 32;
+ pixel_y = 25;
+ req_access = null;
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"lkC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"lkD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "secondary TEG valve"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"lkL" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"lkQ" = (
+/obj/machinery/door/airlock{
+ name = "Library Office";
+ req_access = list(37)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/library)
+"llb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"llk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"llv" = (
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = -21
+ },
+/obj/machinery/clonepod/transhuman/full,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"llH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"lnf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Cargo Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/foyer)
+"lnq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"lns" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Drone Fabrication";
+ req_one_access = list(11,24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/drone_fabrication)
+"lnx" = (
+/obj/machinery/disease2/diseaseanalyser,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"lnJ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/autopsy_scanner,
+/obj/item/weapon/surgical/scalpel,
+/obj/item/weapon/surgical/cautery,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"lnN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Drone Fabrication";
+ sortType = "Drone Fabrication"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"lod" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"lox" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"lpd" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"lpo" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"lrp" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"lrE" = (
+/obj/effect/decal/cleanable/blood,
+/turf/simulated/floor,
+/area/maintenance/bar)
+"lrG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Virology Aft";
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"lsm" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/floor_painter,
+/obj/item/device/multitool{
+ pixel_x = 5
+ },
+/obj/item/device/t_scanner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/workshop)
+"lsH" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"lsM" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"lte" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"ltg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ltX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer";
+ req_access = list(56)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/chief)
+"luv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"lux" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/sign/warning/evac,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"luQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ id_tag = null
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 4;
+ frequency = 1380;
+ id_tag = "d2_w2_e_airlock";
+ pixel_x = -27;
+ req_one_access = list(13)
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"luY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"lvy" = (
+/obj/item/weapon/cane,
+/obj/item/weapon/cane{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/cane{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/rxglasses,
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"lvF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/structure/morgue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"lvX" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"lwA" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/item/device/radio/headset/headset_med,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/weapon/storage/box/pillbottles,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"lxe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"lxR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Break Room";
+ req_one_access = list(10)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/break_room)
+"lxX" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"lxY" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 8;
+ master_tag = null;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = 27
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"lyb" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/engineering/break_room)
+"lyB" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"lyG" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/structure/filingcabinet,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"lzd" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"lAh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"lAv" = (
+/turf/simulated/wall,
+/area/maintenance/substation/central)
+"lAW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"lBG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"lCW" = (
+/obj/structure/sign/department/cargo,
+/turf/simulated/wall/r_wall,
+/area/maintenance/cargo)
+"lEm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "d2_w1_e_airlock";
+ pixel_x = 27;
+ req_one_access = list(13)
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"lFC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"lFN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ name = "Central Substation";
+ req_one_access = list(11,19,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"lFS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"lGf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"lGm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"lGR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"lHu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/aft)
+"lIk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"lIC" = (
+/obj/machinery/computer/timeclock/premade/south,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"lIY" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"lJh" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/bed/chair/sofa/right/brown{
+ layer = 2.9
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"lJn" = (
+/obj/structure/bookcase{
+ name = "bookcase (Reference)"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"lJs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"lKa" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fscenter)
+"lKh" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/docking_lounge)
+"lKi" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "d2_w1_c_airlock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"lKy" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"lLj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access = list(17);
+ req_one_access = list(17)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/teleporter)
+"lLl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_medical{
+ name = "First-Aid Station";
+ req_access = newlist();
+ req_one_access = newlist()
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/first_aid_station/seconddeck/port)
+"lLD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"lMb" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"lMf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"lMn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"lMw" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"lMA" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Cargo"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"lNm" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"lNx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"lNS" = (
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"lOw" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/item/weapon/extinguisher,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"lOW" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/lab)
+"lPn" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"lPq" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/monotile,
+/area/rnd/lab)
+"lPI" = (
+/obj/machinery/computer/rdconsole/core{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/lab)
+"lQm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"lQC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"lRj" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"lRy" = (
+/obj/structure/closet/wardrobe/medic_white,
+/obj/item/device/flashlight/pen,
+/obj/item/device/flashlight/pen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"lRD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"lRF" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/material/kitchen/utensil/fork,
+/obj/item/weapon/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"lRG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/research{
+ id_tag = "researchdoor";
+ name = "Research Division Access";
+ req_access = list(47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"lRJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"lRO" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cafeteria)
+"lSA" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Kitchen Cold Room";
+ dir = 1
+ },
+/obj/structure/closet/chefcloset,
+/obj/item/glass_jar,
+/obj/item/device/retail_scanner/civilian,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/clothing/gloves/sterile/latex,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"lTp" = (
+/obj/machinery/vending/cola{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"lTu" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"lTw" = (
+/obj/structure/table/glass,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"lTy" = (
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"lTB" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"lTI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"lTM" = (
+/obj/structure/closet/coffin,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"lUp" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/steel_reinforced,
+/obj/item/device/robotanalyzer,
+/obj/item/device/robotanalyzer,
+/obj/item/device/mmi/digital/robot,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"lUr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"lUA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/light,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"lUC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"lUX" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"lUZ" = (
+/obj/machinery/mecha_part_fabricator/pros,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"lVd" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"lVs" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"lVD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"lVX" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"lWH" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery2)
+"lWR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/smallcactus,
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"lXn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"lXu" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"lXK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/backup_kit,
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/robotics)
+"lYj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"lYK" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/medical/virology)
+"lYO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/robotics)
+"lZV" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/morgue,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"maC" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/robotics)
+"maU" = (
+/obj/machinery/transhuman/synthprinter,
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/robotics)
+"mbl" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"mby" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"mbG" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"mbH" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/door/window/westleft{
+ name = "Test Chamber";
+ req_one_access = list(7,29)
+ },
+/obj/machinery/door/window/eastright{
+ name = "Test Chamber";
+ req_one_access = list(7,29)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/misc_lab)
+"mco" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"mcs" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1441;
+ id = "n2_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"mcw" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"mcI" = (
+/obj/item/weapon/stool,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"mdj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Patient Ward"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/patient_wing)
+"mdq" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"men" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"mfe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"mff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"mfz" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/aft)
+"mfB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"mga" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"mgb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/sign/warning/server_room{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/server)
+"mgk" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"mgO" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/door/window/northright{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/obj/machinery/door/window/southleft{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"mhd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"mhL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"mif" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/server)
+"mij" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"miQ" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/mixing)
+"miS" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"miZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Security Checkpoint"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"mjw" = (
+/obj/structure/closet/l3closet/medical,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"mjR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"mkd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"mkf" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"mkW" = (
+/obj/structure/closet/secure_closet/psych,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"mkX" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"mlF" = (
+/obj/machinery/atmospherics/omni/mixer{
+ tag_east = 2;
+ tag_east_con = null;
+ tag_north = 1;
+ tag_north_con = 0.5;
+ tag_south_con = null;
+ tag_west = 1;
+ tag_west_con = 0.5;
+ use_power = 0
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"mma" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Lab 2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"mmn" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"mmq" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 2;
+ tag_north = 6;
+ tag_west = 1;
+ use_power = 0
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"mmE" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"mmQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"mnf" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/rnd/mixing)
+"mnu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"mnB" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Quartermaster"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ pixel_x = -24;
+ pixel_y = -26;
+ req_access = list()
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"mnK" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ff00";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"mnN" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/small,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"mol" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"mor" = (
+/obj/machinery/holosign/bar{
+ id = "baropen"
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cafeteria)
+"mou" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"moG" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_north = 2;
+ tag_south = 4;
+ tag_west = 1;
+ use_power = 0
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_x = 32
+ },
+/obj/effect/engine_setup/atmo_filter,
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"moH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/item/device/geiger/wall/west,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"mpx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"mqa" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/engineering/drone_fabrication)
+"mqh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"mqZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Engineering Hallway 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"mre" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36;
+ pixel_y = -6
+ },
+/obj/machinery/button/windowtint{
+ id = "pr2_window_tint";
+ pixel_x = 36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"mrF" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Mass Driver";
+ req_access = list(22)
+ },
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "chapelgun";
+ layer = 2.8
+ },
+/obj/machinery/airlock_sensor{
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_y = -32
+ },
+/turf/simulated/floor/airless,
+/area/chapel/main)
+"mrU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Filtered Waste-to-Canister pump"
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"mss" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"msv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"msX" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"mti" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"mtC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/construction/seconddeck/construction1)
+"mut" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/black,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"muM" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"muO" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"mvC" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"myc" = (
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Waste Handling Exterior 2";
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"myg" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "d2_w3_b_airlock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"myp" = (
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/item/device/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"myq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"myv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"myw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"myK" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"myX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"mza" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"mzG" = (
+/obj/structure/curtain/open/shower/engineering,
+/obj/machinery/door/window/westleft{
+ name = "Shower"
+ },
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/engineering/engi_restroom)
+"mAe" = (
+/obj/structure/table/woodentable,
+/obj/item/device/paicard,
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"mAg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"mAU" = (
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"mAZ" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"mBH" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"mCf" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"mDJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"mDM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/central)
+"mDZ" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Central Substation Bypass"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/central)
+"mEe" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"mEp" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"mEB" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"mEJ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Central Maintenance Access";
+ req_one_access = list(12,19)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"mES" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"mFk" = (
+/obj/machinery/vending/loadout,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"mFN" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"mFY" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"mGz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"mHl" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"mHY" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/closet/crate,
+/obj/item/weapon/tool/crowbar/red,
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Teleporter"
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"mId" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"mIz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"mJB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry Laboratory";
+ req_access = list(33)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/chemistry)
+"mKm" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/table/standard,
+/obj/item/device/radio/beacon,
+/obj/item/device/radio/beacon,
+/obj/random_multi/single_item/hand_tele,
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"mKo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"mKr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"mKs" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"mKw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"mKx" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"mLK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"mLP" = (
+/obj/structure/sign/warning/docking_area,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D2)
+"mMD" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"mNf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"mNt" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"mNL" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"mNU" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/random/tool/powermaint,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"mOo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/pen,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"mOp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1380;
+ id_tag = "cryostorage_shuttle_berth";
+ name = "cryostorage shuttle berth controller";
+ pixel_x = -26;
+ req_access = list(19);
+ tag_door = "cryostorage_shuttle_berth_hatch"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"mOr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"mOu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"mOG" = (
+/turf/simulated/wall,
+/area/hydroponics)
+"mOZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"mPt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"mPD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"mQg" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"mQY" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medbay)
+"mRD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"mRM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"mSd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"mSi" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"mSD" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"mTb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"mTn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"mTv" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"mTy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"mTO" = (
+/obj/machinery/computer/HolodeckControl{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"mTP" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"mTV" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"mUi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"mVe" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"mVk" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"mVG" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/machinery/beehive,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"mWi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"mWD" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"mWH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"mWR" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"mXo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"mXK" = (
+/turf/simulated/wall,
+/area/assembly/chargebay)
+"mYK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_research{
+ name = "Mech Bay";
+ req_access = list(29)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"mYL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Mech Bay";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"mYU" = (
+/turf/simulated/wall/r_wall,
+/area/assembly/chargebay)
+"mZe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"mZG" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"mZR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"mZU" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"naj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/wall,
+/area/construction/seconddeck/construction1)
+"nak" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"naz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"naC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"naX" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"nbk" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"nby" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_medical,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay2)
+"nbA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "medbayrecquar";
+ name = "Medbay Emergency Quarantine Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"ncb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"ncm" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"ncv" = (
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"ncQ" = (
+/obj/item/toy/eight_ball,
+/obj/structure/table/bench/glass,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"ncU" = (
+/obj/structure/sign/directions/library{
+ dir = 5
+ },
+/obj/structure/sign/directions/chapel{
+ dir = 1;
+ pixel_y = 10
+ },
+/turf/simulated/wall,
+/area/library)
+"nev" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"neW" = (
+/obj/machinery/button/remote/driver{
+ id = "chapelgun";
+ name = "Chapel Mass Driver";
+ pixel_x = 32;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ngb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"ngi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medbay Equipment";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_primary_storage)
+"ngt" = (
+/turf/simulated/floor/airless,
+/area/medical/virology)
+"nhc" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"nhd" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/medical/virology)
+"nhE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"niK" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"njG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/turf/simulated/floor/plating,
+/area/holodeck_control)
+"nke" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/table/marble,
+/obj/item/weapon/material/knife/butch,
+/obj/item/weapon/material/kitchen/rollingpin,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"nkI" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/tool/wrench,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/workshop)
+"nkN" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used to monitor the engine room.";
+ layer = 3.3;
+ name = "Engine Monitor";
+ network = list("Engine");
+ pixel_y = -34
+ },
+/obj/machinery/computer/atmos_alert{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"nmN" = (
+/obj/structure/cryofeed{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"nns" = (
+/obj/structure/sign/directions/cryo{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/docking_hallway2)
+"nnD" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/device/t_scanner,
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"nnG" = (
+/obj/structure/lattice,
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"nnN" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"noj" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Chief Engineer's Office";
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the engine core airlock hatch bolts.";
+ id = "engine_access_hatch";
+ name = "Engine Hatch Bolt Control";
+ pixel_x = -6;
+ pixel_y = -44;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for engine core.";
+ id = "EngineVent";
+ name = "Engine Ventillatory Control";
+ pixel_x = 6;
+ pixel_y = -44
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ pixel_x = -6;
+ pixel_y = -34;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ pixel_x = 6;
+ pixel_y = -34;
+ req_access = list(10)
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"nom" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"nor" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"nou" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Office"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/button/windowtint{
+ id = "library_window_tint";
+ pixel_x = -14;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/secure_closet{
+ anchored = 1;
+ desc = "It's an immobile card-locked storage unit. A note on the door reads: It's dangerous to go alone. This should help a little bit.";
+ name = "Press Locker";
+ req_one_access = list(21,37)
+ },
+/obj/item/clothing/shoes/boots/combat{
+ desc = "A pair of steel-toed synthleather boots. The tag indicates this pair belongs to the Librarian.";
+ name = "press combat boots"
+ },
+/obj/item/clothing/shoes/boots/combat{
+ desc = "A pair of steel-toed synthleather boots. The tag indicates this pair belongs to the Librarian.";
+ name = "press combat boots"
+ },
+/obj/item/clothing/under/suit_jacket/navy/skirt,
+/obj/item/clothing/under/suit_jacket/navy,
+/obj/item/clothing/gloves/swat{
+ desc = "These tactical gloves are somewhat fire and impact-resistant. The tag within indicates that this pair belongs to the Librarian.";
+ name = "press gloves"
+ },
+/obj/item/clothing/gloves/swat{
+ desc = "These tactical gloves are somewhat fire and impact-resistant. The tag within indicates that this pair belongs to the Librarian.";
+ name = "press gloves"
+ },
+/obj/item/clothing/suit/storage/vest/press,
+/obj/item/clothing/suit/storage/vest/press,
+/obj/item/clothing/head/helmet{
+ desc = "Standard issue gear for frontline press. Protects the head from impacts.";
+ name = "press helmet"
+ },
+/obj/item/clothing/head/helmet{
+ desc = "Standard issue gear for frontline press. Protects the head from impacts.";
+ name = "press helmet"
+ },
+/obj/item/clothing/accessory/armor/helmcover/navy,
+/obj/item/clothing/accessory/armor/helmcover/navy,
+/turf/simulated/floor/carpet,
+/area/library)
+"noZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"npa" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "kitchen";
+ name = "Kitchen Shutters Control";
+ pixel_x = 26;
+ req_access = list(28)
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36;
+ pixel_y = -6
+ },
+/obj/machinery/button/holosign{
+ id = "baropen";
+ name = "Open Sign";
+ pixel_x = 36;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"npf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ceoffice"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/sc/chief)
+"npg" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"nql" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"nqs" = (
+/obj/structure/sign/warning/docking_area,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"nqK" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fpcenter)
+"nqY" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"nrg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"nrm" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Central Subgrid";
+ name_tag = "Central Subgrid"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"nsS" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ntH" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/central)
+"ntX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Art Supplies"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/seconddeck/artsupplies)
+"nuH" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Central"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/central)
+"nuJ" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"nve" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"nvr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access = list(45)
+ },
+/obj/structure/fans/hardlight/colorable{
+ light_color = "#D7D7D7"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/surgery_storage)
+"nvX" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"nwc" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/structure/backup_implanter_ch{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"nwl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"nwn" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"nws" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"nxC" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/southright{
+ name = "Hydroponics Delivery";
+ req_access = list(35)
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"nxR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "chemcounter";
+ name = "Pharmacy Counter Lockdown Control";
+ pixel_x = 10;
+ pixel_y = 30
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "chemwindow";
+ name = "Pharmacy Window Shutter Control";
+ pixel_x = -10;
+ pixel_y = 30
+ },
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"nxW" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/docking_hallway2)
+"nyl" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 36
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"nyy" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"nyM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access = newlist();
+ req_one_access = list(35,28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hydroponics)
+"nyO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"nzm" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "escape_dock_ssouth_airlock";
+ master_tag = "escape_dock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ tag_airlock_mech_sensor = null;
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null;
+ tag_shuttle_mech_sensor = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"nAI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"nAW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"nBr" = (
+/obj/structure/firedoor_assembly,
+/obj/item/tape/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"nBE" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"nCC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"nCH" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall,
+/area/medical/cryo)
+"nCU" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"nDk" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"nDA" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"nDH" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"nDN" = (
+/turf/simulated/wall,
+/area/medical/patient_a)
+"nDS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"nEh" = (
+/obj/machinery/bluespace_beacon,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"nEo" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"nES" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"nFa" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter)
+"nFo" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/table/marble,
+/obj/item/weapon/storage/box/glasses/coffeecup{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/box/glasses/coffeemug{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/obj/item/weapon/storage/box/glasses/square{
+ pixel_x = 9;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/box/buns{
+ pixel_x = 9;
+ pixel_y = 12
+ },
+/obj/item/weapon/storage/box/buns{
+ pixel_x = 9;
+ pixel_y = 12
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"nFz" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"nFE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"nFF" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medical_restroom)
+"nGq" = (
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"nGr" = (
+/turf/simulated/wall/r_wall,
+/area/medical/patient_b)
+"nGH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"nHe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/construction/seconddeck/construction1)
+"nHi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"nHJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"nHS" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ icon_override = "secintercom";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"nHY" = (
+/obj/structure/table/bench/wooden,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"nId" = (
+/obj/structure/morgue,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"nIS" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box{
+ pixel_y = 11
+ },
+/obj/item/weapon/storage/box{
+ pixel_y = 11
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"nIT" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"nIW" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"nIX" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
+/obj/item/weapon/flame/lighter/zippo,
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"nJh" = (
+/turf/simulated/floor/tiled,
+/area/engineering/locker_room)
+"nJW" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"nKk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"nKE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"nKR" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"nLg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "Observer-Start"
+ },
+/obj/effect/landmark/start,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"nMj" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/crew_quarters/seconddeck/artgallery)
+"nMm" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/gun/projectile/shotgun/doublebarrel,
+/obj/item/weapon/tool/screwdriver,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ desc = "Talk... lisssssten through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"nMn" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"nMv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lounge_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/docking_lounge)
+"nNE" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"nNL" = (
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/item/device/gps/medical{
+ pixel_x = -8
+ },
+/obj/item/device/gps/medical{
+ pixel_x = -4
+ },
+/obj/item/device/gps/medical,
+/obj/item/device/gps/medical{
+ pixel_x = 4
+ },
+/obj/item/device/gps/medical{
+ pixel_x = 8
+ },
+/obj/item/device/defib_kit/compact/loaded,
+/turf/simulated/floor/tiled,
+/area/medical/medbay_emt_bay)
+"nPc" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"nPL" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"nPX" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"nQk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lockerroom)
+"nQn" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"nRd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/westleft{
+ name = "Research and Development Desk";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"nRC" = (
+/obj/structure/closet/lasertag/blue,
+/obj/item/stack/flag/blue,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"nSd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"nSe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"nSo" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"nSw" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/radio/beacon,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"nSC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"nSF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/westright{
+ name = "Chemistry Desk"
+ },
+/obj/machinery/door/window/eastright{
+ name = "Chemistry Desk";
+ req_access = list(33)
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "chemcounter";
+ name = "Pharmacy Counter Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"nSJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"nST" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"nTb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"nTF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/eastleft{
+ name = "Robotics Desk";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"nUb" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"nUh" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"nVx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"nVA" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"nVE" = (
+/obj/structure/bookcase{
+ name = "bookcase (Non-Fiction)"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"nVW" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"nWH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "quart_tint"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"nWL" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"nWN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/assembly/chargebay)
+"nXl" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/cell_charger,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"nYb" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/clean,
+/obj/random/maintenance,
+/obj/item/weapon/tool/crowbar,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"nYj" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"nYo" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"nYu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/chargebay)
+"nYw" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"nYz" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"nYH" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"nYU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/chargebay)
+"nZq" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"nZx" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"nZy" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"nZA" = (
+/obj/structure/filingcabinet/chestdrawer{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"nZD" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"nZE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/wall,
+/area/quartermaster/delivery)
+"nZM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"nZY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"oaL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Gallery Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"obf" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ req_access = list(47);
+ state = 1
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/rnd/misc_lab)
+"obg" = (
+/obj/structure/closet/emcloset,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/item/weapon/tool/crowbar/red,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"obp" = (
+/obj/machinery/light,
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"obG" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"obI" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"obR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"oce" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"oct" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/reinforced,
+/area/rnd/misc_lab)
+"ocw" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"ode" = (
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Delivery Office";
+ dir = 8;
+ name = "security camera"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"odi" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/machinery/computer/cloning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"odS" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"oev" = (
+/obj/machinery/r_n_d/server/robotics,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"oew" = (
+/obj/machinery/iv_drip,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"ofv" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"ofD" = (
+/obj/machinery/door/blast/regular{
+ id = "chapelgun";
+ name = "Chapel Launcher Door"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/chapel/main)
+"ogH" = (
+/obj/structure/bed/chair/wheelchair,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"ogN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"oht" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"ohF" = (
+/obj/machinery/r_n_d/server/core,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"ohP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"ohV" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"oie" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"oip" = (
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"oiA" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/workshop)
+"oiQ" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"ojj" = (
+/obj/machinery/computer/rdconsole/core,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"ojk" = (
+/obj/structure/table/steel,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"ojP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"okh" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ff00";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"okq" = (
+/obj/structure/table/bench/wooden,
+/obj/item/device/starcaster_news,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"okt" = (
+/obj/machinery/iv_drip,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"oku" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/bag/circuits/basic,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/obj/structure/sign/poster{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"okO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall,
+/area/maintenance/locker)
+"okR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"okZ" = (
+/turf/simulated/wall,
+/area/rnd/workshop)
+"olj" = (
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"olr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"olH" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/structure/fans/tiny,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"omq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/warehouse)
+"omu" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"onb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"ond" = (
+/obj/structure/table/glass,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"ooC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"ooQ" = (
+/obj/machinery/vending/loadout/uniform,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"ooT" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/seconddeck/research_medical)
+"ooY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"opg" = (
+/obj/item/weapon/material/ashtray/glass,
+/obj/structure/table/steel,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"opo" = (
+/obj/structure/table/woodentable,
+/obj/machinery/reagentgrinder,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/packageWrap,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"opM" = (
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
+"opU" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"oqh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"oqz" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"oqA" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"oqS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Medical Restroom";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medical_restroom)
+"oqY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"oqZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"orf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"orq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"orB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
+ name = "Holodeck Disclaimer"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Holodeck Control";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"orP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"osg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"osw" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"osH" = (
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"otn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ots" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"otO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"ouo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"ouA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Central Substation";
+ req_one_access = list(11,19,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"ouT" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ovw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"owy" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"owO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"owQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"oxg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"oxE" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"oxN" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"oxO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"oyi" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"oyA" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "crg_aft_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "crg_aft_sensor";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"oyS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"ozl" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"ozL" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"oAV" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen cold room";
+ req_access = list(28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/fans/hardlight/colorable{
+ light_color = "#D7D7D7"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/kitchen)
+"oBh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"oBy" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter)
+"oBX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"oCh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fscenter)
+"oCj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Delivery Office Maintenance";
+ req_access = list(50)
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"oCL" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"oDg" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"oDE" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"oEb" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/gloves/boxing/green,
+/obj/item/clothing/gloves/boxing,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"oEk" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ name = "Construction Area";
+ req_access = list(32)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/construction/seconddeck/construction1)
+"oEU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"oFM" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 3";
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"oGb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"oGx" = (
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/main)
+"oHb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"oHE" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"oHO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"oHP" = (
+/obj/structure/closet/crate,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/powercell,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"oIc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"oIs" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"oIX" = (
+/obj/item/weapon/folder/white,
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/tech_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/reagent_containers/dropper{
+ pixel_y = -4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - R&D Lab Aft";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"oJi" = (
+/obj/machinery/recharger,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"oJo" = (
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"oJW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"oKd" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"oKu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"oKT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"oMg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"oNr" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"oNJ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"oOz" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"oOB" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Foyer";
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Robotics";
+ sortType = "Robotics"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"oPy" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"oPJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"oQj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"oQz" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/purple/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer)
+"oRM" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"oRX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"oSr" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"oSv" = (
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"oTe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"oTP" = (
+/obj/structure/table/standard,
+/obj/structure/reagent_dispensers/acid{
+ pixel_y = -30
+ },
+/obj/machinery/recharger,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"oTS" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/lime/bordercorner,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"oTZ" = (
+/obj/structure/closet/hydrant{
+ pixel_x = -32
+ },
+/obj/item/clothing/glasses/meson,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"oUx" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"oUC" = (
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/closet{
+ name = "welding equipment"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"oUG" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"oVc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"oVe" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Gallery Port";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"oVk" = (
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/closet{
+ name = "robotics parts"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"oVE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"oVW" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"oWK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/chargebay)
+"oWW" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/chargebay)
+"oXt" = (
+/obj/structure/table/marble,
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Coffee Shop";
+ dir = 9
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"oXN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"oYz" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"oZp" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"oZL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance Access";
+ req_one_access = list(7,29)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"oZN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"oZU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"pac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"paJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"pbb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"pbd" = (
+/obj/structure/bookcase/bookcart,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"pbh" = (
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"pbi" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/multi,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"pbP" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"pce" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"pcD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pcG" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"pcH" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"pda" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/apcenter)
+"pdw" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"pdU" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"pdX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"pes" = (
+/obj/structure/table/steel,
+/obj/item/device/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/item/device/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"pex" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"peA" = (
+/obj/item/stack/rods,
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/space,
+/area/space)
+"peJ" = (
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"peT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock 3 Fore";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"pft" = (
+/obj/structure/closet/secure_closet/bar,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"pfB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"pfJ" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Autoresleeving Bay";
+ dir = 4
+ },
+/obj/machinery/atm{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"pfT" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"pfY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pfZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pgN" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pgW" = (
+/obj/structure/closet/coffin,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pgX" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/weapon/extinguisher,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"phg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Chemistry";
+ sortType = "Chemistry"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"pho" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"phA" = (
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pix" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/newscaster{
+ pixel_x = -36
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"piE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"piG" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"piO" = (
+/obj/structure/table/woodentable,
+/obj/item/device/paicard,
+/obj/effect/floor_decal/carpet/blue{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"pjG" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"pjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"pkK" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"pli" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Gallery";
+ sortType = "Gallery"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"plk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"plu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"plF" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "escape_dock_north_sensor";
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"plL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"pmd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"pmh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Teleport Access";
+ req_access = list(17)
+ },
+/turf/simulated/floor/plating,
+/area/teleporter)
+"pmo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"pmJ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ name = "Utility Down";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"pnz" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "escape_dock_south_sensor";
+ pixel_y = 27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"pnB" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"pnQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"pnY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"pog" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"pov" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable,
+/obj/machinery/power/smes/batteryrack/mapped,
+/turf/simulated/floor/airless,
+/area/space)
+"poy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"poC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"poL" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"ppc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_emt_bay)
+"ppW" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ name = "Deck 2 Starboard automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"pqw" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/lockerroom)
+"pqA" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"pqG" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"pru" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"psn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/station_map{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"pss" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"psR" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/research_foyer)
+"ptE" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"pux" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"puy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Research Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research_foyer)
+"puG" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 9
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"puL" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"puY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/rnd/research_foyer)
+"pvD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/weapon/stool/padded,
+/obj/effect/landmark/start{
+ name = "Paramedic"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/medbay_emt_bay)
+"pvH" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/recharge_station,
+/obj/machinery/button/remote/blast_door{
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_y = -26;
+ req_access = list(29)
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"pwf" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"pwV" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"pwY" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/assembly/chargebay)
+"pxb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"pxc" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/recharge_station,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Mech Bay";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"pxs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"pxL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pyN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"pyR" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pzf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/station_map{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"pzi" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"pzF" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"pzW" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/research_medical)
+"pAj" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"pAz" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"pAG" = (
+/obj/structure/closet/crate,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/item/stack/tile/floor/white,
+/obj/random/powercell,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tool,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pAQ" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pBm" = (
+/obj/item/stack/cable_coil,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pBr" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/coin/silver,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pBw" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pBE" = (
+/obj/machinery/papershredder,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"pBG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"pCO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"pCR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pDg" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "psyco_tint";
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"pDh" = (
+/obj/structure/closet/crate,
+/obj/random/bomb_supply,
+/obj/random/bomb_supply,
+/obj/random/bomb_supply,
+/obj/random/tech_supply,
+/obj/random/technology_scanner,
+/obj/random/tool,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"pDo" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ d1 = 32;
+ d2 = 8;
+ icon_state = "32-8"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/research_medical)
+"pDF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"pEa" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"pEj" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"pEF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"pEH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/sign/warning/evac,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"pFu" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pFE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westright{
+ name = "Mailing Room";
+ req_access = list(50)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"pFH" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway Aft";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"pFV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pFW" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"pGf" = (
+/obj/machinery/conveyor{
+ id = "garbage"
+ },
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"pGs" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"pGB" = (
+/obj/structure/sign/warning/server_room,
+/turf/simulated/wall/r_wall,
+/area/rnd/workshop)
+"pHl" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pHx" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"pHZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"pIi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ id_tag = null;
+ pixel_x = -27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"pIm" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"pIs" = (
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/stairwell)
+"pIG" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"pIK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"pIS" = (
+/obj/structure/table/steel,
+/obj/item/device/electronic_assembly/large{
+ pixel_y = 6
+ },
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"pJD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"pLC" = (
+/obj/machinery/door/window/westleft{
+ name = "Shower"
+ },
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"pMt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"pMu" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"pMv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"pMy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"pMF" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/cash,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"pMH" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"pMI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"pMR" = (
+/obj/structure/sign/deck/second,
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/dockhallway)
+"pMZ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cryo)
+"pNa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"pNf" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pNL" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"pOe" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"pOh" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pOp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"pOA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 5;
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/hallway/atmos_hallway)
+"pOD" = (
+/obj/machinery/smartfridge/secure/virology,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pOM" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pOQ" = (
+/obj/machinery/iv_drip,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"pOW" = (
+/obj/structure/table/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/multitool,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Office Port";
+ name = "security camera"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"pPc" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/structure/bed/double,
+/obj/item/weapon/bedsheet/greendouble,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pPd" = (
+/obj/item/device/geiger/wall/south,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"pPn" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "aft_starboard_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"pPq" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"pPG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pPU" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"pQe" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pQo" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"pQD" = (
+/obj/machinery/computer/diseasesplicer{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"pQK" = (
+/obj/machinery/light,
+/obj/structure/bookcase{
+ name = "bookcase (Reference)"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"pRA" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"pRG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"pRJ" = (
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/shield_diffuser,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"pSe" = (
+/obj/structure/table/gamblingtable,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"pTK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"pTR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"pUi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D1)
+"pUo" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -1;
+ pixel_y = 17
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/item/weapon/storage/box/donut{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"pUs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"pUA" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"pUX" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"pVe" = (
+/obj/structure/closet/secure_closet/paramedic,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"pVG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = 1379;
+ id_tag = "engine_airlock_interior";
+ name = "Engine Airlock Interior";
+ req_access = list(11)
+ },
+/turf/simulated/floor,
+/area/engineering/engine_airlock)
+"pVZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"pWn" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"pWr" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"pWH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = 1379;
+ id_tag = "engine_airlock_exterior";
+ name = "Engine Airlock Exterior";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engine_airlock)
+"pWU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"pXi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"pXr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"pXv" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Cargo Office";
+ req_access = list(50)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/lockerroom)
+"pXH" = (
+/obj/machinery/door/window/westleft{
+ name = "Engineering Delivery";
+ req_access = list(10)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"pXX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"pYE" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"pZY" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/machinery/navbeacon/delivery/west{
+ location = "Engineering"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"qaC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"qbq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qbw" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"qbR" = (
+/obj/machinery/access_button{
+ master_tag = null;
+ name = "exterior access button";
+ pixel_x = 27;
+ pixel_y = -7
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"qbZ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"qcm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"qcn" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ff00";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"qco" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock Hallway 4";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"qcZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qdU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"qev" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/engineering{
+ name = "Utility Down";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"qeI" = (
+/obj/structure/closet/crate/plastic,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/item/weapon/storage/mre/random,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"qeJ" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"qfA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D1)
+"qgb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/obj/structure/sign/department/medbay{
+ pixel_x = -32
+ },
+/turf/simulated/floor/airless,
+/area/maintenance/medbay)
+"qgm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"qim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"qiq" = (
+/obj/machinery/autolathe,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"qjH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/trash,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"qjZ" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"qkk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"qkB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/fpcenter)
+"qkD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/dockhallway)
+"qkK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"qkP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"qkR" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/bar)
+"qkT" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/extinguisher,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"qkX" = (
+/obj/item/weapon/stool,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/door/window/southright{
+ dir = 1;
+ name = "Recycling Chute";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"qlc" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"qle" = (
+/turf/simulated/wall,
+/area/maintenance/locker)
+"qlp" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"qlF" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_hallway)
+"qmc" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"qmn" = (
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/warehouse)
+"qmt" = (
+/turf/simulated/wall,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"qmD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"qmX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"qnA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"qnP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/library)
+"qom" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"qoI" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/porta_turret/industrial/teleport_defense{
+ req_one_access = list(17)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/teleporter)
+"qoN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/lockerroom)
+"qoX" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled,
+/area/teleporter)
+"qoZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"qpz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qpO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"qqA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"qqJ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"qrI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access = list(6)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/morgue)
+"qrR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"qsk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/monofloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"qsK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"qtb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"qtk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"qtn" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"qtD" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"qtO" = (
+/obj/item/weapon/material/shard{
+ icon_state = "medium"
+ },
+/obj/item/stack/rods,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"qtY" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"quz" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/welding,
+/obj/item/weapon/weldingtool,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"quD" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/port_emergency)
+"quL" = (
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"quO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"qvr" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Ward Port";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"qvK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"qwb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qws" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"qwB" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/command{
+ id_tag = "cmodoor";
+ name = "CMO's Office";
+ req_access = list(40)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/heads/sc/cmo)
+"qwK" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 1;
+ name = "Waste Gas Purge pump";
+ target_pressure = 15000
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"qxa" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"qxf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/maintenance/cargo)
+"qxk" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"qxn" = (
+/obj/item/glass_jar,
+/obj/random/mob/mouse,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"qxp" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"qxs" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/medbay_primary_storage)
+"qxU" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"qya" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS - Medical"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"qyg" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/science{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"qyX" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"qzu" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"qzH" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"qAa" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"qAy" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"qAA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"qAJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/patient_a)
+"qAW" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"qBe" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/assembly/chargebay)
+"qBg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qBY" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 8
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/apcenter)
+"qCZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qDj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"qDV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qEt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qEG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"qFw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"qFB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qFK" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Primary Tool Storage";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"qGw" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qHW" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qIw" = (
+/obj/structure/sign/warning/docking_area,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"qIz" = (
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"qIV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 1;
+ master_tag = null;
+ name = "interior access button";
+ pixel_x = 27;
+ pixel_y = 7
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"qJk" = (
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qJx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"qJT" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 4;
+ master_tag = null;
+ name = "exterior access button";
+ pixel_x = 7;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"qKm" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"qKC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"qKE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qLq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"qLC" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"qLX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/docking_hallway2)
+"qMI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qNz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D3)
+"qNE" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medical_lockerroom)
+"qOl" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/flora/pottedplant/small{
+ pixel_y = 9
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/library)
+"qOT" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"qPt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"qPw" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"qPz" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"qPU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"qQv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"qQJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"qQL" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"qSA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Workshop";
+ req_access = list(47)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/workshop)
+"qSS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"qTx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"qTK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"qUd" = (
+/obj/structure/flora/pottedplant/decorative,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/docking_hallway2)
+"qUo" = (
+/obj/random/junk,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"qVR" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/cups,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Virology Fore";
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"qWb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"qWW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"qWZ" = (
+/obj/item/trash/candle,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"qXc" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"qXP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"qYe" = (
+/obj/structure/table/glass,
+/obj/item/device/antibody_scanner{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/antibody_scanner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"qYm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"qYN" = (
+/obj/structure/table/steel,
+/obj/item/weapon/reagent_containers/food/drinks/glass2/rocks,
+/obj/item/weapon/reagent_containers/food/drinks/glass2/rocks,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"qYO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"qZd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"qZe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"qZK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"qZT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"rae" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"ral" = (
+/obj/machinery/airlock_sensor{
+ id_tag = null;
+ pixel_y = 27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"raN" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/mob/living/simple_mob/animal/passive/cat/runtime,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"raZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/virology)
+"rby" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/medical/virology)
+"rbU" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 1";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"rbZ" = (
+/obj/structure/closet/emcloset,
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"rcp" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/cryo/station)
+"rcG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"rcV" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ id_tag = "eng_al_int_snsr";
+ master_tag = "engine_room_airlock";
+ pixel_x = 22;
+ req_access = list(10)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"ref" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"rev" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"reH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"reJ" = (
+/obj/structure/table/steel,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/item/device/sleevemate,
+/obj/item/weapon/storage/box/bodybags,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"rfd" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"rfQ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"rfR" = (
+/turf/simulated/wall,
+/area/library)
+"rgn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"rgL" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"rhj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"rhm" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"rhX" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"rii" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/lockerroom)
+"rir" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"ris" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"riG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"riV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"rkp" = (
+/obj/machinery/vending/cola{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/fpcenter)
+"rkS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"rkX" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"rlr" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"rmd" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fscenter)
+"rmy" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Genetics Isolation Room";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"rmM" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"rnx" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/obj/machinery/light,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"roo" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 200
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"roJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"roS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"rpY" = (
+/obj/structure/window/reinforced,
+/obj/item/stack/rods,
+/obj/item/stack/rods,
+/obj/item/weapon/material/shard,
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"rqw" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Aft Hallway 5";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"rqM" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"rra" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 25
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"rrh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"rrB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"rrL" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"rsf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"rsq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"rsK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"rsM" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"rtk" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_l"
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/cryo/station)
+"rtr" = (
+/obj/machinery/light/small,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"rtw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"rty" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/briefcase,
+/obj/item/weapon/storage/briefcase,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/invisible,
+/obj/item/weapon/book/codex/lore/news,
+/obj/item/device/tvcamera,
+/turf/simulated/floor/carpet,
+/area/library)
+"rtA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"rtL" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 8
+ },
+/obj/machinery/smartfridge/drying_rack{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"rtP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"rtT" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"ruc" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/seed_storage/garden{
+ dir = 4;
+ pixel_x = -5
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"rue" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ name = "NanoMed Wall";
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"ruN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"rvu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"rwe" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"rwl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"rwm" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/structure/table/glass,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"rwP" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"rxj" = (
+/obj/machinery/computer/cryopod{
+ pixel_x = -32
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"rxD" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"rxI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"ryn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"ryI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"rzk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"rzu" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rzK" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rzN" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"rAm" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rAq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"rAK" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rBr" = (
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rBv" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rBy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rCx" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"rCN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"rCT" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/robotics)
+"rDi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"rDu" = (
+/obj/structure/table/rack,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/mask/gas,
+/obj/item/device/flashlight,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/cargo,
+/obj/random/cash,
+/turf/simulated/floor,
+/area/maintenance/bar)
+"rDB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 10
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Hydroponics Aft";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"rDC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"rDG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"rEb" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "pr2_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/patient_b)
+"rEd" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"rEl" = (
+/turf/simulated/wall/r_wall,
+/area/medical/biostorage)
+"rEq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"rEG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"rEJ" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/starboard)
+"rEL" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = -27;
+ req_one_access = null
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"rEZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/flora/pottedplant/dead,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"rFo" = (
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"rFO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"rFY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"rGo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"rGT" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"rGX" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/weapon/surgical/retractor,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"rHm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor_switch{
+ id = "disposalsorter";
+ name = "Disposal Sorter";
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central4,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"rHy" = (
+/obj/effect/floor_decal/chapel,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"rHH" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"rHN" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"rId" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"rIm" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/shuttle/wall/no_join,
+/area/shuttle/cryo/station)
+"rIA" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"rIN" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"rIW" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/airless,
+/area/space)
+"rJB" = (
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"rKm" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/curtain/open/privacy,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/cryo)
+"rKn" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"rKQ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"rLs" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"rLH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"rLZ" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Holodeck Port";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"rMh" = (
+/obj/structure/closet/emcloset,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/maintenance/research_medical)
+"rMJ" = (
+/obj/machinery/atmospherics/tvalve/digital{
+ dir = 8;
+ name = "Filtered Waste Gas Ejection Switch"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"rMM" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"rMY" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "aft_starboard_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "aft_starboard_airlock";
+ pixel_x = 25;
+ req_access = null;
+ tag_airpump = "aft_starboard_pump";
+ tag_chamber_sensor = "aft_starboard_sensor";
+ tag_exterior_door = "aft_starboard_outer";
+ tag_interior_door = "aft_starboard_inner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"rNn" = (
+/obj/structure/table/standard,
+/obj/fiftyspawner/plastic,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/fiftyspawner/cardboard,
+/obj/item/device/threadneedle,
+/obj/item/device/threadneedle{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"rOI" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/item/device/starcaster_news,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"rOO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"rOX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"rPr" = (
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/structure/table/steel,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"rPK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"rQu" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"rQx" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Workshop";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"rQF" = (
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/seconddeck/artgallery)
+"rQI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"rRc" = (
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/seconddeck/artgallery)
+"rRg" = (
+/obj/structure/table/steel,
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,
+/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind,
+/obj/random/maintenance/research,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"rRk" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/vending/loadout/loadout_misc,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"rRD" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/super{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"rRH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"rSd" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"rSH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Surgery Storage";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"rTr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"rTw" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"rTO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"rUA" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/warning/deathsposal{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"rVs" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"rWc" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"rWs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/northright{
+ name = "Virology Isolation Room";
+ req_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"rXg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"rXE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"rXO" = (
+/obj/structure/closet/coffin,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"rXR" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Medical Foyer";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"rXY" = (
+/turf/simulated/wall/r_wall,
+/area/chapel/main)
+"rYk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"rYB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"rYG" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artgallery)
+"rYP" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Patient Ward"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/patient_wing)
+"rZA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance Access";
+ req_one_access = list(11,24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/engineering/hallway/engineer_hallway)
+"rZG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"rZK" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"saz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"saJ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"sbj" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"sbk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "d2_w3_e_airlock";
+ pixel_x = 27;
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"sbr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"sbw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"sbL" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/space,
+/area/space)
+"sbU" = (
+/obj/structure/closet/crate/freezer,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"sbX" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"sbZ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 36
+ },
+/obj/structure/cable,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/disposal)
+"scm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"scv" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"scT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/vending/cigarette,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"sdb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"sdq" = (
+/obj/structure/sign/directions/medical{
+ dir = 4
+ },
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 10
+ },
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"sdA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"sdE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"sdR" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock 2 Aft";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"seD" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1380;
+ id_tag = "cryostorage_shuttle_hatch";
+ name = "Cryogenic Storage Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"seI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"seO" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 8
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fpcenter)
+"seX" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"sfi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/fpcenter)
+"sfv" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"sfD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"sfI" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/central_emergency)
+"sfU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"sga" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"sgx" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"sgY" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D2)
+"shc" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"shy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"shB" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research)
+"shD" = (
+/obj/machinery/disposal,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"shQ" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"shU" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"sib" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"siq" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/maintenance/robotics)
+"skd" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chapel"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"skp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"skB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"slm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"smo" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"smA" = (
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"snu" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"snD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/rollingpapers,
+/obj/item/weapon/storage/rollingpapers,
+/obj/item/weapon/storage/rollingpapers/blunt,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"soy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_medical{
+ name = "Patient Ward"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/patient_wing)
+"soz" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"soA" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Library"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/library)
+"soW" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"spx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/deck/second{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"spQ" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 4;
+ master_tag = null;
+ name = "exterior access button";
+ pixel_x = 7;
+ pixel_y = 27
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"sqd" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/starboard)
+"sql" = (
+/turf/unsimulated/mask,
+/area/hallway/primary/seconddeck/starboard)
+"sqI" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"sqJ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/construction/seconddeck/construction1)
+"srt" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/dark,
+/area/medical/patient_wing)
+"srF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"srU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"ssC" = (
+/obj/structure/easel,
+/obj/item/canvas/twentythree_nineteen,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Gallery Aft";
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/seconddeck/artgallery)
+"ssH" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"ssO" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/random/maintenance,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"ssP" = (
+/obj/machinery/door/airlock/research{
+ name = "Research Access";
+ req_access = list(47)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/rnd/research)
+"ssW" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"stb" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"stp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"str" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"stu" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"stG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"stH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"sup" = (
+/obj/machinery/papershredder,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"svD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"svX" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sxa" = (
+/obj/structure/sign/warning/hot_exhaust,
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_waste)
+"sxh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"sxu" = (
+/obj/structure/closet/crate/internals,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"sxI" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"sxZ" = (
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/obj/machinery/button/crematorium{
+ id = "Chapelburn";
+ pixel_x = -10;
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"syd" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"syk" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/closet/emcloset,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"syJ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/hand_labeler,
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_x = 30
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ pixel_y = 40
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"syM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"syU" = (
+/turf/simulated/wall,
+/area/maintenance/engineering)
+"szj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"szk" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 17
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"szJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"szT" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"sAd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"sAg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"sAC" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/food/drinks/britcup,
+/obj/item/weapon/storage/box/glasses/square,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/body_record_disk,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"sAH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"sBv" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/dark,
+/area/quartermaster/office)
+"sBI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"sCg" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"sCt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"sCy" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting equipment";
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"sCB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"sCE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"sCT" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/item/weapon/reagent_containers/food/drinks/shaker{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/teapot{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"sCV" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"sDc" = (
+/obj/structure/closet,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/item/clothing/shoes/syndigaloshes,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"sDg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"sEv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"sEx" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/bar)
+"sFt" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"sFE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"sFM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"sFN" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(25,28)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/coffee_shop)
+"sFQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"sGc" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"sGr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"sGG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"sHn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"sHK" = (
+/obj/structure/bed/chair/wheelchair,
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"sIk" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"sIp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"sIs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"sIQ" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"sJp" = (
+/obj/machinery/libraryscanner,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"sJI" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sKq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"sKv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/sleeper)
+"sKG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sKT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sLS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sLV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"sMp" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"sMt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sMJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"sNg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH3";
+ next_patrol = "ENG"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"sOC" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"sOI" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"sOZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"sPi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"sPy" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"sPZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"sQm" = (
+/obj/effect/floor_decal/steeldecal/monofloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"sQN" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"sRC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"sRD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"sRL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"sRN" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"sSi" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/starboard)
+"sSl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sSp" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"sTb" = (
+/obj/structure/morgue,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"sUb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"sUh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sUt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sUz" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Room B";
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"sVp" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w3_a_airlock";
+ landmark_tag = "d2_w3_a";
+ name = "Deck 2, Dock 3-A"
+ },
+/turf/space,
+/area/space)
+"sWi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sWJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sXo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sXG" = (
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/starboard)
+"sXK" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"sYg" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"sYW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"sZg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"sZj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"sZC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"taM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"taU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"tbc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"tbL" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "psyco_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/psych)
+"tce" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Starboard Hallway 3"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"tdm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"tdq" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"tdv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"tdJ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"tdP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"teh" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/coffee_shop)
+"tfd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"tfi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"tfo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"tft" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/starboard)
+"tfv" = (
+/obj/structure/ladder,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"tfw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"tfB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/machinery/seed_extractor,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"tfF" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/seconddeck/research_medical)
+"tfG" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Joint Hallway Access";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"tgb" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"tgd" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"tge" = (
+/obj/machinery/vending/cigarette{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"tgj" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"thh" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"thu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"thF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"thH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"tiT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"tiZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"tjD" = (
+/obj/structure/table/standard,
+/obj/structure/flora/pottedplant/small{
+ pixel_y = 10
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"tku" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"tkz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"tkH" = (
+/turf/simulated/wall,
+/area/engineering/engi_restroom)
+"tlw" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"tlx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"tmd" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"tna" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ d1 = 32;
+ icon_state = "32-1"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/substation/cargo)
+"tnO" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ frequency = 1379;
+ id_tag = "crg_aft_pump"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"toq" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"tos" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"toM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"toU" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "virologyquar";
+ name = "Virology Emergency Quarantine Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Joint Hallway";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"toY" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/book/codex/lore/news,
+/obj/effect/floor_decal/carpet/blue{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"tpu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"tpy" = (
+/obj/machinery/chemical_synthesizer,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"tpH" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/virology)
+"tpX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "medbayrecquar";
+ name = "Medbay Emergency Quarantine Shutters";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"tqH" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/coffee_shop)
+"tqM" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"trt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"trL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"trT" = (
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tso" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"ttq" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/virology)
+"ttx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"ttQ" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"ttW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tuj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/docking_hallway2)
+"tuI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "virologyquar";
+ name = "Virology Emergency Lockdown Control";
+ pixel_x = -26;
+ req_access = list(5)
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"tuX" = (
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Examination Room";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"tvh" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/button/windowtint{
+ id = "holodeck_tint";
+ pixel_x = -11;
+ pixel_y = 24;
+ range = 14
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"tvT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"twa" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"twc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"twh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"two" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"txi" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"txk" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/locker)
+"txI" = (
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/sleeper)
+"txX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"tye" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"tyL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"tyQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"tyZ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"tzP" = (
+/obj/machinery/disease2/isolator,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"tAj" = (
+/obj/structure/closet/emcloset,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"tAt" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "enginecore"
+ },
+/obj/machinery/power/supermatter{
+ layer = 4
+ },
+/obj/effect/engine_setup/core,
+/turf/simulated/floor/greengrid/nitrogen,
+/area/engineering/engine_room)
+"tAA" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"tBz" = (
+/obj/machinery/air_sensor{
+ frequency = 1438;
+ id_tag = "engine_sensor";
+ output = 63
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/engine_room)
+"tBE" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/structure/closet/medical_wall{
+ pixel_y = -31
+ },
+/obj/item/roller,
+/obj/item/bodybag/cryobag,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/pill_bottle/spaceacillin,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"tBM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"tBN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"tBO" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ id = "SupermatterPort";
+ layer = 3.3;
+ name = "Reactor Blast Door"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"tBR" = (
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2/arrivals)
+"tCI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"tCR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"tDn" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"tDO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/crew_quarters/seconddeck/artsupplies)
+"tDS" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"tDT" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"tEa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"tEK" = (
+/obj/structure/lattice,
+/obj/structure/sign/directions/ladder_up{
+ dir = 1;
+ name = "\improper Up One Deck";
+ pixel_y = 24
+ },
+/obj/structure/sign/directions/eva{
+ dir = 1;
+ pixel_y = 30
+ },
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = 36
+ },
+/turf/space,
+/area/space)
+"tEP" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/turf/simulated/floor,
+/area/engineering/engine_monitoring)
+"tFJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ pixel_x = -6;
+ pixel_y = -3;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine charging port.";
+ id = "SupermatterPort";
+ name = "Reactor Blast Doors";
+ pixel_x = -6;
+ pixel_y = 7;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/emitter{
+ desc = "A remote control-switch for the engine emitter.";
+ id = "EngineEmitter";
+ name = "Engine Emitter";
+ pixel_x = 6;
+ pixel_y = 2;
+ req_access = list(10)
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/engine_setup/shutters,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"tGS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"tHc" = (
+/obj/structure/table/bench/wooden,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/structure/flora/pottedplant/tall{
+ pixel_y = 10
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"tHk" = (
+/obj/machinery/vending/wallmed1{
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"tHp" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"tHq" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"tHE" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Civilian"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"tHW" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"tIv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"tJZ" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/machinery/computer/scan_consolenew{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Genetics Lab";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"tKa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"tKd" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/carpet/blue{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Starboard";
+ dir = 8
+ },
+/obj/item/device/toner{
+ pixel_y = 6
+ },
+/obj/item/device/toner,
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"tMo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Hallway Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"tMs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"tNa" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/engine_monitoring)
+"tNh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"tPA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"tQh" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Engineering Hallway 3";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/hallway/engineer_hallway)
+"tQn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/port)
+"tRm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"tRZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/construction/seconddeck/construction1)
+"tSm" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"tSo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"tSD" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"tSG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"tTo" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry/docking_lounge)
+"tTx" = (
+/turf/space,
+/area/shuttle/arrival/station)
+"tUA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"tVa" = (
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Port Hallway 4";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"tVq" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"tVu" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ dir = 1
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/secondary/entry/D2)
+"tXm" = (
+/obj/structure/sign/poster/nanotrasen{
+ dir = 1
+ },
+/obj/machinery/lapvend,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"tXq" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"tXV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"tYj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/port)
+"tYk" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/dockhallway)
+"tYl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"tYY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"tZi" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "crg_aft_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"tZC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"tZJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"uaf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/radio/beacon,
+/obj/machinery/navbeacon/patrol{
+ location = "ENG";
+ next_patrol = "CH4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"uah" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"uau" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/medical{
+ id_tag = "mentaldoor";
+ name = "Mental Health";
+ req_access = list(64)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/psych)
+"uay" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"uaD" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"uaW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/port)
+"uaZ" = (
+/obj/machinery/vending/assist{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"uba" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 4;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"ubU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"ucm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/meter,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ueM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Patient Ward"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/patient_wing)
+"ueP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ueT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"ueZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"ufg" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/starboard)
+"ufk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"ufl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"ufA" = (
+/obj/structure/sign/poster/nanotrasen{
+ dir = 1
+ },
+/obj/machinery/vending/loadout/gadget,
+/turf/simulated/floor/tiled/yellow,
+/area/crew_quarters/coffee_shop)
+"ufJ" = (
+/obj/structure/sign/chemistry{
+ icon_state = "chemistry2";
+ pixel_y = 32
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "chemwindow";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"ufT" = (
+/obj/effect/shuttle_landmark/southern_cross/arrivals_station,
+/turf/space,
+/area/shuttle/arrival/station)
+"ugC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "cryo_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"ugD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/starboard)
+"ugI" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"uhf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"uhs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/beacon,
+/obj/machinery/navbeacon/patrol{
+ location = "MED";
+ next_patrol = "CH10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"uht" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"uhC" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"uhD" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "library_window_tint"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/library)
+"uhE" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"uhF" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"uhO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"uhV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"uhW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"uiD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"uiI" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/starboard)
+"ukI" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "d2_w1_c_airlock";
+ landmark_tag = "d2_w1_c";
+ name = "Deck 2, Dock 1-C"
+ },
+/turf/space,
+/area/space)
+"ukV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Starboard Hallway 4";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"ulX" = (
+/obj/structure/flora/pottedplant/smalltree{
+ pixel_y = 11
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"umh" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"ump" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"umI" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"umZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"unr" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"unU" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"uoh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "crg_aft_airlock";
+ name = "interior access button";
+ pixel_x = -26;
+ pixel_y = -25;
+ req_one_access = null
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"uoF" = (
+/obj/machinery/vending/loadout/gadget,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"uoP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"uoQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"upp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/starboard)
+"upA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"uqg" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"uqj" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"uqP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"uqR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/seconddeck/research_medical)
+"utG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/seconddeck/research_medical)
+"utJ" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/seconddeck/research_medical)
+"utZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/seconddeck/research_medical)
+"uvq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"uvS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel Office";
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"uwj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medsci and Autoresleeving";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uwy" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"uwS" = (
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"uxi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uxj" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"uxr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uxt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uxW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"uxZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uzy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"uzI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uzX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"uAt" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = 27;
+ req_one_access = null
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"uAC" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"uAD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"uAF" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"uAZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "virologyquar";
+ name = "Virology Emergency Quarantine Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"uBH" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"uCb" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/packageWrap,
+/obj/effect/floor_decal/carpet/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet/blue{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet/blue{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"uCr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_y = -24;
+ req_access = list(39)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/virology)
+"uCD" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"uCY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"uDr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/closet/acloset{
+ name = "Art supplies"
+ },
+/obj/item/weapon/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/device/tape,
+/obj/item/device/tape,
+/obj/item/device/taperecorder,
+/obj/item/device/taperecorder,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/weapon/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/device/lightpainter,
+/obj/item/device/lightpainter,
+/obj/item/weapon/cell/device,
+/obj/item/weapon/cell/device,
+/obj/item/weapon/cell/device,
+/obj/item/weapon/cell/device,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"uDx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"uDM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uEc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uEF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_y = 24;
+ req_access = list(39)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/virology)
+"uET" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uFq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/crew_quarters/seconddeck/artgallery)
+"uFr" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"uGj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"uHc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uHz" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/lockbox/vials,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uHP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"uIb" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/fancy/vials,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uJq" = (
+/obj/structure/sign/warning/airlock{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"uJr" = (
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uJs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"uKe" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Emergency Storage"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"uKp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock Hallway 3"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"uLk" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uLm" = (
+/obj/structure/bed/chair/sofa/corner/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"uMn" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uMy" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"uNh" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uNi" = (
+/obj/machinery/computer/centrifuge,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Virology Starboard";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"uNA" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"uOA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Psychiatrist"
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the office door.";
+ id = "mentaldoor";
+ name = "office door control";
+ pixel_y = 24
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Mental Health";
+ dir = 6
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"uOF" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"uOH" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"uOL" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"uOZ" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uPX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"uQN" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1380;
+ id_tag = "escape_dock_north_airlock";
+ master_tag = "escape_dock";
+ pixel_y = 27;
+ req_one_access = list(13);
+ tag_airlock_mech_sensor = null;
+ tag_airpump = null;
+ tag_chamber_sensor = null;
+ tag_exterior_door = null;
+ tag_interior_door = null;
+ tag_shuttle_mech_sensor = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"uRk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"uRp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"uRN" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"uSo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"uSG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"uST" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/foyer)
+"uTo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/chapel/main)
+"uTu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/alarm/freezer{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"uTA" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"uUh" = (
+/obj/structure/closet/wardrobe/red,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"uVg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"uVm" = (
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"uVN" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "Emergency Cooling Valve 2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"uVT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"uVZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"uWb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 5;
+ d2 = 10;
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"uWx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"uXT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"uYd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"uYj" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"uYZ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_waste)
+"uZc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"uZr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"uZx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"uZI" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/chapel)
+"uZK" = (
+/obj/structure/grille,
+/turf/simulated/wall/r_wall,
+/area/engineering/atmos)
+"vad" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/fscenter)
+"vav" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock 3 Aft";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"vaL" = (
+/obj/structure/ladder,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"vbq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vbD" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"vbL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"vbX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"vco" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vcv" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/brown/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vcN" = (
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/port)
+"vcT" = (
+/obj/structure/sign/directions/recreation{
+ dir = 1
+ },
+/obj/structure/sign/directions/cryo{
+ dir = 8;
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/chapel{
+ dir = 4;
+ pixel_y = 10
+ },
+/turf/simulated/wall,
+/area/crew_quarters/seconddeck/artsupplies)
+"vcY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/airless,
+/area/medical/genetics)
+"vda" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Room A";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"vdd" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vdV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"vei" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"veJ" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"vfn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vfz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vfT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"vgu" = (
+/obj/machinery/button/remote/blast_door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = 26;
+ req_access = list(50)
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/module/power_control,
+/obj/item/weapon/cell{
+ maxcharge = 2000
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"vgH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"vhy" = (
+/obj/machinery/vending/loadout/accessory,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"vhB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vhS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/fpcenter)
+"viN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"viP" = (
+/obj/machinery/door/window/southleft{
+ dir = 8;
+ name = "Library Desk Door";
+ req_access = list(37)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet/blue{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/library)
+"viV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"viX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/meter,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"vjM" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/obj/machinery/computer/timeclock/premade/west,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"vjZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/machinery/navbeacon/patrol{
+ location = "CH9";
+ next_patrol = "MED"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"vkE" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"vlz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vmb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"vmR" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"vnc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"vnq" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"voh" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chapeloffice"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/chapel/office)
+"vor" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"voE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"voL" = (
+/turf/simulated/wall,
+/area/chapel/office)
+"voV" = (
+/obj/structure/sign/directions/chapel{
+ dir = 6
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/aft)
+"vpB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"vpD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/foyer)
+"vpH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"vpU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"vqv" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cryo)
+"vqA" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"vqB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vrg" = (
+/turf/simulated/shuttle/wall/no_join,
+/area/shuttle/cryo/station)
+"vrh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vrr" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vtu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vtO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/starboard)
+"vtR" = (
+/obj/structure/cryofeed{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"vuU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vvd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"vvh" = (
+/obj/item/device/radio/intercom/locked/confessional{
+ pixel_y = -21
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"vvp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Warehouse Maintenance";
+ req_access = list(50)
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"vvJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/starboard)
+"vvY" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access = list(35)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"vwF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"vxe" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vxj" = (
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
+"vxy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"vxB" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Secondary Storage";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"vxF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/light,
+/obj/machinery/vending/wallmed1{
+ pixel_x = -25
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_b)
+"vxG" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"vyn" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cafeteria)
+"vyA" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vzz" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"vzL" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"vzM" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D3)
+"vAp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vAw" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"vAx" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"vAS" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/seconddeck/starboard)
+"vAY" = (
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/powercell,
+/obj/random/toolbox,
+/obj/structure/closet/crate,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/maintenance/research_medical)
+"vBP" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"vCe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Aft Hallway 4";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"vCn" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"vCI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"vDl" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"vDJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"vDT" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"vDV" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"vEe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"vEq" = (
+/obj/effect/shuttle_landmark/southern_cross/cryostorage_station,
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"vEN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"vFr" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D2)
+"vFV" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"vGd" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/bottle/stoxin{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{
+ pixel_x = 1
+ },
+/obj/random/medical,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/obj/random/medical,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"vGp" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Locker Room";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"vGJ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"vGS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/patient_b)
+"vHd" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"vHe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/curtain/open/privacy,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/cryo)
+"vIb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"vIj" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"vIn" = (
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/obj/item/bodybag/cryobag{
+ pixel_x = -3
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = -3
+ },
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/device/sleevemate,
+/turf/simulated/floor/tiled/dark,
+/area/medical/biostorage)
+"vIB" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/mineral/equipment_vendor{
+ dir = 4;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/foyer)
+"vIC" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"vID" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"vIX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"vJh" = (
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"vJq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/hallway/secondary/seconddeck/research_medical)
+"vJC" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_waste)
+"vJS" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "virologyquar";
+ name = "Virology Emergency Quarantine Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/warning/biohazard{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/seconddeck/research_medical)
+"vKr" = (
+/obj/item/device/starcaster_news,
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/carpet,
+/area/library)
+"vKA" = (
+/obj/item/device/t_scanner,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"vKG" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"vKX" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vLn" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"vLr" = (
+/obj/structure/closet/wardrobe/virology_white,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Virology Airlock";
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vLw" = (
+/obj/machinery/vending/loadout/clothing,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"vMl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = -26;
+ tag_exterior_door = "virology_airlock_exterior";
+ tag_interior_door = "virology_airlock_interior"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vMO" = (
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"vNi" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery_storage)
+"vNr" = (
+/obj/machinery/vending/nifsoft_shop,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"vOd" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian)
+"vOR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"vOY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vPj" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vPr" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/lime/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vPP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"vPZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"vQa" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"vQX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Ring 5"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"vRq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/aft)
+"vRG" = (
+/obj/machinery/disease2/incubator,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"vRH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"vRU" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/adv,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"vSv" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"vSK" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/hydroponics)
+"vSL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"vSR" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_monitoring)
+"vUd" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"vUf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"vUp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D3)
+"vUv" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"vUB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"vUQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"vUV" = (
+/obj/structure/sign/deck/second{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"vVh" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d1 = 16;
+ d2 = 0;
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"vVG" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock 1 Aft";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"vVP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/port)
+"vVQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/ai_monitored/storage/emergency/eva)
+"vVV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"vWB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"vXg" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/holodeck_control)
+"vXh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Delivery Office";
+ req_access = list(50)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/delivery)
+"vXB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medical_lockerroom)
+"vYL" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Chapel";
+ sortType = "Chapel"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"vZc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"vZE" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"vZT" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"wag" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"waV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"wbc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"wbx" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"wbB" = (
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/port)
+"wbS" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Operating Theatre 2";
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/surgical/bonesetter,
+/obj/item/weapon/surgical/bonegel,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/item/weapon/surgical/bioregen,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"wco" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"wct" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"wcF" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"wdc" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/office)
+"wdd" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Secondary Storage";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/biostorage)
+"wdx" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room)
+"wec" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/airless,
+/area/medical/genetics)
+"wer" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"weK" = (
+/obj/machinery/vending/nifsoft_shop{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/fpcenter)
+"wfl" = (
+/obj/structure/sign/directions/bridge{
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science,
+/obj/structure/sign/directions/medical{
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/fpcenter)
+"wfB" = (
+/obj/structure/cable,
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"wfV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/rack,
+/obj/random/cigarettes,
+/obj/item/weapon/flame/lighter/random,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"whb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"whh" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
+ },
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/structure/sign/warning/moving_parts{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"whv" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"wiE" = (
+/obj/structure/sign/directions/engineering{
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/cargo,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/hallway/primary/seconddeck/ascenter)
+"wjc" = (
+/obj/structure/bed/chair,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Civilian Hallway 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/docking_hallway2)
+"wjE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"wjP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ color = "#00ff00"
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"wjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"wki" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"wkq" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "Gallery"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/seconddeck/artgallery)
+"wkF" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"wkG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/navbeacon/patrol{
+ location = "CH8";
+ next_patrol = "CH9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/ascenter)
+"wlf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"wlg" = (
+/obj/structure/sign/directions/medical,
+/obj/structure/sign/directions/security{
+ dir = 8;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/cryo{
+ dir = 8;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/maintenance/medbay_fore)
+"wls" = (
+/obj/machinery/iv_drip,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36;
+ pixel_y = -6
+ },
+/obj/machinery/button/windowtint{
+ id = "pr1_window_tint";
+ pixel_x = -36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"wmj" = (
+/turf/simulated/wall,
+/area/medical/patient_b)
+"wmE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"wni" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"wnt" = (
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"wnv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"wnB" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D1)
+"woi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"wom" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"woJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"wpq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"wpH" = (
+/obj/machinery/disposal,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"wqa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/warehouse)
+"wqc" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"wqh" = (
+/turf/simulated/wall,
+/area/chapel/main)
+"wql" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"wqq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"wqL" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"wrf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"wrn" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/technology_scanner,
+/obj/item/weapon/storage/bag/circuits/basic,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"wry" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medbay2)
+"wrz" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"wrK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"wrN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"wsB" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Medical Access";
+ req_access = list(5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay2)
+"wsU" = (
+/obj/effect/floor_decal/steeldecal/monofloor,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/seconddeck/artgallery)
+"wsV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_mining{
+ id_tag = "cargodoor";
+ name = "Cargo Office";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/office)
+"wtM" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Cafeteria"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/crew_quarters/cafeteria)
+"wtP" = (
+/turf/simulated/wall/r_wall,
+/area/quartermaster/lockerroom)
+"wuf" = (
+/obj/effect/floor_decal/industrial/loading,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon/delivery/south{
+ location = "Medbay"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"wum" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "cryo_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"wup" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Hallway Port"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"wuu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"wuH" = (
+/turf/simulated/wall/r_wall,
+/area/medical/genetics)
+"wuI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"wuK" = (
+/obj/machinery/icecream_vat,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"wuX" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Medical"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"wvD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wvG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"wvS" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"wxw" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"wxM" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/research{
+ name = "Genetics Lab";
+ req_one_access = list(5,47)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/seconddeck/research_medical)
+"wxP" = (
+/turf/simulated/wall,
+/area/maintenance/substation/civilian)
+"wyl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"wzj" = (
+/obj/effect/decal/warning_stripes,
+/obj/machinery/atmospherics/tvalve/mirrored/bypass,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/medical/virology)
+"wzw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wzP" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/lime/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wzV" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"wAw" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/medbay2)
+"wAG" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wAM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wAN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wAZ" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"wBl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/lime/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wBK" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/beige/border,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"wCh" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"wCl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"wCB" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/item/device/radio{
+ anchored = 1;
+ canhear_range = 7;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ name = "Virology Emergency Phone";
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/requests_console{
+ department = "Virology";
+ name = "Virology Requests Console";
+ pixel_x = 32
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 6
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wCI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/device/geiger/wall/west{
+ icon_state = "geiger_wall-p";
+ scanning = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"wCQ" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "HoP Office";
+ sortType = "HoP Office"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"wCT" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"wCU" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"wDm" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/engine_setup/pump_max,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"wDy" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"wER" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "SMES Access";
+ req_access = list(11)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/yellow{
+ d1 = 9;
+ d2 = 10;
+ icon_state = "9-10"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/engineering/engine_smes)
+"wFh" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"wFF" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = 27
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2/arrivals)
+"wFM" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"wFY" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"wIa" = (
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"wJa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"wJe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"wKf" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/cmo)
+"wKg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"wKG" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "Gallery"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/seconddeck/artsupplies)
+"wKN" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/port)
+"wKQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "chemwindow";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"wLh" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"wLi" = (
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"wLn" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/emergencyeva)
+"wLF" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"wMF" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"wML" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"wMO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/emergency/eva)
+"wNa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/emergency/eva)
+"wNh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"wNj" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"wNr" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/storage/bible,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"wNw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"wNx" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Primary Tool Storage";
+ sortType = "Primary Tool Storage"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"wNH" = (
+/turf/simulated/wall,
+/area/medical/first_aid_station/seconddeck/port)
+"wOC" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"wPa" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/primary/seconddeck/aft)
+"wPD" = (
+/obj/structure/closet/emcloset,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"wQP" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"wQR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 2";
+ req_access = list(45)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/surgery2)
+"wQZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"wRt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"wRC" = (
+/obj/structure/closet,
+/obj/item/clothing/head/ushanka,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/plushie,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"wSa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/chapel)
+"wSc" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"wSU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/central)
+"wSZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Personnel's Office"
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Personnel's Desk";
+ departmentType = 5;
+ name = "Head of Personnel RC";
+ pixel_x = 30
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"wTp" = (
+/obj/structure/closet/l3closet/virology,
+/obj/item/clothing/mask/gas,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"wTx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"wTK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"wTX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "CMO Office";
+ sortType = "CMO Office"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"wUp" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_a)
+"wUN" = (
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/tiled/hydro,
+/area/hallway/primary/seconddeck/ascenter)
+"wVa" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 4;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"wVu" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/dockhallway)
+"wVw" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ dir = 4;
+ name = "Medical automatic shutoff valve"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"wVM" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"wWd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"wWx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D2)
+"wWW" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"wWX" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/space,
+/area/space)
+"wXc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"wXh" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Dock One External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"wXx" = (
+/obj/structure/bed/chair/wheelchair,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"wXZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"wYq" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"wZh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"wZn" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"xao" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"xaD" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Acute";
+ dir = 1
+ },
+/obj/item/device/defib_kit/loaded,
+/obj/item/device/defib_kit/loaded,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"xaT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"xaY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"xbq" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"xbV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"xch" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay_fore)
+"xcE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"xcQ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"xdb" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "d2_w3_a_airlock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ id_tag = null;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ id_tag = null
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"xdp" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"xdw" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"xdX" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"xeu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/holodeck_control)
+"xeF" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"xeH" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/patient_wing)
+"xeT" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/starboard)
+"xeV" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"xfb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/engineering/engine_room)
+"xff" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"xft" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/foyer)
+"xfH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"xgq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"xgD" = (
+/obj/structure/undies_wardrobe,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"xgL" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/cryo/station)
+"xha" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"xhf" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Maintenance";
+ req_access = list(50)
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
+"xhh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"xhM" = (
+/turf/simulated/wall,
+/area/maintenance/research_medical)
+"xij" = (
+/obj/effect/floor_decal/chapel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"xip" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"xiE" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"xiX" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"xjv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/docking_hallway2)
+"xjG" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"xjT" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"xka" = (
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"xkS" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"xkV" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"xkY" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"xlj" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "qm_warehouse";
+ name = "Warehouse Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/warehouse)
+"xlF" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/locker)
+"xlO" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/drinkbottle,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"xmb" = (
+/obj/structure/sign/warning/docking_area,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D1)
+"xnd" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"xnj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southright{
+ name = "Medical Delivery";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"xnS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"xof" = (
+/obj/structure/filingcabinet,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"xom" = (
+/turf/simulated/wall,
+/area/medical/genetics)
+"xoD" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/item/weapon/tool/crowbar/red,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"xoO" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ name = "light switch ";
+ pixel_x = 37;
+ pixel_y = 5
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/button/windowtint{
+ id = "lounge_window_tint";
+ pixel_x = 37;
+ pixel_y = -4
+ },
+/turf/simulated/floor/wood,
+/area/hallway/secondary/entry/docking_lounge)
+"xoU" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/crew_quarters/coffee_shop)
+"xpb" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/machinery/door/window/westright{
+ name = "Shower"
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/medical_restroom)
+"xpf" = (
+/obj/machinery/transhuman/autoresleever{
+ ghost_spawns = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo/autoresleeve)
+"xpv" = (
+/obj/machinery/conveyor{
+ id = "recycler"
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/warehouse)
+"xqf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 9
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"xqE" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"xqV" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/papershredder,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Fore";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/library)
+"xrN" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"xsK" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/space,
+/area/space)
+"xsZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"xte" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"xtM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"xtR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"xuy" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"xuM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"xvb" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xvd" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/steel_grid,
+/area/hallway/secondary/entry/D2)
+"xvt" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"xvw" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/airless,
+/area/medical/genetics)
+"xvF" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/docking_hallway2)
+"xwa" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/roller,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"xwr" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"xwy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/ascenter)
+"xwT" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 5
+ },
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/blue,
+/turf/simulated/floor/tiled/steel,
+/area/medical/genetics)
+"xxe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"xxf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/sign/warning/airlock,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"xxy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"xxU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/sleeper)
+"xyg" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/virusdish/random,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"xyV" = (
+/obj/item/weapon/storage/briefcase/inflatable,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"xzm" = (
+/obj/structure/sign/warning/vent_port,
+/turf/simulated/wall/r_wall,
+/area/maintenance/disposal)
+"xzs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/southright{
+ name = "Virology Isolation Room";
+ req_access = list(39)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/virology)
+"xzT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/sign/dock/three,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Dock Hallway 5";
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"xzX" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/storage/primary)
+"xAj" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Two External Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ master_tag = null;
+ name = "exterior access button";
+ pixel_x = 27;
+ pixel_y = -7
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"xAQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/bag/sheetsnatcher,
+/turf/simulated/floor/tiled/steel,
+/area/quartermaster/warehouse)
+"xBk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/patient_wing)
+"xBQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Cargo Substation";
+ req_one_access = list(11,24,50)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/cargo)
+"xCr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_smes)
+"xCz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/apmaint)
+"xCD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"xDi" = (
+/obj/machinery/door/firedoor,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/patient_wing)
+"xDl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/sortjunction/wildcard{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"xDr" = (
+/obj/effect/shuttle_landmark/southern_cross/escape/station,
+/turf/space,
+/area/shuttle/escape/station)
+"xDJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"xDM" = (
+/obj/structure/closet/crate/freezer,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/surgery_storage)
+"xDR" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xEj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"xEA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"xEJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"xEQ" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/machinery/door/window/eastleft,
+/obj/item/clothing/suit/space,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"xFz" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xFC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"xGd" = (
+/obj/machinery/light,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood/alt/parquet,
+/area/library)
+"xGn" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cafeteria)
+"xGq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"xGZ" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/medbay_emt_bay)
+"xHj" = (
+/obj/structure/table/wooden_reinforced,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"xHG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"xHO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"xIf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"xIp" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"xIB" = (
+/obj/machinery/lapvend,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/stairwell)
+"xIT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"xJa" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/hallway/primary/seconddeck/ascenter)
+"xKO" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"xKT" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/apcenter)
+"xLt" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"xLD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/mob/living/simple_mob/animal/passive/dog/corgi/Ian,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"xLN" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/simulated/floor/lino,
+/area/chapel/office)
+"xLT" = (
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "Medbay";
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"xMr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"xNd" = (
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder,
+/obj/item/device/tape/random,
+/obj/item/device/tape/random,
+/obj/item/device/camera,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/weapon/barcodescanner,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"xNu" = (
+/obj/structure/ladder/updown,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/as_emergency)
+"xNV" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"xOe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"xOD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xPe" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"xPR" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - FA Station Port";
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "defibrillator closet";
+ pixel_y = -31
+ },
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/medical/first_aid_station/seconddeck/port)
+"xPX" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"xPZ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"xQy" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/surgeryobs)
+"xQF" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"xRa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "Surgery";
+ name = "Patient Ward";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/medical/ward)
+"xRo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"xRG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xRW" = (
+/obj/machinery/door/airlock/external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three External Airlock";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ master_tag = null;
+ name = "exterior access button";
+ pixel_x = -27;
+ pixel_y = -7
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"xSl" = (
+/obj/structure/sign/directions/cryo{
+ dir = 8
+ },
+/obj/structure/sign/directions/recreation{
+ dir = 9;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/library{
+ dir = 6;
+ pixel_y = -10
+ },
+/turf/simulated/wall,
+/area/crew_quarters/seconddeck/artgallery)
+"xSp" = (
+/obj/machinery/atmospherics/valve,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"xSI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"xSY" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d2_near_se";
+ name = "Near SC - Deck 2 South East"
+ },
+/turf/space,
+/area/space)
+"xTR" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = null;
+ icon_state = "door_locked";
+ id_tag = null;
+ locked = 1;
+ name = "Dock Three Internal Airlock";
+ req_access = list(13)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = 27
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"xTW" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "st2_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgery2)
+"xTX" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/sign/redcross{
+ desc = "The Star of Life, a symbol of Medical Aid.";
+ icon_state = "lifestar";
+ name = "Medbay";
+ pixel_x = 32
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/seconddeck/starboard)
+"xUn" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/storage/emergency_storage/seconddeck/ap_emergency)
+"xVd" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/light/small,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"xVJ" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"xWT" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel Aft";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/aft)
+"xXo" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"xXH" = (
+/obj/machinery/light/small,
+/obj/structure/loot_pile/maint/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"xYs" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"xYN" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/delivery)
+"xZu" = (
+/obj/random/trash,
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"xZK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/closet/acloset{
+ name = "Art supplies"
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/obj/item/device/camera,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/storage/photo_album,
+/obj/item/weapon/storage/photo_album,
+/obj/item/device/floor_painter,
+/obj/item/device/floor_painter,
+/obj/item/device/laser_pointer/blue,
+/obj/item/device/laser_pointer/green,
+/obj/item/device/laser_pointer/purple,
+/obj/item/device/laser_pointer/red,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/seconddeck/artsupplies)
+"yaI" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"ybA" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ycd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/engineering/engine_waste)
+"ycm" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Morgue"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue)
+"ydm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Delivery Office";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/delivery)
+"ydn" = (
+/obj/machinery/light/small,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"ydH" = (
+/obj/structure/catwalk,
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"yet" = (
+/obj/machinery/computer/security/mining,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"yeN" = (
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"yfl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/ascenter)
+"ygd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ygs" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled,
+/area/quartermaster/warehouse)
+"ygw" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ygz" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/research_medical)
+"ygD" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"yhq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"yhv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"yij" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/emergency/eva)
+"yiw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"yiX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/item/device/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"yjc" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"yjo" = (
+/turf/space,
+/area/shuttle/escape/station)
+"ykL" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
+"ylt" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaagaagaafaagaagaafaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwWXaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaagaagaafaafaaaaaaaaaaafaaaaaaaaaaaawWXaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacuRaafwWXaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaawWXaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaawxwaaaaaaaaaaaaaaaaagaafaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaafaagaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaagaagaagaagwWXaafaafaagaagaagaaawWXaagaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaafaaaaaaaagaagaagaafaafaagaagaagaahaafaafaagaagaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaafaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaajaajaajaajaajaajaamaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaafaafaaaaaaaaaaaaaaaaanaanaanaanaanaaaaaaaaaaaaaaaaafaafaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaajaajaajaajaajaajaajaajaajaajaamaamaamaamaamaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaafaaaaaaaaoaaoaaoaapaavaapaaoaaoaaoaaaaaaaafaafaaaaaapeAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaajaajaajaajaajaajaawaaxaayaazaaKaamaamaamaamaamaamaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaawxwwWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaoaaoaapaapaapaaLaapaapaapaaoaaoaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaaaaaaaMaaMaaMaaMaaNabcabeabfabgaaMaaMaaMaaMaaMaajaajabkablabVaajabWacpacsactacuaamaduadOadPaamaamadQadQadQadQadQadQadRadSadTadUadVadVadVadVadVaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaapaapaapaapaapaapaapaapaapaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXaafaafaafaafaaMaaMadWaeoaeqaeraeMaeNaeQaeRaeTaeUaftafwaaMaajafxactafyafzafQafzafRafSafTagcagdagfaggaghagiaamadQagvagFagFagGagHagIagJagKadVagLagMagMagMadVadVaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoagNaapaapaapaapaapaapaapaapaapagNaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaagOaagaaaaaaaaaaaMagQagSagTaeqahkahlahmahlahlahnaeUaeUahoaaMaajahractahuactahJactactahLacpahPainaioaipaghaitaamadQagHaivaiwaiZagHajaajbajcadVagLajlajsajlajtajuaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaoaapaapaapajvaapaapaapaapaapajwaapaapaapaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaMajCajDajGaeqajHahlahmagSahlajJaeUajMafwajNaajajQactakdakhakFakGakHakJakKakSakValhalFaghalGaamamBamGamHanGanHagHanManRapdadVagLagMagMagMajtajuaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaoaaoaapaapaapaapajvaapaapaapajwaapaapaapaapaaoaaoaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacuRaaaaaaaaaaaMapBapDagTaeqapEaqKaqLarHarLarMaeUajMafwarNaajarOarParQarRaajarSarTarUatsattaamatuatvatwaamaamagHagHatxatyatAatBatDauxauyadVagLauzauAauBajtajuaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacuRaaaaaaaaaaaoaapaapaapaapaapaapajvaavajwaapaapaapaapaapaapaaoaaaaaaaaaaagxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaNaeqauCaeqaeUavUahlavVaweahlawfaeUaeUawgaeUaajawhaajayjaajaajaajaykaziaykaajaamaamaamaamaamaamazjaznaiwazsazAagHazBazDazEadVazGagMazIagMazKadVaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacuRaafaafaafaaoaavazLaapaapaapaapaapaAqaapaapaapaapaapaAraavaaoaafaafaafaaflvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaafwWXaagaagaagaagaagaagaagaagaagbeBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaAtaAvaAwaBLaBTaBUahlaBVaBWahlaBXaBZaCWaCXaDeaDfaDsaEhaElaEraEsaFBaFQaGhaGjaGkaGwaHdaHAaHFaHGaHHagHagHagHaHIagHagHaHJaHKaHJadVaHLaHMaHNaHMaHOadVaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaoaapaapaapaapaapaapaHPaIZaJaaapaapaapaapaapaapaaoaaaaaaaaaaagxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaaaaaaaaaabXaJbaagaaaaaaaafaaaaaaaafaaaaaaaafaaaaafaaaaaaaaaaagaagbeBbeBbeBbeBaJcaaaaaaaaaaaawWXwxwaaaaaaaJdaJfaJgaJhaJiaJjaJkaJlaJmaJkaJoaJpaJkaKRaKSaFBaKTaKUaKVaKWaKXaKYaKZaLaaLbaLcaLdaLeaLfaLgaLhaGkaMraMsaMtaMuaMvaMwaMxaMuaMyaMAaMBagMaMCagMaNLadVaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaaaaoaaoaapaapaapaapaHPaapaIZaapaJaaapaapaapaapaaoaaoaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXxkaaaaaagaagwWXaaaaaaaaaaaaaafaaaaaaaafaaaaaaaafaaaaafaaaaaaaaaaaaaafaafaaaaaaaaaaafaagaaaaaaaaaaagaaaaaaaaaaNMaNNaNOahmaNPaNQaNRaNSaNUaNVaNWaNXaNYaNZaOaaFBaKTaObaOcaOdaOeaPoaPpaPraPsaGkaPtaPvaPwaPxaGwaGkaPyaPzaPAaPBaPCaPCaPDaPEaPFaPGaQxaQzaQAaQzaQCajuaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaapaapaapaHPaapaQDaIZaQEaapaJaaapaapaapaaoaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaaafaagaagaagaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaafaaaaafaaaaaaaaaaaaaafaaaaaaaafwWXaaaaaaaaaaaaaaaaagaafaafaafaaMaaMaQGaRfaRoaeUaRpaRqaRraeUaRsaRtaeUahlaRuaSraSraSraSsaStaSvaSraSxaSzaSAaGkaGkaGkaSDaGkaGkaGkaSEaSGaSHaSIaTbaPzaTcaPzaTdajuaTfaTgaThaTgaTiajuaaaaaaaaaaagaTjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaapaapaapaapaQDaIZaQEaapaapaapaapaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaagaaaaaaaaaaaaaaaaaauZKuZKuZKuZKaaauZKuZKuZKuZKaaauZKuZKuZKuZKaaauZKuZKuZKuZKaafaagaaaaaaaaaaaaaagaaaaaaaaaaaaaTkaTlaTmaTnagtaToaTmaTpagtaTqaUdaeUaUgaUqaSraUuaUvaUxaUzaUAaSraUBaUCaUDaUEaUGaUHaUIaUJaVZaUEaWaaWlaWmaWnaWoaPzaPzaPzaWpaWqaWraWsaWtaWuaWrajuaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaapaWvaapaapaQDaIZaQEaapaapaWvaapaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafaafaafaafaafaafuZKaWwaWxuZKaafuZKaWyaWzuZKaafuZKaWAaWBuZKaWCuZKaXMaYjuZKaaaaagaaaaaaaaaaaaaagaaaaaaaaaaaaaTkaYkaYnaYoagtaYsaYnaYoagtaYtaYuaeUaYvaYwaSraYxaZBaZJaZKaZNaZOaZYaSzaZZbaababbacbadbacbaeaUEbaiaSGbasbavbaxbbSbbUbbVbbUbbWbbZbcabcbbccbcdadVaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabceaaobcfaaoaapaapaQDaIZaQEaapaapaaobcfaaobceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaaaaaaaaaaaaaaaaaaaaauZKbcgbcguZKaaauZKbchbchuZKaaauZKbcjbcjuZKaaauZKbckbckuZKaaabKYaaaaaaaaaaaaaagaafaafaafbclaTkbdjbdFbdGagtbdHbdTbdGagtbdUbdVaeUbfybfzaSrbfBaZBbfFaZBbfGbfHbfIbfJbfKbfLbgNbhkbhlbhmbhoaUEbhpbhqbhrbibaPzbiDbiEbiEbiEbiEbiEbiFbiFbiFbiFbiGbiGaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcebiHaIZaaoaaoaaoaapaIZaapaaoaaoaaoaIZbiHbceaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaafaaaaaaaaaaaaaaaaaaaaauZKbiIbiJuZKaafuZKbiKbiLuZKaafuZKbiMbiNuZKbiOuZKbiPbiQuZKaafaafaafaafaafaafnnGaaaaaaaaabiTbiUbiVbiWbjtbjubjwbiWbjxbjybjzbjAaeUbjDbjEaSrbjFbkmblaaZBblbblcbfIaSzbldbleblfbacblgbacbliaUEblkbllblmblVblWblXbiEblYblZbmabmbbmdbmebmfbmhbnibiGaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabceaIZbnjbceaaaaaoaaobnxaaoaaoaaabcebnybnzbceaaaaaaaaacuRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaafaaaaaawxwaaaaaaaaaaaauZKbnAbnBuZKaaauZKbnAbnBuZKaaauZKbnCbnDuZKbnEuZKbobbocuZKaaaaaaaaaaaaaaacuRaaaaaaaaaaaabodbofbogbovboBboCboEboFboRbpobppbpraeUaUgbpKaSrbpLbpMbpObqfbqhbqibfIaSzbqCbqRbrhbribrjbrkbrlaUEbrmbrmbrnbrobrmbrpbiEbrqbrrbrsbiEbrtbrubrvbrwbrxbiGaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafbcebcfbrybceaaaaafaaaaaaaaaaafaaabcebrybrAbceaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaabrBbnEaaaaaaaaabrBbnEaaaaaaaaabrCbrCaaabnEaaabrDbrFaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaabrGbrHbrIbrHagtbrNagtbrOagtagtbrQbsYbsZbtabtfaSrbubbucbuubuDbuEaSrbuFbuObuQaUEbuRbuSbuTaUEaUEaUEbuUbuVbuWbuXbuYbuZbvabvbbvcbvdbiEbvebvfbvgbvhbvibiGaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacuRaaaaaaaaaabKabKabKaaaaaaaafaaaaaaaaaaafaaaaaaabKbvjabKaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaaacFUcFUbvobvObvPaCDaCDbwjbvObvPbwCaCDaCDbwUbwVbwWbvPbwYbxtbxLcFUcFUaaaaagaaaaaaaagaafaafaafbrGbrGbxMbydbrHbyebyxagtbyybyzagtbyAbyBbyCbyDbyFbyGbyHbyIbyJbyKbyMbyNbyObyPbyQbyNbyRbySbyTbyUbzkbzzbzAbzCbzUbzCbzVbAlbAmbvabAnbvabiEbAqbArbAsbiFbiFbiGaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaacFUbAtbAubAvbAHbATbBgbBhbBjbBlbBmbBnbBubBxbBybBzbCxangbCybCAatVcFUaaaaagaaaaaaaagaaaaaaaaabrGbDfbDgbDjbrHbDkbDlagtbDsbDtagtbDubDvbDwbDxbDybDZbEabEbbEcbEdbEebEfbEgbEhbEibEmbEnbEobEpbEzbEAbFFbEAbEAbFGbEAbFHbFIbFJbFKbFMbFNbFOhqqbFPqlFbFQbFRbFSaaaaaaaaacuRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaacFUbFVaaVaogcAwbGaatVaaVbGbbGcbGdatVatVamebGebHGapmbIXapfbIYbIZaCDaaaaagaagaaaaaaaaaaaaaaabrGbJabJbbJcbrHbJdbJeagtbJfbJgagtbJhbJhbJhbJhbJibJjbJkbJhajybJlbJmbJnbJobJqbJsbJnbKIbJlbKJbKKbKMbKNbldbKObKPbKQbKRbKSbKTbtabldbKUbKZbKObKObKObLabLbbMqaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjbMraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaauZKuZKuZKuZKuZKaaaaCDbMsbBmbGbbGcbMtbMtbMtbMubMxbMybMAbMAbMBbMCbOpapmatVaoiaogbOqaCDaaaaaaaagbKYaaaaaaaaaaaabrGbOrbOsbOtbrGaTkaTkaTkaTkagtagtbOwbOxbOybOzbOAbOBbOCbODajybOEbOFbOGbOHbOKbOLbPlbPUbPVbPZbQabQbbQdbQfbPZbQlbQlbQlbQlbQlbQlbQlbQlbQnbQoasbasbasbbQrasbaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaauZKbQtbRfbRgbRhapXapYbRiaqabRjbRkaqbaqbaqaaqbbRlbRmaqbaqbaqabRnbRobRpatVaoiaosbRqcFUaaaaaaaafaaaaagaaaaaaaaabrGbrGbRsbrGbrGbRtbRubRvajybRwbRzbRAbRBbREbRJbRKbRLbRNbRObRQbScbSBbSCbSDbSFbSHbSIbSJbSKbSLbSMbSNbSObSRbSSbQlbSVbSZbTcbTdbTebTfbQlbTAbTCasbbTDbTTbTVasbaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafabKaafaafaafaafaaaaaaaaaaafaafaafaafbvjaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafuZKbTYbRfbUebUfardalUbUgbUjbUlbUmbMtbMtbMtbMtbMtbUnbMtbMtbMtbUlbUobGcbMtbUqbUrbUsbUtaaaaafaagaafaagaafaafaafcsFakwakwakwbUubUNbUPbUQajybVeaujbVgbVhbVjbRNbVkbVlbVsbVubVvbVxbSBbVybVzbVBbVCbScbSJbVHbVIbVJbWfbWgbWibWjbQlbWBbWCbWDbWFbWGbXjbXkbXHbXIbXJbXKbXLbXMasbaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabXNabKbXNaaaaaaaafaaaaaaaaaaafaaaaaabXNbvjbXNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaauZKuZKuZKuZKuZKaaaamTbXPadjaogcAwatVatVakobXTadzbXUbXXbXZbYaangamecAwatVaoiaiBaiBcFUaaaaaaaagaaaaaaaaaaaaaaacsFbYcbYdbYibUubUubYLbUuajybYMbYNbYQbYRbYSbYTbYUbYVbYWbOCbYZbZbbZdbZlbZxbZIbZKbZlbZLbSKbZNbZRbZUbZVbZWbZYbQlcaacadbWGcafbWGcagbXkcaicajasbasbasbasbasbaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafabKaafaafaafaafaaaaaaaaaaafaafaafaafbvjaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaafaaaaaaaCDaofatVaogapmatVatVatVatVcakatVcalcamcamcarcasajoajpaasaataataCDaaaaaaaafaaaaaaaaaaaaaaacsFcsFcaScaUcaWcaXcbaakwajyajzajAaujcbccbdbRNcbebVkcbfcbgajycbjcblcbncbocbpcbqcbrcbscbtbPZcbucbZccbccdccfbQlccgcchccsccvbWDccwbXkccxccycczccAccBaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaafaafaafuZKuZKuZKuZKuZKaaaaCDaofatVaogapmatVatVaaEaaEaaUatVakkanfccCaoiameapmakoatVaaIaaIaCDaaaaaaaafaaaaaawxwaaaaaaaaaccDakraktbUPakuappakwakxakyccHanuaquccIbRNcdlbRNcdmcdoajybJnbJnbJncdpcdqcdsbJncdtbJnbPZcducdvcdwcdxcdybQlcdzcdAbWGcdBbWCcdCbXkcdDcdEcdFcdGcdHaaQaaaaaaaaawxwwWXaaaaaaaaaaaaaaaaafcuRaagaagaagaagaagwWXaabaaawWXaagaagaafaaaaaaaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaauZKcdIcdJcdKbRhapXapYaldaqacdLaaTatVatVcdMcdNaaUatVcdOaaVangaoiameapmatVcdQabtabtabtabtabtaafaaaaaaaaaaaaaaaaaaccDakragVaocabhcdRakwajyallcexceAaloalpceCanyatrceDceEajyceFbJnceGcfHcfIcfJceGcfNbJncfRbPZbPZbPZbPZbPZbQlcfScfTcfUcfVcfWcfXbXkcfYcfZcgatXqcgbaaQaaaaaaaaaaaaaagaaaaaaaaaaaaaafaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaagaaaaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaauZKcgccdJcgebUfardalUalValWcgfapmatVakkajpajpabncgIanecgKaneaasameapmatVaboabtabqabrabsabtacmabJabJabxabxabycsFamiabzalHamjabAatqatqatqatqatqatqatqatqatqatqatqatqatqatqatqatqcgLcgMcgOcgOcgPcgQcgRcgRcgScgTcgUcgVcgWbXkcgXcgYcgZcgXcgXbXkbXkchachbchcchdchechfchfaafaafaafaagaaaaaaaaaaafaafaaaaaaaafaaaaaaaafaaaaaaaaaaaawxwaaaaaaaaawWXaafaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafuZKuZKuZKuZKuZKaaaamTamUadjatVcAwatVaoiatVatVangatVcdOatVangatVanianjankanlchgabCabDabFabGabHchhabJabJabKchichjchkchlamManpabLanqanrabManschmchIanvanwanxchJchKchLchMchNchOchQchRchSchTchUcifcigcihciFciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUcjqcjrcjscjtcjuaaaaaaaaacuRaagaagaagwWXwxwaaaaaaaafaaaaaaaafaaaaafaafaafaafaafaaaaaaaaacndaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaafaaaaaaaCDaofatVatVapmatVaoiaojcjwabOaqbcjxaomcjycjzaopcjAaorcjBcjCcjDabPabQckBckCckPckRabJabKckXchjaovabRclOaowabScmjaoyaoEaoAaoEabUaoEaoCcmlaoEcmmcmncmAcnbcpgcpjcpwcpxcpycpMcqfcqgcqhcqjcqkcqlcqmcqncqocqpcqocqqcqocqrcqscqtcqucqvcqwcjqcqxapbcjtcqyaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacqzcqAcqMcqNaaaaafaaacqOaaaaafaafaafwWXaagaaaaaaaaaaaaabKaaaaaaaaaaafaaaaaaaaaaafwxwaaaaaabvjaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaauZKuZKuZKuZKuZKaaaaCDaofatVatVapmakoapfapgatbataataapjataaplatbameapmatVapnarmarmarmarmarmsyUaroackacmacmcsFcsFcqQcqRcqSacncqTatqapqapucqUapuapsapvapucqVapwcqUcqVcqWcqXcqYcqZcrachScrlcrmcrncrBcrCcrDcrEcrHcrEcrIcrEcrEcrEcrJcrKcrUcrKcrJcrJcrVcrWchccrXcrYchfchfaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaiDcrZcrZadgadgadgcsacsbaaaaafaaaaaaaaaaagaaaaaaaaaaWCabxaafaaaaaaaafaaaaaaaaaaafaaaaaaaaacjvaaaaaawWXaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafuZKcsccsecsfbRhapXapYapZaqaaqbacvaqdacwaqcataacxacycsgaqeaqfataaczacAatVaqiarmacCacDacEarmaeCacHacIaSmbcVacLcshacMacNcsFcsFaqmatqaqnaryaqparyaswatqaqtcsjatqcskcsjatqcsmcsjanqcsncsocspcsqcswcsxcsycsxcrEcszcsAcsBcsCcsDcrEcsEcsGcsHcsIcsJcrJcsKaWbaWbcsLcsMcsNadgaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaactcctdctectfctgctgcthcsbcsacsactictjctjctjaaaaaaaaaaafabKaafaaaaaaaafaaaaaaaaaaafaaaaaaaaabvjaaaaaaaaacuRwWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabXaaaaaaaaauZKctucsectxbUfardarearfctGacPacPacQacRacSataacTacUacVacWarictPctQarjarkarlarmacXacYacZadactRadbadcaemauhauhauhauhauharqarrarsatqartaryarvaryaswatqaryctSatqaryctTatqaryctUatqctVctWctXctYcswctZcuacubcrEcuccudcuecufcugcrEcuhcuicujcumcuncrJcuocuCaWbcuDcuEcuGadgaaaaaaaaaaaaaaaadgadgcsacsacsaadgcuHcuIcuJcuKcuLcuMcuNcuOcuPcuQcuScuTcuTcvscvsaafaafaafabKaafaafaafaafcvtcvwcvyabKcvzcvJcvKcvLcvMaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauZKuZKuZKuZKuZKaaaamTadiadjadkcvOasgashasiaxNaskaslcvPcvQadlaxNcvRcvTasnadmarmcvUadoawxarmaeCcvVcvWsyUsyUsyUsyUsyUsyUsyUvxjadJatqassaryasucvXaswatqasycvYatqasycvZatqasycwaatqcwbcwccwdcwecswcwfcwhcwjcrEcwncwpcwqcwrcwscrEcwtcuicwucuicwvcrJcwwcuCaWbaWbcwxaWbadgadgadgadgadgadgadgcwycwzcwAcwBcwBcwCcwDcwDcwCcwEcwFcwGcwHcwIcwJcwKcuTcwMcwNcvscvsaaaaaaabKaaaaaaaaaaafcwTcwZcxccxdcxecxdcwTcxmcwTaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaafaafaaaaaaaCDadvadwadxcFUcFUcxnasXcxoatbasZcxpataatbatbatdateatfadzarmarmadBarmarmsyUadEaeEawQsyUadIcxqathatisyUvxjadJatqatqatqatqatqatqatqatqatqatqatqatqatqatqatqatqcxrcxscxucxzcswcxAcxIcxKcrEcxLcxMcxNcxOcxPcrEcxQcxRcxScuicxTcrJcxUcxVcxWcxXadNaadadNadNcybadNcycadNadNcyicyicyjcykcymcyncyocypcyqcyrcyscytcyucyvcywcyxcyycyzcyAcyBcvsaaaaaaabKaaaaaaaaaaaacyFcyNcyOcyPcyQcyScwTcyTcwTaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaBeaBeaBeaBeaBeaBeaBeaBeaBeatRcyUcyVatWatTatUcyWadZatWcyXaebavEatWaecaedaeeaefcyYaegaeCaeiaejaeksyUatXatZatZvxjauaatkaelauhaueaudcyZaufauhaemauhauhauicztczuczIczJczKaSlsyUczOczVczYcswcswcswcswcrEczZcAbcAccAucAvcrEcAxcAycAzcABcACcrJcAJcAKcAMaxwaeLaxxcANcuEcAOcAPcAPcAPcAPcAPcAPcAPcAQcAVcAWcAXcAYcAZcAZcAZcAZcBacBacBacBacBacBecBfcBgcBicBicBicBicBicBicBicBicBicBjcBkcBlcBpcBscwTcBtcwTcwTaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkawWXaagaagaagaAsaagaagaagaagaagaafaafaaaaaacBucBvcBwanXaBecBxcByauGcBzavyavyaetaBeauJauKcBDcBGauLaeuauLaevauLcBHaexcBIauNcBJaeyaezawwaeAazTaeCaeDaeEawOsyUaeJcBKvxjauPsyUauRcBLaeKaydcBMsyUsyUcBNsyUsyUcBOaaeazlcBXcBYazlcBZsyUsyUcCacCbcCeaWbaWbcCocwAcrEcCpcCscrEcrEcrEcrEcrJcrJcCwcrJcrJcrJcCycuEcCCcCFaeLcsNcCGcCHcCIcAPcCJcCKcCLcCMcCPcAPcCRcCRcCScCRcCRcAZcCTcCUcCVcBacCWcBacCXcBacCYcCZcDacBicDbcDccDdcDdcDecDfcDgcBicDhcDmcDncDocDpcDrcDscDtcwTaaaaaaaaaaaaaagxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXxkaaafaafaafaafaafaafaafaafwWXaaawxwaafaafaafanXcDucDuavuaBeavwavwavwavxavyaeVaeWaBeaeYafHavzavAavBavCcDvazTafccDwafbavDafcaFtaFtavGcDxcDyaFtsyUavvcDzavJsyUsyUsyUavMvxjsyUsFMaBCaBCcDAaBCaBCafivxjafksyUafmafnarEsyUaSmvxjsFMvxjsyUcDBcDCcDHaWbcDPcuEcDQcDRcuEcDScDWcDWcDWcDWcAMcDXcDYcDZcEacEbcEccEdcEeaWbafpafpafpafpcEfcAPafqcEgcEhcEicEjafrafscEkcElcEmcEncAZcEocEpcEqcBacErcBacEscBacBacEtcEucEzcEAcEBcDdcECcEDcEEcEIcBicwTcwTcwTcEJcwTcwTcwTcwTcwTcwTaafaafaafaaflvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaafaagaaaaaaaaaaafaaaaaaaafaaaaafaaaaaaaafaaaaaaanXcEKcEMcENaBecEOaDOaDOafAaDOafCafDaBeafGpOAafIafJafKafLcEPazUawoaDVawqawrawsaCMawuawvcEQcERawysyUafNalRawmawAawBsyUbcVaSmsyUawGaBCawIazhawKaBCantcEZawOsyUawQvxjawSsyUbcVvxjcFacFicFjcFkcFMcFNcFOcDZcFPcFVcFWcDZcFXcDZcFYcDZcDZcFZcGacGdcGdcGdcGdcGdcGdcGecGfafpafOcGmcGncEfcGocGpcGqcGwcGxcGyafrafPcGDcGEcElcGFcGHcGKcGLcGOcGPcGQcGRcGTcGUcBacGYcHscHRcIncIocJncIocJLcKucMicNacNkcNBcQJcRicSicSFcSRcTjcWkcXZaaaaaaaaacuRxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaafaafdYTaafaaajBVaaaaaaaafaaaaaaanXdardcSddHaBeddOaDOaDOazNafUdendgYafVdkbaxAdlxdlPaxCaxDaxEazUaxGaLGaxIaxJaxKaCMaAadmmaxOaxPaxQsyUafWafXsyUdojawBsyUaSlaSlsyUaxYaBCayaazhafYaBCsyUsyUsyUsyUaLSaLSaLSsyUsyUsyUsyUsyUdpOdpQdsjdsodpOaWbaWbaWbaWbaWbcsacsacsaaWbaWbaWbaWbcGddtIdtNducduKcGdduUaZLdvedvzdvBdwPcEfdwVdxacEgdywdyydyNdzbaUwdzidzNdCbdCHcAZdEodGsdGCcBadGEdHRdIqdIxcBadJNdLgcBidMldOFdQcdOFdQcdOFdStdUedUzdVldWpdWGdWMdXDdXIdZUeaJecyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaavJCaYydUKuYZsxaaYyaYyaYyaYyaYyedRedRanXefHegHavuaBeehEeiBeiIagnagoejDagpaBeemkayPayQemnayRagraySazTaguagwaCKayTayUaFtagzayXagAayVayWaFuaFuagCaFuaFuaFuaFusyUsyUsyUemvaBCazeazfendaBCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaenGenReqLerEetveupenGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGdeuBeuYevbevbewVexbcAYafpeCoeDxeEXcEfeFxeFWeGpeGFeHoeHwdzbcEleHGeHVeHXeIucAZcAZcAZcAZcBaeIXeIYeIZeJfcBaeKpeKscBicBieLeeLkeMveLeeNjeLeeNJeOJePpeQyeQzeQKeRKeROeQzeSFeTfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaamycaYyaYytDSahzqwKagXagYagZahaaTvaYyeUReWteYneYueYXfbPaBeehEeiBazMahcahdfceazOaBefeeaheaxSfehazTazUazVazTazWazXahgazYahhaFtaAaaCOahiaAcaAdaFuaAfaAgaAhaAiaAjaFuffZfgesyUfgNaBCaAnaAoaBCaBCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaenGfiafiwdsjfixfiGenGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGdcGdfjpfjyfjAcGdfldaWbcEfafpflBafpcEfcAPdzbflCfocflCfoFcAPfpAcvsfqlcvsfrTcCRftvfvafvacBacBafvHcBacBacBadJNfyafyDcBicBicBicBicBicBicBicBicXZfzRfAHfALfBzcXZfBJcXZfDffFGfGGfGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagxsKsbLsbLaJtaJtahTdckdlnaWHajOxcEaRCmrUaRvahBaeGaYyfHhfHQfIxfILfIXanXaBeaBeaBeaBeaBeaBeaBeaBeaBefJbahCazJfJlaBpfJXbgefKlaBmaDVaCKfMGaLIaCMaBraLPaBtaBuaBvfMShYqfPkahDahEahFaFufPEaBDaBAsFMaBCaBCaBCaBCaaaaaaaaaaaaaaaaaaaKgaKgbgqbgqbgqaKgaKgfQLfRLdsjfSYfTtasVasVenGenGenGasVasVaaaaaaaaaaaaaaaaaacGdcGdcGdcGdcGdfVucAYfVvfVAfWdfWjfYHfYNgbdgbsgbBgcdgcBgddgdVaCdgelgexgfQggigiQgiQgiQgjbgkhgkOgmIgotgpBgpGgqmgqpgsPgsPgtwguCgvFrsfgwpgywcXZgyAgyTgzNgAXgBngBsgCogCygCEgCEgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagwWXaagaaaaRwaizlteaJtaizahTycdesJxQFaiChNmrMJgDraPHahqahZgDUgGjgGEgIMaesanXgJrgLdgLwgLDaCxaiaaCygMagOjgOugPhgPGgQRgSRaCGaCHaAZaiLaJNaDVaCKaCLaLIaCMaCNaCOaieaifaCPaFuaigaihaLQnJhaijaFuailgThsyUsFMvxjsyUaaaaaaaaawxwaaaaaabgqbgqaKgaimgTMgUjgUkgUVgXBgZmhaddsjarKhayvadhcAhddhdVhexvadasVenGenGaaaaaawxwaaaaaaaaaaWbheBcDZhgncAYcCShgzhjAhkWhlbhlXhnyhnShpAhqBhruhtihruhulhvbhvGhruhxshruhxAhyfhzEhzXhBqhBthqBhtihxshDchulhruhEvhEUhHGhDchIhhJoiFChJUhJXhKahKFhKVhLghLihLShMvhMBhMBhMRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaafaaaaaaaaaaaaaaaaaaaaaaDraizaizaJtaizahTycddZDiUUfDGgDrhNmhNmhNJaiFaiGaYyhNKfIxhOihOuhPQhQghQJaiIhRvhSpaDNhTshTxaiHaDPaDQhUhaiIaDSaDTbgeaAZaiLaJNaDVaJOaFmaiNaFtaFtavGaiQavGaFtaFuaFuaiTaEbnJhaEdaFuaiUaiVaSlsFMvxjsyUaaaaaaaaaaaaaaabgqbgqajFajBajFhUMajFaimhUMhUMhVhhaddsjarKhVhhWEhWEhXAhYphWEhYphYGhYpenGenGaaaaaaaaaaaaaaaaWbhYMiahibtaGgaGgichichichichichichidMidPcDaiejiejiejiejiejiejiejiejiejiejiejiejifdifOigNiihiihiihiihiihiihiihiioiiQijcilyilQinieTfipyipNgzNiqfiqTirxgCoirOisqitjgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaRwaizaizaJtaJtahTdckfZNiUUfDGjnXitKcPvajTajUajVaYyiuXivxivHixjavuixUiyaiznaTKaLyizSaLyaLyaFaaLyaTKaQeaFeaIlaFgaFhaFiaQeaIpaFlajXaFmaFnaOQiAwaNsaFrajYaFsiADaFuajZaFvnJhakaaFuaFwaFxaSlsFMaKfsyUaaaaaaaaaaaabgqbgqaHesvXayLaFGiCsiCyiCysvXiCXbUdiEHdsjiESiEriEXiFyiGfiGfiImiJxarKiFyiJTenGenGaaaaaaaaaaaaaWbiKaaWbaWbaGgiKniKAiLbiMciNsiOIiPqiQeiSqcEuiVxiVFiVPiXYiYsiYDiYZjaHjaXjdCjewjeIifdjfTjfWjgqjgyiihjgHjhWjiHiihjiLjiSijcijcjjLjjVjlKjmujmxjmUjnlcXZfGWcXZcXZcXZcXZfBJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaYyxkVggApuLjnXahtjpFjqdakLjqwaYyjrEjrSivHjsGavujvljwxaTKaTKaGCakMaGDjwTjyCaGFjzfaQeaGIaGJakNaGKakOaGLaGMaGNaGOaOPaGQaGRaGSaGTaGUakPaGVjzVtkHtkHaGXtkHtkHtkHtkHsyUsyUsFMaHbsyUaaaaaaaaabgqbgqaHeckyamEamEjAhjARjAYjDijDijDsjEcjEmjEnjHajHnjHHjHOjIMjIMjJfjJijKujKuiFyiJTenGenGaaaaaaaaaaWbjLajMajMOaGgjMYjPijRrjRWjSijUwjUxjXajXgjXUjYjjZykaMkdqkdqkdqkdLkeQkfJkfYkgikhrifdkhWkjbklKkmjknEknEknEknEiihkotkowkoFijckpxkqpcXZkrHkrZksekttkuxkvqkwykzzeTfaaaaaawxwaaaaaaaaacuRaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaDrbiXaDrbiXaDrbiXaDrbiXaDrbiXaDrbiXaafaafbrTbcnbrTbrTbrTbrTbrTbcnaltkzAbrTanXkzXivHkAhavukAokAwaTKkBXaLsaIdaLwaluaIfaLxkCeaQeaIjaIkkDdalvaImkDjaIoaGNdJJaOPkEpaLJaIsaItalxalyaJWaIvtkHalzkGfaIxaIxalBtkHajEvxjsFMaIAaLSaaaaaaaaabgqalIikGamEaIEalKalLkHEkItkIIkJgkKpkKFkLlkLokLBbUdkLDkLGkLWkMjkMwkOMeoKkPrcktohVkPKenGaaaaaaaaacsakPLcuEkQGaGgkQHkQVkRukSskSukSMkThkTokTtkTwiVxkTTkUDkVvkVFkVvkVLkgikXmkYAkZvlasifdlbdlbolbIlbWlbXlceknElciiihldXlfalfqijclgjlgmcXZlhGliqljuljuljuliqliqljUecyaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaagwWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabhDbhEaEBbhEaEBbhEaEBbhEaEBbhEaEBbhEbnGbhFalOxfbalSlkialPbnNalPlksamulkAllbanXllkllHlnqlnslnNloxaTKlpdaLsaLtaJDlsmaJEaLxlsHaQeaJHaJIaJJaJKaJLltXaJNluvaJPaJQluYlxRlxXlybaJVamwaJWlyBaJYlzdlAhamxamyamztkHaaWatZsFMaKdaLSaaaaaaaKgaKgamCaFFamEaKhamFaQwlAvlFNlAvlAvblubmXlIClJslKaaXBaUhaXBlLjaXBaXBaXBlMnkOQjKuhadlMwasVasVaaaaaacsakPLlOwcAKaGglOWlPqlPIkSslQmaGgaGgcuTlRGcuTifdifdlRJlTBlUplUZkVLkgilXKlYOmaCmaUifdmblmbymbGmbHlbXmcsknEmdqiihmgbmgOmifijcmijcBgcXZmiQmiSmlFmmammqmmEmnfljUcXZaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaRwaJtaJtaJtaJtaJtaJtaJtaJtaJtaJtaJtbnGwScamPmnKfPUqcnokhfPUqcnbqcaMTmoumoGanXmoHmqafIXavugewmqZaTKmssaLsaLwaLuaLvaLwaLxmutaQeaiRaLBaLCamRaLDaLEaLFaLGaLHanAmuMaLJaNsaLOaLMaLMaLNmuOtkHmvCanEmyqmzamzGtkHaaWvxjaNvarEaLSaaaaaaaKgmAZanJaLTanKanLaQwaQwmBHmDMmDZaQwmEpbmXbmXmEJaXBaXBmESaSymFYmHYmKmaXBaXBmKomKrmKsmKxmMDasVaaaaaacsamNfmNtmNUaGgmOomPDmPDmQgmRDkThmRMmSDmUimVemVkiVxmWimWRmWRmWRmXomXKmXKmYKmYLmXKmYUmZGnaknaCnaXknEknEknEnbkiihncmncvnevijcngbjjVcXZcXZcXZcXZcXZcXZcXZcXZcXZcXZngtngtaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaaaDrbiXaDrbiXaDrbiXaDrbiXaDrbiXaDrbiXaaganSaMRanTaPOaOtiiAaPOaOtijznhcaMSanWanXaIaaRNaIaavuaMVnhEaTKniKaMYaNbaNaaLvaNbbernkIaQenkNnnNnojnornoZnpfaGMaDVaOPaOPaGQaGRnpgaNsaNsaNsaNsaNttkHaoBtkHaoGtkHtkHtkHsyUaPcaNvaNwsyUaaaaaabgqnqKaoKaoLaoMaoOlAvaSqnrmntHnuHaQwnyynyynAIaZCaXBnDknDAnDHnDSnEhnEonFaaXBnFEnGHnHJmKxnITenGaaaaaaaWbnKEnKRaWbaGgnMnnNEnPcnPcnPXnRdnSdnSenSwnSJnTbnTFnUhnVxnVxnVxnWLnWNnXlnYunYUnZqmYUnZxnZynZMobfiihobpobIoctiihoevofvohFijcngbjjVoiAojjojkokuokZxpfomuondooQdqropMoqzoqzopMopMopMopMopMaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaabhDbhEaEBbhEaEBbhEaEBbhEaEBbhEaEBbhEbnGbiZbrToqZaPOaOtaOraPOmfebqcaoRaTBaTBaTBaTBaTBaTBaTBorqosgaTKaOCaODaOEaOFaoSaOGaTTaPYaQeaQeaoUaQeaoVaOLaQeaONaOOaOPaoWaoXaOQaORaOSaShapcaOUaOVtkHaOXtkHapytkHaPaapzpmJvxjaPbaPcsyUaaaaaabgqapGapIapJaQvapKapLapNapOotsouoouAouTovwowyowOaXBoxEoxNoxOoySozloBhoByaXBoBXoChapRoCLoFMenGaaaaaaaWboGboHEoHPaGgaGgoIsoIXoJioJokThoKdoOzoOBoQjoQzoRMoSroTPoUCoVkoVEnWNoVWoWKoWWoYzmYUiihoZLiihiihiihiihiihiihiihijcijcijcijcoZNpbboiApcGpdwpesokZpfJpfTrevrevuoFopMpfYpgNpgXopMphophAopMopMaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXaafaafaafaafbhDbiYbnFbiYbnFbiYbnFbiYbnFbiYbnFbiYbnGbnHbrTaPKaPOaPPaPNaPOaPPbqcapWaTBaPSaPTaPUaPVaqxaTBmqhpiEaPYaPYaPYaPYaPYaPYaPYaPYaPYaQdaQeaQeaQeaQeaQeaQeaQhaQfaQgaqFaQhaQoaQoaQoaQoaQoaQoaQoaQraQraQraQrtkHaQtaQusyUaqIpjTaqJsyUaaaaaabgqaqNasQaqPplkaqQaQwaQwaQwaQwaQwaQwplLbdhbdhpmdaXBaXBaXBpmhaXBaQBaSyaqVaXBpmooChaqYoCLpnBenGaaaaaaaWbpoCppWpqGpruaGgaGgaGgaGgaGgaGgpsRpuypuYpuypsRifdifdifdifdifdifdmYUpvHpwYpwYpxcmYUpyRpyRpyRpzWpAGpAQpBmpBrpBwpDhpDocuTpEjpEFpFHpGBpHxpImpISokZsqIpMvpMvpNavLwopMpNfpOhpODoqzpOMpOhpPcopMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaaaRwbpNaRwbpNaRwbpNaRwbpNaRwbpNaRwbpNaafaTsbrTpPUaRzpRGpTKpTRtgjbqcaYEpVGpWnpWrpWHkMiaRKaRLmqhpXipXHpZYaRQaRRaScaSdaSdaSdaSdaScaSdaSdaSdaSbqaCbeqarbqbwarCarCaSesyUaSgaSgqbZarEaSiaSjaSlaSlaSmbcVsyUqevsyUsyUvxjaNvbcYsyUaaaaaaaKgqjZasQaFFqkBaUcaSCqkKqkTqmcqmtqmDqmXaPuaPuqnAaPuaPuaPuqomaXBaSyqoIqoXaXBarKbzBhadoCLvadasVaaaaaaaWbqpOqqAqqJqqJqtDqtOcuEqtYquzaWbqxaqxpqxUqxpqygaWiqyXqzuqzHqAaqAymYUmYUqAWqBemYUmYUqBgqCZqDVqEtqFBqGwqHWqJkqHWqMIqOTcuTqPzqQvhJCqSAqSSqTxqUookZjqutUAtUAqQJvhyopMqVRqXPqYeqYOqZdqZeqZTraZrbyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaabrTarXtHqrbUaTtaTurcGbqcrcVaTBaTBaTBaTBbaJaTBaTCbGhbfVaYJaYJaTHaTIbxqbxqbxqbxqbxqbxqbxqbeqbeqbeqasaaTSreHaTRrgnrhjascrisbbmasdaTWbbmbbmbbmaTWaTXaTXaTXaTXaTYaTXaTXaTXriGasKsyUbgqbgqaKgrkpasQbJYrkSasRbIqbdcbdcrkXqmtbddbmXbmXbmXbmXbmXbmXbmXbddaUhaUnaUmasSaXBrlrasUrmdrmMrnxasVbycbycaWbroJroScDWcCHcCIrpYrsMrtrcuErtAruNrvurxIrzkruNrzurzKrAmrAKrBrrBvrByrCTrDGrEqrEJrEJrFOpzWpzWpzWpzWpzWpzWpzWrJBqMIrMhcuTrMMrOXrPKoiArQurQxrRgokZpixaIgrRkrRDmFkopMrSdrTrrUAopMoqzrWsoqzopMopMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaabcnbrTbcpbcpbrTatHmsXaUTaRErXgaUVaUWaUXaUYatIaUZbcybaXbaYrYBrZArZGsaJbxqbGlbGlbGlbGlbGlaVjbcKscTbeqsdqaVnsdAsdEbcMseIbcKsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUsyUatPaukaulaumaKgseObcZcbJsfiaXsbIqbIqsfvsfIqmtsfUbmXbdgbdgbdgbdgbdgbmXsgaaXBaXBaXBaXBaXBautbdojYZaBFauvbzWvNrsgxblxshBadgaWbaWbaWbaWbaWbaWbaWbaWbaWfaJnshUaWeaWfaWiaWiaWisiqaWiaWiaWiaWiskBsozrEJsoWspxsqdsqlsqlsqlsqlsqlpzWrJBsrUooTcuTssPcuTcuToiAoiAoiAoiAokZjnLdqropMopMopMopMssWrTrstbstpstrstHsxhsyJopMopMaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafauDbrTavcbaAaWFaWGbawaWIaWJaWKsyMaWLaWMaveszTsAdaWOaWPsAgsAHsCgaYJsCEsDcbxqbGlbGlbGlbGlbGlaWZaXasDgaXraXjaXesGravhbbbaXnsHnaXkavhaXmaXnaXoaXpsIkaXqavfavgsIsavhbcMavjavkaXrsJIavlsKGavmsKTavnayLayLsLSsMtsNgaXubIqqmtqmtqmtplLbmXbdgbdgbdgbdgbdgbmXbddbmXaXIsOCaXBavpavqavrvPZhzyhzyavSsOZaXJaXKsPisPZsSisSlsUhaXUaXVsUtsWibflaXUaXVaXYaXXsWJsXoavTsXGaXXsZgtaMtaUtceskBtdmtdqtdJtfitftsqlsqlsqlsqlsqlpzWtfvsrUtfFtfGtgbtgdooTthhtiTtiZtoqoljtostoUopMtpHttqopMtuItwhtwotwotwotyLpOhtyZtzPoqzaaaaaawxwaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYAawitAttBztBOawjawlaYBaYCtDntEPaYDtFJtNatPAaYFbcypPdtQhaYJaYJaYKbeqbxqbGlbGlbGlbGlbGltQntRmtVatYjtYYaZgtZCtZJuaftZJuayaZgaZgaZcaZgaZeawUaZgaZgaZhawVuaWawWaZjawXawYaZkubUawZaZmaxbaZmaZmaZmaZmaZmaZnabdaZxmEJucmuePaPuueTbmXbdgbdgbdgbdgbdgbmXaQWaZCaZDaZEaZFaxoaxpaZGazHazHazHazHazHaZHaxuaZIueZufgufkaZWaZSaZWaZWuflaZQaZWaZSaxvaZWaZUaZWaZWugDaZWaZWuhfuhsufluhVuhWuiIukVuoPuppsqlsqlsqlsqlsqlpzWuqguqPuqRutGutJutZuwjuxiuxruxtuxZuzIuADuAZuCruDMuEcuEFuETuHcuHzuIbuJruMnuNhpOhuNiuRkaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaaabrTbazbaAbaDbaBaylbaCuVNbaEsyMaymbaGbaHbaIuWbbaKbaLaYJaYJaYJbaOuZxvaLbxqbGlbGlbGlbGlbGlbaUbaVvbqaXrvcovcvbaZbGgbbbbbcbbdbbebGgvcNayqbbhbbibGgvddvfnvfzvhBayAbboayBayCbbpvhSayDayEayGayHbbqayLayLbbraUkbbtbdbbmXayMviXbdhbdhbmXbdgbdgbdgbdgbdgbmXayNazmaZCbjJbmXvjMvjZvmblGRhzyhzyvoEvpHazpeaebynxMrsSisSlsUtvqBsUtsUtvrhvrrbbMazqaUyazrbbNvtubbPvtOvrhvtuvuUvvJvxevyAtdmtdqvApvAwvASsqlsqlsqlsqlsqlpzWvAYvBPooTvDlvDVvFVooTvHdvIjvICvIDvIXvJqvJSopMvKXvLropMvMltyLvOYpOhvPjrTrpOhvPrvRGoqzaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaabcnbrTbcpbcpbrTaAHbcrbcsbqcbcuaUVbcvbcwbkLvRHbcxvSRaCgvUvaAKbnWvUQbcBbxqbGlbGlbGlbGlbGlaVjvUVbcHbeqbeqaAQbcKbcLbcMaARvVPbJFbJFbJFbJFbJFbJFbzybzybcSvVQbzyaATaAUvVVwagwbBcbxwctaukaAVweKaKgwflbcZaXsaAWaVGaKgbmXbddbIlbImwfVbmXbdgbdgbdgbdgbdgboYboYbdkboYboYboYboYbdnbdoautaBFwiEbzWwkibdqblxbdshIEhIEhIEbeZwkFbhjbhjbhjbhjbhjbdAbhjbhjbhjbhjbhjbhjwlgwomwpqvvJwqqaWfwqLrEJwrfaWfsqdsqlsqlsqlsqlsqlpzWwrnrJBooTwrywsBwufwuHwuHwuHwuHwuHwxMwuHwuHopMopMopMopMwzjwzwwzPwAGwAMwANwBlwCBopMopMaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaabrTwCIbdYaCbaCeaUSwCUbqcwDmbsebsebecbsewERbsebseaCgbnWbnWwFhbeiwFMbxqbxqbxqbxqbxqbxqbxqbeqbeqbeqbgbaChahbaCiwFYwKNahbwLhwLiwLnaCjbetaCkwMOaClwNaaCmaCobzyaCqlLlaCqwNHwPDaDHcbxbgqbgqbzLbezblpboIbeCwRtbluwRCwSUbmYbmYbmYbiibiiaCtbeKbeLbzLboYbeObePbeQaCuwSZboYbeTaCvavsaCwwUNbzWbycbychIEaDaaDcbeXbeYaDdaDdbfabfbbfcwVawVwbfcwWdbfhwWWwYqxaYxbVxchxcQxdXxeFxeTxeVxhMxhMxhMxiEpzWpzWpzWpzWpzWpzWpzWqHWxiXxkSwryxkYxnjxomxqfxtextRxuyxuMxvtxvwxwaxwrxwTopMxxerTrxygopMoqzxzsoqzopMopMaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaaaDrbiXaDrbiXaDrbiXaDrbiXaDrbiXaDrbiXaafbfNbrTbkKfPUbAwaDuaDwbfObnPaDxaDyaDzaDAaDBxCrbfQbseaDCbfSbkVxCzxDlxEAbfYbfYbfYaDDaDEbgaxEJbgbbgcbgbbgbbeqbgfbgfbgfbgfbgfbJFbgjbgkbglbgmaDFbzyxEQbgoaDGbgpbzybgrxHGmypwNHxIfaDHcbxaaaaaabzLaVVblpbgIbvNbvZblubgAbgBbmYxIBbgEbgFbgGbgIbgHbgIxKTbgKbgLbgMxLDaDKaVxboYbgQbgRbbFaDLaEfbzWaaaaaahIEbgUaEibwRhIEbgWxLTbhjaEkbgZbhabhbbhcbhdbhebhfbhgbhhbhibhjbAixPexPXxPXxTXxhMxZurJBydnqHWqHWqJkqHWqHWqHWydHyeNrJBygzwryygDyiwxomyiXykLyltuwSeBZoIcjgxlWRefBrmyopMlrGlAWosHoqzwvDpCRvlzopMaaaaaaaaaaaaaagcuRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXaafaafaafaafbhDbhEaEBbhEaEBbhEaEBbhEaEBbhEaEBbhEbnGbhFbrTilkbhHaEFaEGbhHbhIooCbhJbsebhLbhMbhNuACaEIbseepnaEJbkWaLXoEknajnHeaEKrLsbhPbhPbudfubbudfzkfzkbudbzjbzjlnfuSTlnfbzjbzjbujbujbujbujbujbujiKMpyNdUHbzybzyoDggjJgDIwNHbDQaDHcbxaaaaaabDrbidbieuhObvNaEPbluaERaESaETdEZbihaEUpIsaEVbsMbgIbjRaFHbikaFJbjTaFKpbiboYbinbgRsrFaFNaFObycaaaaaahIEbiraPkaPkaPkaFTcVsaPkaPkbivbivbivbuNbtiaFWbtibtibtibtiaGdbwBpXXdoRwDybwBeCWeCWeCWeCWeCWeCWeCWjpXjpXjpXjpXrElrElrElrElkaywTKxomnSoyltuAFjElfdKhjHjoHpUsnHioTSopMttxvPjpQDoqzpOMpOhaVdopMaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaabhDbiYbnFbiYbnFbiYbnFbiYbnFbiYbnFbiYbnGbiZbrTwjPbjcbjfbnMbjelkClkDbjhbsebsebsebsebsebsebsejUvnCCbkWsqJmtCftzbkWaIJkisaGzaGAbudfdEbudoCjbudbudlVXeEQsGGbMwsGGktKgQvnWHaHkbjCyetaHlbujyijiKgbQOrVsbzytBEekLxPRwNHvGJaDHcbxaaaaaabDrbjGeGObjHbjIjYCblubjLbjMbmYihHbjPaHobjQaHpaHqbgIrIAhRraHsbjSbjTaHwkstboYpxsbgRtYlaHxaHybycaaaaaahIEbpqaPkxGZbkcaHBbkaeFjaHDwdxbkdbkebuNbkfbkkbkhbkibkjggVbklbrbaNIkzpeMVnwcufJkXdsSpnxRseXmCfmEBvRUtHWijRaqljORvInlvyhzOpbhmTyxombsxodigDFtJZrwmdqpvcYlodrZKgdIopMwTpnCUlnxopMphoknPopMopMaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaRwbpNaRwbpNaRwbpNaRwbpNaRwbpNaRwbpNaaganSaHZfshbkMbkPbkObkMpIGeHKszJbnRbnQbrTbxqbfSbkTbkVbkVaIHbkWtRZbkYaIIbkWaIJkRRbhPaIMbudjMehDIqxkqlcpFEdxRbYDbYDbYDgYluHPetAnWHblhaINmnBaIPbujlXuaVbhhwrVsbzywNHwNHwNHwNHcbxaDHcbxaaaaaabDrbloblplGmblrpnYbluipqaIRbmYdBKxGqklRbgGaITjgGaIVrIAaIWmTvblwdUcaIXbPMboYblBxwyesmxJablDbycaaaaaahIEbgUaPknNLpvDaKHppcgSnbrafmadxhtuXbtiaIYblNsACdlBbtqxbqblRblSblTblUnrgrXRwKQcVHpjGfEipjGgjlmEBhPZtAAxndaqlmjwoSvhlNhzOoqYuVgxomxomxomxomxomxomxomxomxomwuHwecopMfFxoqzopMopMopMopMopMaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaDraJtaJtaJtaJtaJtaJtaJtaJqaJtaJtaJtbnGbmlbpPaJvbmmbnOtdPaJwbnOfxlscvscvbmtbrTbxqbmwbnWbtYbtYbmAbtYbkWaJxbmDbkWfZrxSpdbKeRmbudwhhgpIkDyoderhmhQYbYDbYDbRGfSQbonooYbujaJBaKieqBaKjbujbzybzydyKbzybzybqybqyqkRbqycbxaDHczaaaaaaabzLaVVblpxjGaKnwJebmXbmXaKobmYdBKbmZaKrbgGbgIbjIbgIbnaboYaKzaKAaKBaKCboYboYyflrwlbnebnflkLbzWaaaaaabXrbgUaPkaKGcTbaKHaKJaKKbrajwDbnltHkbtifRKblNaKMaKNbnoaKOaKPaKQlPnbrgumIxftnSFveirHHxLtrHHuMyeSwccjeNUvGdaqliZIoMghIRhzOmpxnyOhnGikXiOSjjHaAuqoZmAUxffttQnFFlYKnhdhXoaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabhDbiYbnFbiYbnFbiYbnFbiYbnFbiYbnFbiYbnGbnHbrTbrTbwZekToNJbnNoNJpAzhrzhrzbnSbrTbxqbmwbnWbtYbnYjPgbnZbkWbkWaLXbkWcpWjYppssfdObudfFhgckiOAxYNydmoVchqUbqobqobombonbooaLYbopbqqgNbbuBbujwcFbouaLZnGqbowbqylrEijUdPicbxaDHczaaaaaaabzLbzLboHbgIbsMpMytIvbmXaMcbmYbmYbmYbmYaMiboZboUboZboVboYboYboLboYboYboYvQXboPbsUbbFbgSbzWbzWaaaaaabXrbpqaPkaPkbpabpbbpcjDwbraaMmaMnbpfbtibphbpibpkbpkaMobplbpmbpngADaMpeMVdNIwKQcpTyhvtpygFHeXseCWwXxmTVcEHaqlrPrfsCvxBhzOjSLslmhlCdTGxjTjjHveJpVZsPyjjHjjHnFFaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaawWXaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaaaRwbpNaRwbpNaRwbpNaRwbpNaRwbpNaRwbpNaafaafaafbcnbrTbrTbrTbrTbrTbrTbrTbrTbrTbrTbxqjowbeqbtYaMNjPgbqebGnbGnaMPbGnbGniHFejlhoabudtSmbudeXqkFYbudbqlbqmbqnbqnkoDeVwvIBnWHbqrczxfIOuFrbujwcFoEbbqubqznGqbLCbqylrEbsDcbxaDHczaaaaaaaaaabDrbqDbqEbsMbEVgPAbqItdvgmppzfgDgklOaMQaNzbvNbqQaMQxRopluwCQhGdjLIkfInZYwkGbsUbsVbFabycaaaaaaaaabXrbgUmcwaPkgCTaNBaNCbDGbraaNDaNEaNDbtibrcblNaNGbrdaNHrfdbrebrfaNIdayeMVjncwKQiefrHHuSorHHhCXeCWogHwZhrraaqldeQkCxsHKhzOopUfnGiJPpzipkKegbmFNhYUmAUgyDcXznFFaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabCEbrShutbrUbCDbrWbyYbrYbrZbsabsbpMFbtYaOgquDbsdbGnaOhaOidWebGnaOjvvpbGnbudpzFbudmoljcdbudbLsbGtbsnbsnbspwsVbLsbujbvFbssuahbstbujbzvbzvbzvpqwbzvnGqnGqnGqbsDcbxaDHcbxaaaaaaaaabDrbDraQQbqEbsMbsMbsNaOkaOmaOmaOnaOobsOaPdjMSbzObsObsPaPfbsQbsQbsRbsSbsUbsUbsVbyabycbycaaaaaaaaahIEbgUaPjaPkaPkaPmaPnhwJbrabsobAcbthbtibtjbtkbbEvUdwhvizxjPhnbAtpXaXfavHhBMeCWdYScUxkeYljhlwAeCWuOLuhEhPSaqlfSboPydPWhzOuVTsZjrTwgWfohtjjHhaivIbxpbnFFnFFnFFaafaafaafcuRaafaabaafwWXaafaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabCEbtObAxbCCaQHbtQbCEbCEbZibdRbtVknzbtYbtYbtYbtYbGniDzqkXrHmjUJaQIwKgmyXjGKnZEgRPvXheHYbudbxvcZybufbugbuhaQJhhQbujnWHaQMnWHaQNbujbukaQObumriibzvcbxcbxfFvcbxcbxbNgcbxaaaaaaaaaaaabDrbDraQQbqEbgIbuwbuxbuybuybqEaQVaRaaQYbvNbuzaRabuAbsVlVdlVdaRcbzJbbFbsVbyabycbycaaaaaaaaaaaahIEbgUfFAbKkmQYbuJaRgaRhorfaRibuKdgMbtibtibtibtibuMbuLbuMbuNdoRkCpdoRvpDdoReCWmEBmEBmJBfsneCWeCWqxsngihyqaqlhzOwddhzOhzOuVTsZjrTwhaOrxDjjHxgDjgtpLCnFFaaaaaaaaaaaaaaaaagaaaaaaaaaxkalvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabCCpGfbCCbvkbvlaSJbCEaSKbvnbxjaSLjCRbxlbxmozLvbDbGnxpvaSQhPVwqaaSRiCBpoglYjvgubGnbvrpOWqiqbvubvvvnqbCUbvxbvybvzbvAbvBbvCbvDbvEbzvbvGbvHaSTbvIbzvaSUbxIbvLnvebGLaSVcbxaaaaaaaaaaaaaaabDrbDrbvVbvUbvVbvWbxQbvWbxQbxQbwabvZbvNbvZbwabwebwebwdgsXbwebwdbwgbwdbycbycaaaaaaaaaaaaaaahIEbwlupAbKketsbwobwpbwqrYkbwsaTepMIbwubwznSChuawrzxhhpMIbyvmnuwTXwXcnqlmhLccKoZUtlxivelMfwMLgDCxIpshQlQCwNwkkeelCwmEqLqwvScURgrMiVkhzqjjHjjHoqSjjHnFFaaaaaaaaaaaaaaaaagaaaaaaaaaxkaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagwWXaafaafaafwWXaagaagaagaagaafaagwWXaaaaaaaaabCCbxbbxcbxdbxebxfbxgbxhbxioPJaUKecTbxlbxmozLbxnbGndyXbzhevajwKbxrwcoqKCmOuvncxljaUMiiGbEJaUNaUObEJbEJaUPeSJgklbVAwdcbxAaVybxBpXvbxDnQkaVJqoNgkYaSUaVLbftbaqnGqaVUcbxaaaaaaaaawxwaaaaaabDrbDrbzLaVVbxPdBFbxReLsaVVqBYbvZbvNbvZbkRlkLbxXbxYbxZhIKlkLbzWbycbycaaaaaawxwaaaaaaaaahIEbygtfwbKkmQYaWjbyjbyktpubympfBbyubypbyqbyrbysbytbysbyumLKjKadqFotOvZcgIcinEfdLfdLphgfoGfAlnbypXrlUrhSQlUrkPHlUrthuidTsRLlRDrLHuZcjxNgukhBXoKufWSqNEaaaaaawxwaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXaafaafaaaaaaaaabCEbyVbyWbyXjdcsbZbCEbzboXNbzcaXNlaQbzdbzebzdbzfbGngSJbbKhPVbGmbGnpWUsQmqskoTeaXQaXRbzmbCUbznbCUbCUbCUbzmbzpbQzbQzbQzbQzbQzbQzwtPbztaYdaYebzubzvaSUaVLbzxaYfbEPbEPbEPbEPbEPaaaaaaaaaaaaaaaaaabzLbzLbDrbDrbDrbzLbzLbzLaYlbzMbzNbzLbzWbzWbycbycbycbzWbzWaaaaaaaaaaaaaaaaaabFhbFhbFhbFheAfbBHbBHaYqbGZbBHhffbHhqwBbHhbILbKnbKutxIsKvtxIbKubKubKubAjbFvencbKubKFnCHwumugCwumbKFbObbObbObbObbObbObbMWlNSiOWwzVmcodThwlfolrgukpVeaZfjFLeYraaaaaaaaaaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaagaafaafaafxzmjpGbCEdHUrhXbajbCEbzbpCOmywbakuohbAzuJqbAAqEGbGniDzbbKbCKlTybAGygsygsjimnylbGnbambAPbCUbAMbAObAObAObAPbAQbQzbOQbOQbOQbOQbOQbDbidIidIbapidIcbxcbxcbxbBcbaqbEPoTZbbRxUnbEPbEPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDrbBpbbTbBqbBrbBsbDraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFhbFhvVhjcibFhbBCbGZqyabBFbBGbBHwpHraNmZebKsbBLbILbBNbKtbMcbBQbBRbKubQNuGjbVaifwgeIbKFhVNpMZapPvqvilrbObsTbxVJycmlvFbObhdIvUfvUfmWHkTRkwYlIkowQljEmOrrynvGpgroaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaakYNbCEbCCbCCbCEbCEbZitCRtCRbZitZibCFbZibZiqEGbGnbdNbdOxAQbdPqmnqmnqmnomqviNbGnbCPbCUbCUbdQbdSbCUbCUbCUbfmbCVbOQbOQbOQbOQbOQbDbbDcbfobfpidIbfrbfscbxbftbfubfvbfxbfxhmDpwVbEPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDrbDnbDobfAbDpbDqbDraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFhigHhcPsRNbFhrtPbGZjkgsQNwuXbBHsupbDHbfDwKfbDJbDKbDLfNBbIObDOxxUtxIgDAbfWbDTbDUbDVrKmbWtbfEoJWqAAoRXqrIthFmjRmfBgQTbObkUtncQwAwiXogRLpcHdVMfYwgukfuUvXBeKBeYraaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaabZibEtjkoeHibZiqEGbGnbhsiqjbEwbExbEysxusbUxVdefzajebGsbEEbCUbCUptEptEptEbCUoNrjlQbOQbOQbOQbOQbOQbDblMAbhwtnaidIhwRnGqddfbhxrDibEPvKAbhydydwCTbEPcbxcbxcbxcbxczaczaczacbxcbxcbxcbxcbxbEWbiwbBqcEXbEWhIEhIEhIEhIEhIEbXrbXrbXrhIEhIEhIEhIEbFhxNubSdbixbFhbFibGZbFjbFkbizbBHbFmbFnbiBbFobiCbILbFqwXZhHjbIPrsKbFvgDAeqDbFybVcajfvHebVbjEjbFDsazpOebOblZVdCIlhcxdwbObuLmnZDiSSksdifDulXoqYshyguklRylTwuOHqNEaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaabZioyAsZCtnObZiuvqbGncKsbGnaOjbGnbGnbGnbGnbGnbGnbGnbLsxhfbLsbLsbkobGwbkpbGxbLubGzbOQbOQbOQbOQbOQbDbeXFbGGdKVidIbGIvZTcbxbZkbkrbEPbEPbEPbEPbEPbEPeiaaaibGLbBdbGPbGNbktbGPbGPbGPbGPbGPbGRbkwpdabkxbKgbGSbGSbkzbGSbGSfurohPbkBhIEeHauTAbkCbFhbkEbSdbkGbFhbTubGZbGZbIHbGZbBHbHdbHefRSbHfbHgbHhbkJpMHbHomOZrsKtxIqWbjPUbHobkZbHpbHqbHrbHsbHtbAkbHubObnIdcriqsKgjrbObfZUfZUfZUfZUfZUfZUsRDuzXqNEqNEqNEqNEqNEaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaawxwaafaaaaaaaaaaaabZibHObHObZibZitXVbHLeVzbHLssObHPbHQxNVgTxgTxpbPbHLbHVbHVbHVbLsbLsbLsbLsbHZsBvbQzbOQbOQbOQbOQbOQbDbidIxBQidIidIcbxcbxcbxbmkbmGbmHbGLbmJwuuceTbGLaSVnGqnGqcAqtqMumpbInwcFbIptqMbIrbIucbxbItbmPrtThIEbIxbpjbIxbIybIzbIAbmQbIBbICbmTaakbnkbFhbFhuKebFhbFhqkkhIEbKkgaLbnqbKnbIJbnrbnsnZAbnubILbIMbcRoewxaDbIQbKugcchdjbISbPKbITbKFshDbnwescllveLHbObkccdCIjKMreJbObcSCuOApDgmkWhftfZUhXYxOewryaaaaaaaaaaaaaaaaaaaaacuRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaagaagaafaafaaawWXaafcuRaagaagaaaaaaaaalCWqxfbDEfxZbZixgqvDJqxnsdbfEEhMMbpsbQqbMUbptbMSbJGbQubQubQubJJqPwqPwbLsbLsbLsbQzbQzbQzbQzbQzbQzbQzbHVbJRbHVbHLgLqbHLrDubNgnGqcAqbpybpzbZkbpBnGqclgbpDcNVclgclgclgclgclgclgclgclgclgclgbKbbpEtSDhIEnBrhIEbKfbtwhIEbtwmenbKhbpFfONbpGbpHbpIbQKsLVrIdrIdbIdumZbEFbLVebAbKnbKnbKnbKnbKnbKnbKnbKubKubKubKubKubKubSueNzbNVxRabSubKFbKFbKFbKFbKFbKFbObrOOdCIwerhcgbObaDvcXdaFAfdBfJFfZUeXpuZrwryaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKYaafaafaafaafaaaaaaaaabZibZibQeaalbLrbLgbLhbLibLjbLmbLmbLmfDDqcmbLobLrbLqbLrqjHbLhicBbLrbLrbLrbLrbLrbLrbLreRdgeofgJorPbrKbrLoxgbrMbsfbLCcrpcrpcrpcrpcrpbsGclgbtlbtrbtspftclgbLJbttbPdbLHbLIdwxclgbLKeBmciuhIEbLNbwRbIxbLPbtwhIEbtyuaDhIEhIEhIEbwRhIEhIEhIEhIEhIEhIErHNbLUbLNbLWbLXbLYbLZbtEbtEbTzbSmbMbbtUbtHbPGlUXbNVbtJpUXbNMbtLbMfbNVvmRbPGbtHbtUbMhbObjXweOllnJpQobObeybnYHoKTiXvmtifZUxaTxEjwryaaaaaaaaacuRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaabZibZitCRtCRtCRbZibZibZitCRtCRtCRbZibZibZibZibZibZibZibZibMSbMUbMUuCDgTxbMUbMUbMUbMUbMUbNbbZibZibZibZisExbNgnGqcrpeZSwuKjaCfggbwGclgbwIbNibNjbwJbNwbNoiEethHbwKbNpnIXclgbwLoEUcgyhIEbwRbNnfMCbLNbNvhIEobRbwShIEbwPhIEbwRbwShIEbwSjtMqeIbwRbwRbNBbNCbNDbNEbNFbNGbNHaSPbNJbSmbNLbNMbNYbNXbNObNVbNQbNRbNSbNTbNUbNVbNWbNXbNYbNMbOabObbObbObbObbObbObfZUtbLuautbLfZUfZUmdjueMhBoaafaafaafcuRaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabZibZikgkxlOopgcZSqYNdmtxPZmSixyVbZibZiaaaaaaaaaczabBebPbbBvbCdlXnbCebCfbCgclgbCibCjnMmopoclgbNucPgsIQbPjbPgbClclgbCnrDCbCohIEhIEhIEhIEhIEhIEhIEbCrcFIcFIcFIcFIbCucFIcFIcFIcFIcFIxXHbwRbPpbPtbPsbPsbPtbPujlDbNZbPxbPybPzbCMbDdbPAxYsbPCrfQeLfbUYrfQrfQbPCbUYhBgvqArfQrfQeMmsoyebwwVMfekmffgVmwupvORjVIoqhfgLwCltMoxDiaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagwWXaafaagaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaabZibZibZitCRtCRtCRtCRtCRbZibZibZiaaaaaaaaaaaaczacbknGqcrpgKxbFWlSAbFXbFYclgclgclgclgclgclgbGKbQHhUTxdpxdpejkclghpCoEUkiGcbQpuxtXmbHvbHwbHxufAbHycFIbHzfSkbHAsfDtvhghojSonRCcFIcFIhIEbQMaVFpPnbTybQPbXsbXseKebKkbSmkDKbHCjQoqvraMgekqbQZjzAbHDbQYbQZbRabRbbHEbHFxFCiuAcVIrYPwbcsnunqYvDTxBkskplIYocexBkuXTvvdcdeibYaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXaagaagaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaawxwaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaatEKaaaaaaaaaaaaaaasExbMjnGqcrpcrpcrpcrpoAVcrpcrpbMlcrpbMnbMobMpnwsbOcbOdjVLbRUcrqcuUbRXoEUbOecbQbOgbOlbOlbOlbOlbOlbOmbOnbPIibQeqRbPNocwibQibQxeurwevXgaDcvSLbPPbSfrMYbShbTzbXrbXrbTzbSmbSmcpNbSobSqbSpbSqbSufVjbStrCxbSubSxwQRbSxxTWbSxjybnvrjybjybnDNdrJevMdrJwmjrEbbsCrEbhBoxeHsrtxDiaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaagwWXaagaagcuRwWXwWXaagaagaagaagaafaabaaaaafwWXaagaagaagaagwWXaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaasExbThnGqckqcrpbTkszkfhUffBlNmkOlbVmcljjVLchWbVrxGnbVwcrqbTlcrqcuUbTonwlbWdcbQbWubWzkhabWAbWEbXqiZVbXCnIWbXEnYzbTqmTOorBwJakgGsbjcFIbTvbTwuZIbTxbTxbTzaaaaaaaafaaaaaacpNbTGbTHbXFbTIbTJbTObTObTMbTObTOeEjbTQbTRbTSflLjybgPchWOoktnDNwlslUCwUpwmjpOQsibmrehBoibYxDihBoaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaasExcbknGqbUxcrpbUzcmFqeJlpokwCcbAcbFlROcYhcbBccijHmqgmbUBqPUpDFccUccQccljbNdbgeZtkffccnccoccoccWccrcFInjGnjGnjGjtCnjGnjGjtCnjGnjGcFIcFIcfhuZIqgbfidbUMaaaaaaaafaaaaaacpNbUSbUTcctccubUUcfQtyebUXjYrbWrizwpRAwChbVdjlujybuTuwhbrSHnDNlUAstGojPwmjvxFgEjkzsaanaaaaaaaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcuRwWXaagaafaaaaaaaaaaagaagaagaaaaaaaaaaaaaaasExceHvENceIcrpceKhDewqcoyigiYuqjdwYbVNjVLchWceMceNsYgcePbVObVPwtMajmcuVbVTceQtehcrtceStqHcaLbVVcaNnjGvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOnjGcfhuZIaaaaaaaaaaaaaaaaafaaaaaacpNbWlcfOcfPbWmbWncfQxQybWpbWqbWrihonazuhFstujZpjybkmixDMqwsnDNvdarINqtnwmjrKnavIsUzaanaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaaaaaasExclhnGqbWJcrpbWLcmFgWLpGsqQLkOldwYbWNjVLchWlRFchXcrqbWQchYbWRmorajncaFbWUcbQchZbWWpSehsPbWZbXabXbnjGvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOdltbXgcvraaaaaaaaaaaaaaaaafaaaaaacpNjuucSbcctryIqZKcfQrKQbXvbWqbWrvzzcggwChuYjihGvNivNivNivNigVwcdaqAJcdanGrbupvGSbupaanaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaagaafaafaafaafsExcncbYebYfcrpklhqLCnBElMbcmFkOlbVmcnFjVLchWcnIcnJcrqcodcoebYkcuUpxbcuVsUbcogcohcrtjAmrqMcowcrtbYqnjGvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOnjGcfFcvraaaaaaaaaaaaaaaaafaafaafcpNcpOcaZcpPbYFcdrbYHbYIcpQoZpbYHmmndpPwbSjyprGXlWHaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaawWXcuRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaasExcnccbwgWCcrpfLNhsWnkegRFkOSnpacrpdVqcrqchWcrqcrqcrqcrqcrqcrqcuUpxbcuVbZzcogbZAcrtcrtcrsbZDcrtgOInjGvMOvMOvMOvMOvMOvMOvMOvMOvMObZFdgUcfFuZIaaaaaaaaaaaaaagwWXaaaaafcpNcpNcpNcpNcpNcpNbYHbYHbYHbYHbYHlWHlWHlWHlWHlWHlWHaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasExctlcbxcbxcrpmyKcmFcmFcmFcmFemIcauvyncawcaxceNcaztgecaCctmlTpccNcaEncbcaGcbQcaIcaJcaKcFtcFtcFtchGcFtrLZvMOvMOvMOvMOvMOvMOvMOvMOvMOnjGcfFcvraaaaaaaaawWXaagaaaaaaaafaafwWXaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacuRaaaaaaaaaaaasExcncibCwcFcrpxqEfiluVmsFtoqAiWjcbEjTHcrqcbGcbHccNccNcuUcuUccNccNcbNcuVcbOcbPcbQcogcogcFtcbTcFtcbVcFtvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOnjGcfFcvraafaafaafaagaaawxwaaaaaaaaawWXaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaafaagaagaagaafaabwWXaagaagaagaafaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawWXaafaafaafaafczacncjBPmOGmOGlKylKylKymOGfhnhJwmOGmOGcfdqKmccMccNcxhcxicxiccPckjkLvcuVcgycgyccSxSIgmXcFtccVcFtccXcFtvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOdgUcdkuZIaaaaaaaaaaagaaaaaaaaaaaaaaaaagaagaaaaaaaaaaafaaaaaaaaaaafaaaaagaagaafaagaagwWXaaaaaaaaaaaaaaaaaaaaaaaaaaaxkalvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaczamIdnGqduEnxCybAjJHgQudTNgMrcdTcdUmOGaklcdXcdYcdZceacebcecceiczbceeczccefcgycehhkOcejcFtcelcemczdcFtvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOnjGcfFcvraaaaaaaaaaagaaaaaaaaaaaaaaaaaaaagwWXaaaaagaagaagwWXaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaczaeNsfbcvvYkLghiukytsYWcWjfBNcfbcCfnyMhdbcfecffcChcfgcClcCmcfocficfjcfkcfncfmqkPmTncfpcfqcfrcfscftcFtvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOdltcfFcvraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafaafsExcncnGqmOGrtLmAgchpchpekkchpchqcgkmOGubacgncgoccNcgqcjNcgskgwckjckEeBmcjRcgyccStjDvUBcFtcgCcDIcgDcFtvMOvMOvMOvMOvMOvMOvMOvMOvMOvMOnjGcfFcvraaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaczaebfnYbmOGiRPcjLchpchpcjLchpchqcFbmOGchsrRckGUjxsjxsjxsjxsjxsjxswPachychzvoVckjckjckjchEcFtcFtchGcFtcFIcFIcFIcFIcFIcFIcFIcFFcFGcFHcFIbXguZIaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaczatfdvGJmOGruccjLchpchpcijchpchqewQisRcilcimcinhaCcipssCcircisnMjciueBmcivclWfFDciyxKOwIaciBxKOfADfFDvoLgitgFDgFOgKChiKvoLiJYciCeLafnpwSauZIaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaaaaaczauSGnGqmOGtfBcjLcjLcjLcjLvPPdpNsnDisRoHObOjcixckgcjgcjgcjhcjiwkqcgyoEUtVqclWxKOcjQjKOjyKcjpunruLkxKOvoLwOCxipxHjxLNkqHvoLljrckpciDrrBfJyuZIaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafVPlvXaafaafaafaafaafsExuSGcbxmOGcjHijWijWijWcgdcjLchqbYmisRoVewsUcmPiLAkqIaoPfvEcjiwkqwTxrDCcjOwqhcjPobGhZuwIawIauOZrHyxKOkEzuvSmsvemXjvulLDvoLtHEcjVwxPdWCeovuZIaaaaaaaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaagaaaaaaaaasExsExuSGmOGahsiHRmVGaQbhoKpMteXglGfvgHhgOrYGclnauQckfckfckfckfkHljxsvLnoEUckkwqhtrTckntrTwIackotrTvYLfdhvohtEatEatNhtEahkrvoLeHUvOdkPkbNrtSGuZIaaaaaaaaaaaaaaaaagxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaasExckquSGmOGsCVckscIlwMFckvrDBygwcpmckrvSKecbclmclQssHuFqsFEsydcVGchtfUQoEUvCeclWxKOcjQjKOwIawIaunruLknuJvoLkEzkEzcVikEzkEzvoLwqhwqhwqhfnpsbrrXYrXYrXYaafaafaafaaflvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasExcAqaTVmOGnVAevZfPVipdmOGmOGmOGmOGmOGmOGckOegGbGTckQeLIbHRdScjtucnacmHjdwckVclWtrTmgkxijfwZfwZclthenszjuTodEcdEcqtbmkdvbXsFQgtAvbXvbXeSnqFwttWjZovbLaaaaaaaaaaaaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasExckJclhmOGwAZipdwAZiBumOGcmQcliuDrxZKhZrrQFdzXbEZckfckfckfckfclrjxsfmHnwlaZVwqhclvkNSjMbclxclyfbZpfZgNyhPtpQegNyvxGidFkhAjnpoDEjnpjnpmNLblCwLFejPvbLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasExclActMmOGmOGmOGmOGmOGmOGodSeKZjZLclJntXiIGclLbOknVWckdtSosydoaLwkqwoJoEUclTwqhclWclWwqhclYclZwqhskdclWwqhwqhoGxwqhdCywqheEylTMxKOxKOpFuxKOneWwqhrXYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasExhZZrAqcmacplcmcrRHvxydvrcmgcmhcmkcmpwKGmHlgMzcmeckfckfckfckflFSwkqmZRvRqrgLbIwcmstxXcmtcmubKptwctsosUbmfzwqheGrmIzvvhwqhrXOpgWfoisxZdDwkrQiMomrFofDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasExsExsExsExsExsExsExcBhcbxcmBcmxlalcAqcbxlVDcmCnISrNnhZrgYmcmDcmEnwnkFHkFHsydqYmjxsrwPjYecpBeIMxtMhloxWTcgydMpheowoihECcpLwqhwqhwqhwqhwqhwqhwqhwqhwqhgQhqleqleqletxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxgLxgLxgLlhHxgLxgLcmOxvFiSRcbxcbxcbxcbxcbxcbxtDOcmThZrhZrvcTjxsjxsjxswkqwkqwkqwkqjxsxSlsEvrGobWUbWYrfRcolcolcolqnPcolrfRrfRrfRrfRiPscnqcbQpuGcnscntpUocbQgknsOIvJhwNrtxkaaaaaaaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxgLvrgvtRvtRvtRrcprcpxvFfHvcsZxjvjRNxjvfCIqJxkGVcnyqLXtfoqJxoieerhcnCcnDcnEfrZxCDquOpqArwPoEUpsnrfRcnLcnMcnMconcnPcXBxqVcoTcnRlyGquLlrpdMFugIfyNekecoNcbQfnosmApAjjwJrGTaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalhHrImihlwjEwjEtAjlhHnnsjsncsYwqldYgikDvwFpcedlWhPCkjInKknFzfozmGzwNxiZhefbgchtCItCItCIplirEGsUbcolcomfvScotdhPaTZqdUqdUqdUqdUqdUqdUcoupYEbsibXhnQncoycbQrCNnUbsmAvQarGTaaaaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxgLvrgrxjwntwntvEqseDgjuuDxkalqUdlKhhOKnMvhYYhOKhOKlKhnPLcoJctNctbgiliIAghXdvTxfHhWvghXwTxjqgsUbcolrrLgNIvKrdhPraelJhcoRcoRcoRcoUsRClrpfpccoZsCTnQnoXtcbQrCNqWZsmAxlFrGTaafaafaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxgLvrgdwhwntwnteTMseDgjuuDxfjznxWlKhqlprWchMGhwFxoOlKhmWDmWDctamWDeEUiCLoswlkwoswiCLjkUsKqjKfrqwcnfdWlhwHhwHcosqWWpFWnHYeCcokqcpipaclrpjGddEabOinQnxoUcbQmhdsmAtxktxktxktxkaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalhHgLOjZOhDzhDztAjlhHxvFmOpfjzjIYhOKsMpjrFvpBsMptTolKheDicrkvkEcrkcMziCLuhtgvvtHposwlhVcgyoEUbOerfRvAxdJSbuqkfNgmmquLquLquLuRNquLpacquLfBakHjdjrnJWpoLsFNmKwpaJqlehSMgJVrGTaaaaaaaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxgLvrgnmNnmNnmNrcprcpxvFfuPfjzdZAhOKmAelVsctvrtwfXqlKhtwahInmcIcrkgoFiCLnHShtIwNhoswlhVcgyieGcbOgJRgaraQReaFeaFcnmquLnvXgarerJcoxtkuxaocQMfOVwBKdIunFocbQsxIfClsCysmAgtdrGTaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxgLxgLxgLlhHxgLxgLrtkxvFjeHpIKwjclKhgcjfPbeXeftmdSYlKhtmdxxydGBcrkuaZiCLbmCfLSdLAmiZunUcgylHuotndTvkdgjcMelieliiUHquLqOlquLaYXuCbtoYtKdrfRrfRrfRrfRrfRrfRvKGwnvqledCennDrGTaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxvFxvFxvFxvFxvFxvFxvFfcOkmljIYhOKfjvvorrTOfhXxhalKhvSvcrkkXkiSHhPliCLlsMvpUeeQoswlhVcgyoEUbVTsoAokRrirnVEnVEebSquLmTPquLaYXhTuuhCiJhgAKsJpuhDgbWnourfRiwpjGVtxktxktxktxkaafaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxvFsMJoUxdZAhOKpeJrWcpeJgyfioLlKhqXccrklgvcrkhEriCLjQajCeuUhosweyVlTIeBmccqrfRtHcuCYonbonbonbonbuiDonbtMspiOiJGiJGqvKpdXlkQbYhwbxrfRroorEZtxkaaaaaaaaaaaaaaawWXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxvFtujliIiIAlKhpBEnYodzlpeJxoflKheMFfoZqFKfoZxzXiCLiCLiCLiCLiCLhVTcpdpOpcpdncUrfRrbZlJnpQKdNrfGbhmHhmHxGdviPhzrruecokpbduhDrtyxNdrfRjfzokOtxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatYktYkygdnsSeaBlKhlKhhOKhOKhOKlKhlKhhNvmWDmWDmWDhNvhVTvzLgKUeaBpMRgKUltguKpltgeaBrfRrfRrfRrfRrfRcnNrfRrfRcnNrfRrfRrfRrfRrfRrfRuhDrfRrfRwvGpUAtYktYkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatYkgbGyhqglEglEcvGjFBihzmSdctKctJctKctLkfTmkfmyvmkfpJDyhqglEglEivFglEfDveOGglEglEivFglEfDvglEdhRmkfctKrEdrOIctLcIQmkfctKxITihzxITcvGglEvdVoHbijrtYkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatYkcuqcurcuscuxcuugVlgVltkzgVlgVlcuxcuygVlgVltkzgVlgVllBGgVljPBqkDgVltkzwVucuxgVlqkDgVltkzgVlgVlgVlcuxgVlnLgcuytkzgVlgVlcuxgVlgVlcuucuxxrNnSTqDjtYkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatYktYkjqObyEcvbcvccvdcvecvfvZEcvgviVcvhiKCcvikWBcvgvZEdEUtYktYktYkqIzrsqfyouoQtxitYktYktYkuwyvZEcvgviVqcoiKCcvhkWBcvgvZEiYPcveiqucvccvbuJsxzTtYktYkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawnBqfAcwVwnBtYkcvGtYktYkcvGbXAcvGtYktYktYkcvGbXAcvGtYktYkaaajqzjegvFrsbwvFrtVujqzaaatYktYkcvGbXAcvGtYktYktYkcvGbXAcvGtYktYkcvGtYkvzMaXWvUpvzMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawnBcwkpcDyaIaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaatDTtbctKatbctDTaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaadLFwQZuxWvzMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIwnBcvNaRVtBNaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaogNrFogUmrFoogNaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaasIptyQjEfvzMdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqIwsvDsvDyaIcxwriVwrKyaIaaaaaaaafaaaaaayjoyjoyjoyjoyjoyjoyjoaaaaaaaafaaaaaatDTrFopnQdHptDTaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaadLFhOjqbqsykdLFfEUfEUnqsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahsIaaarELsXKeXPuAtrXEqtkpHlwnBaaaaaaaafaaayjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaafaaaaaajqznAWeflkHGjqzaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaavzMhWwtvTtoMxTRxdbirjpiGaaasVpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasvDhgvlNxuNAcyDpPGmTbyaIaaaaaaaafaafyjoyjoyjoyjoyjoyjoyjoyjoyjoaafaafaaaaaatDTrFogUmrFotDTaaaaaaaafaaaaaatTxtTxtTxtTxtTxaaaaaaaaaaaaaafaaaaaadLFwaVmmQwnirefuYdxHOfEUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIyaIpxLtrtyaIaaaaaannGaaayjoyjoyjoyjoyjoyjoyjoyjoyjoaaannGaaaaaatDTrFogUmrFotDTaaaaaannGaaftTxtTxtTxtTxtTxtTxtTxaaaaaaaafnnGaaaaaadLFdYCeTtdLFdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIpxLczqyaIaaaaaaaafaaayjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaafaaaaaatDTkVBgUmrFotDTaaaaaaaafaaatTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaafaaaaaadLFpeTeTtdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaaaaaaaaawnBrQIfJrwnBaaaaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaaaaajqzuxjsCBoiQjqzaaaaaaaaatTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaaaaaavzMiQLqKEvzMaaaaaaaaaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaxkalvXfcXvzMwnBwnBabEadhuNAxDJfCApEHyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoluxdVTscmfMVxvdwWxsgYtDTuOFuOFpMutTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaafHPtlwlFCcUTeBihGXvzMvzMvzMfcXlvXxkaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaaaaaaaaawnBafFpFVlxYlRjuQNeiAyjoxDryjoyjoyjoyjoyjoyjoyjoyjoyjooipfBWmkXsbXdrDgUmgJBwFFgUdkerdROtTxufTtTxtTxtTxtTxtTxtTxtTxaaaaaaeiGaxHmygoUGdfcwrNvzMaaaaaaaaaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIpxLpFVgPCyjcplFqJTyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjopRJiwCmDJsGcdrDuWxqPtrzNaSptBRolHtTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaahJgvfTfMcjMndfceTtdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIyaIpUigkZuNAwuIxsZsvDyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjohaxbosqTKfMViHGlxeanztDTtDTuOFuOFtTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaafEUnomrrhiLwaZMvUpdLFdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxxfmgakzOuNArFYpPGmTbxvbwnBaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaajqzkuTrFogUmrFokxMjqzaaaaaatTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaaavzMshcwaVmmQlTurefgZFuRpfEUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaukIaaahUOfhHlKiuAtrXEqtkfbNwQPwnBaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaajqzobgrFowjTrFogZjjqzaaaaaatTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaaavzMuBHfvKtvTtoMiNafsrmEepwfaaaiSoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasvDsvDsvDyaInYwcCvqimwNjwnBaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaajqzaVwrFoegouPXxXojqzaaaaaatTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaaavzMhxjqwbtGSdImdLFfEUfEUnqsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIyaIjmhuzyuNAxDJfCAsvDyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjohaxdVTscmfMVpdUxnScNDtDTtDTuOFuOFtTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaafEUtlwlFCcUTkHvpHZdLFdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIpxLxODgPCkVypnzspQyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjojwCjxesmosGcdrDpBGgJBnYjkZGralkEytTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaamZUjYfcWUjMnvWBeTtdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaaaaaaaaawnBpxLxODiSGkJYkFCeiAyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjooipnzmmnNfHfdrDmPtqPtgWZhCWkerdROtTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaafCwgHycTznESvWBeTtvzMaaaaaaaaaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaxkalvXfcXvzMwnBwnBvVGxDRuNAwuIxsZpEHyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoluxbosqTKfMVsdRxnSanztDTuOFuOFpMutTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaafHPnomhpncUTqpzvavvzMvzMvzMfcXlvXxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaaaaaaaaaawnBcCOxFzwnBaaaaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaaaaajqzwZnhGupPqjqzaaaaaaaaatTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaaaaaavzMtrLsCtvzMaaaaaaaaaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaIdjgcDkyaIaaaaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaaaaaogNtBMhMrrFoogNaaaaaaaaatTxtTxtTxtTxtTxtTxtTxtTxtTxaaaaaaaaaaaaaaadLFvCIiYbdLFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacDDfyLcDEcDFaaaaaawxwyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjowxwaaaaaatDTpEawylxoDtDTaaaaaawxwaaaaaatTxtTxtTxtTxtTxaaaaaaaaaaaawxwaaaaaacRdpexqcZeowaaaaaawxwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagEMjTufGlgEMaaaaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaaaaajqztDTqIVjqzjqzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqNzpNLhTFqNzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxSYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavEefbRxRGetFaaaaaaaaayjoyjoyjoyjoyjoyjoyjoyjoyjoyjoyjoaaaaaarIWtDTsBIdqcpoytDTrIWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeZpuVZfHVvCnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahgveMclEmxsZaaaaaaaaaaaaaaaaaayjoyjoyjoyjoyjoaaaaaaaaaaaaxkapovhaxluQqrRgzPhaxpovxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagxVpIisbkxHOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbwXhqbRwnBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkawfBmLPhaxxAjjqzjqzwfBxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavzMxRWumhfcXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxkaxkaxkaaaaaaaaaaxkaxkaxkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakHBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(2,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(3,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(4,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(5,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(6,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(7,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(8,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(9,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(10,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(11,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(12,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(13,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(14,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(15,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(16,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(17,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(18,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(19,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(20,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(21,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(22,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(23,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(24,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(25,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(26,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(27,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(28,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(29,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(30,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(31,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(32,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(33,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(34,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(35,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(36,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(37,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaf
+aaf
+aaf
+wWX
+aag
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aag
+aaf
+aag
+aag
+aag
+aaf
+wWX
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(38,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(39,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(40,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(41,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aDr
+bhD
+aRw
+aDr
+bhD
+bhD
+aRw
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aDr
+bhD
+bhD
+aRw
+aDr
+bhD
+aRw
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(42,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+biX
+bhE
+aJt
+biX
+bhE
+biY
+bpN
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+biX
+bhE
+biY
+bpN
+aJt
+biY
+bpN
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(43,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aDr
+aEB
+aJt
+aDr
+aEB
+bnF
+aRw
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aDr
+aEB
+bnF
+aRw
+aJt
+bnF
+aRw
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(44,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+biX
+bhE
+aJt
+biX
+bhE
+biY
+bpN
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+biX
+bhE
+biY
+bpN
+aJt
+biY
+bpN
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(45,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aDr
+aEB
+aJt
+aDr
+aEB
+bnF
+aRw
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aDr
+aEB
+bnF
+aRw
+aJt
+bnF
+aRw
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(46,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+biX
+bhE
+aJt
+biX
+bhE
+biY
+bpN
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+biX
+bhE
+biY
+bpN
+aJt
+biY
+bpN
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(47,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aDr
+aEB
+aJt
+aDr
+aEB
+bnF
+aRw
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aDr
+aEB
+bnF
+aRw
+aJt
+bnF
+aRw
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(48,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+biX
+bhE
+aJt
+biX
+bhE
+biY
+bpN
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+biX
+bhE
+biY
+bpN
+aJt
+biY
+bpN
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(49,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+xsK
+aRw
+aDr
+aRw
+aaf
+aDr
+aEB
+aJt
+aDr
+aEB
+bnF
+aRw
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aDr
+aEB
+bnF
+aRw
+aJq
+bnF
+aRw
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(50,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+sbL
+aiz
+aiz
+aiz
+aaa
+biX
+bhE
+aJt
+biX
+bhE
+biY
+bpN
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+biX
+bhE
+biY
+bpN
+aJt
+biY
+bpN
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(51,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+aag
+aaa
+aaa
+aaa
+sbL
+lte
+aiz
+aiz
+aaa
+aDr
+aEB
+aJt
+aDr
+aEB
+bnF
+aRw
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aDr
+aEB
+bnF
+aRw
+aJt
+bnF
+aRw
+aaa
+aaa
+aaa
+aag
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(52,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+aaf
+aaf
+aaf
+aaf
+aJt
+aJt
+aJt
+aJt
+aaf
+biX
+bhE
+aJt
+biX
+bhE
+biY
+bpN
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+biX
+bhE
+biY
+bpN
+aJt
+biY
+bpN
+aaf
+aaf
+aaf
+aaf
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(53,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+aag
+aaa
+aaa
+aaa
+aJt
+aiz
+aiz
+aJt
+aaa
+aaf
+bnG
+bnG
+aag
+bnG
+bnG
+aaf
+aaa
+aaa
+auD
+aaa
+aaa
+aaa
+aaa
+aaf
+bnG
+bnG
+aag
+bnG
+bnG
+aaf
+aaa
+aaa
+aaa
+aag
+aaf
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(54,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaf
+aaa
+aaa
+aaa
+myc
+ahT
+ahT
+ahT
+ahT
+aaa
+aaf
+bhF
+wSc
+anS
+biZ
+bnH
+aTs
+aaa
+bcn
+brT
+aYA
+brT
+bcn
+aaa
+bfN
+bhF
+biZ
+anS
+bml
+bnH
+aaf
+aaa
+aaa
+aaa
+wWX
+aaf
+aag
+aag
+wWX
+aag
+aag
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(55,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaa
+aaa
+aaa
+aYy
+dck
+ycd
+ycd
+dck
+aYy
+brT
+alO
+amP
+aMR
+brT
+brT
+brT
+brT
+brT
+avc
+awi
+baz
+brT
+brT
+brT
+brT
+brT
+aHZ
+bpP
+brT
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(56,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaa
+aaa
+vJC
+aYy
+dln
+esJ
+dZD
+fZN
+xkV
+bcn
+xfb
+mnK
+anT
+oqZ
+aPK
+pPU
+arX
+bcp
+baA
+tAt
+baA
+bcp
+wCI
+bkK
+ilk
+wjP
+fsh
+aJv
+brT
+bcn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(57,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aYy
+tDS
+aWH
+xQF
+iUU
+iUU
+ggA
+brT
+alS
+fPU
+aPO
+aPO
+aPO
+aRz
+tHq
+bcp
+aWF
+tBz
+baD
+bcp
+bdY
+fPU
+bhH
+bjc
+bkM
+bmm
+bwZ
+brT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(58,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aAs
+aaf
+aaa
+aaf
+dUK
+ahz
+ajO
+aiC
+fDG
+fDG
+puL
+brT
+lki
+qcn
+aOt
+aOt
+aPP
+pRG
+rbU
+brT
+aWG
+tBO
+baB
+brT
+aCb
+bAw
+aEF
+bjf
+bkP
+bnO
+ekT
+brT
+bCE
+bCE
+bCC
+bCC
+bCE
+xzm
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(59,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaa
+dYT
+uYZ
+qwK
+xcE
+hNm
+gDr
+jnX
+jnX
+brT
+alP
+okh
+iiA
+aOr
+aPN
+pTK
+aTt
+atH
+baw
+awj
+ayl
+aAH
+aCe
+aDu
+aEG
+bnM
+bkO
+tdP
+oNJ
+brT
+brS
+btO
+pGf
+bxb
+byV
+jpG
+kYN
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(60,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+sxa
+agX
+aRC
+rMJ
+hNm
+itK
+aht
+brT
+bnN
+fPU
+aPO
+aPO
+aPO
+pTR
+aTu
+msX
+aWI
+awl
+baC
+bcr
+aUS
+aDw
+bhH
+bje
+bkM
+aJw
+bnN
+brT
+hut
+bAx
+bCC
+bxc
+byW
+bCE
+bCE
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(61,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaa
+aaa
+aYy
+agY
+mrU
+gDr
+hNm
+cPv
+jpF
+brT
+alP
+qcn
+aOt
+mfe
+aPP
+tgj
+rcG
+aUT
+aWJ
+aYB
+uVN
+bcs
+wCU
+bfO
+bhI
+lkC
+pIG
+bnO
+oNJ
+brT
+brU
+bCC
+bvk
+bxd
+byX
+dHU
+bCC
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(62,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+wWX
+aaf
+jBV
+aYy
+agZ
+aRv
+aPH
+hNJ
+ajT
+jqd
+bcn
+lks
+bqc
+ijz
+bqc
+bqc
+bqc
+bqc
+aRE
+aWK
+aYC
+baE
+bqc
+bqc
+bnP
+ooC
+lkD
+eHK
+fxl
+pAz
+brT
+bCD
+aQH
+bvl
+bxe
+jdc
+rhX
+bCC
+aaa
+aaa
+wxw
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(63,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aYy
+aha
+ahB
+ahq
+aiF
+ajU
+akL
+alt
+amu
+aMT
+nhc
+aoR
+apW
+aYE
+rcV
+rXg
+syM
+tDn
+syM
+bcu
+wDm
+aDx
+bhJ
+bjh
+szJ
+scv
+hrz
+brT
+brW
+btQ
+aSJ
+bxf
+sbZ
+baj
+bCE
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(64,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+wxw
+aaa
+aaa
+aYy
+aTv
+aeG
+ahZ
+aiG
+ajV
+jqw
+kzA
+lkA
+mou
+aMS
+aTB
+aTB
+pVG
+aTB
+aUV
+aWL
+tEP
+aym
+aUV
+bse
+aDy
+bse
+bse
+bnR
+scv
+hrz
+brT
+byY
+bCE
+bCE
+bxg
+bCE
+bCE
+bCE
+aaa
+aaa
+aaa
+aag
+bKY
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+awb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(65,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaf
+aaf
+aaf
+aaf
+aaf
+aYy
+aYy
+aYy
+gDU
+aYy
+aYy
+aYy
+brT
+llb
+moG
+anW
+aTB
+aPS
+pWn
+aTB
+aUW
+aWM
+aYD
+baG
+bcv
+bse
+aDz
+bhL
+bse
+bnQ
+bmt
+bnS
+brT
+brY
+bCE
+aSK
+bxh
+bzb
+bzb
+bZi
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(66,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aJb
+aaa
+wWX
+aag
+aag
+aag
+aag
+abX
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+edR
+eUR
+fHh
+gGj
+hNK
+iuX
+jrE
+anX
+anX
+anX
+anX
+aTB
+aPT
+pWr
+aTB
+aUX
+ave
+tFJ
+baH
+bcw
+bec
+aDA
+bhM
+bse
+brT
+brT
+brT
+brT
+brZ
+bZi
+bvn
+bxi
+oXN
+pCO
+tCR
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(67,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+edR
+eWt
+fHQ
+gGE
+fIx
+ivx
+jrS
+kzX
+llk
+moH
+aIa
+aTB
+aPU
+pWH
+aTB
+aUY
+szT
+tNa
+baI
+bkL
+bse
+aDB
+bhN
+bse
+bxq
+bxq
+bxq
+bxq
+bsa
+bdR
+bxj
+oPJ
+bzc
+myw
+tCR
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+wWX
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(68,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+wxw
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cBu
+anX
+anX
+anX
+anX
+eYn
+fIx
+gIM
+hOi
+ivH
+ivH
+ivH
+llH
+mqa
+aRN
+aTB
+aPV
+kMi
+baJ
+atI
+sAd
+tPA
+uWb
+vRH
+wER
+xCr
+uAC
+bse
+bfS
+bmw
+bmw
+jow
+bsb
+btV
+aSL
+aUK
+aXN
+bak
+bZi
+bZi
+bZi
+bZi
+lCW
+aaf
+aaf
+aaf
+aaf
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(69,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaf
+aag
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cBv
+cDu
+cEK
+dar
+efH
+eYu
+fIL
+aes
+hOu
+ixj
+jsG
+kAh
+lnq
+fIX
+aIa
+aTB
+aqx
+aRK
+aTB
+aUZ
+aWO
+aYF
+baK
+bcx
+bse
+bfQ
+aEI
+bse
+bkT
+bnW
+bnW
+beq
+pMF
+knz
+jCR
+ecT
+laQ
+uoh
+tZi
+bEt
+oyA
+bHO
+qxf
+aaa
+aaa
+aaa
+aag
+aag
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(70,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+uZK
+uZK
+uZK
+uZK
+aaa
+uZK
+uZK
+uZK
+uZK
+aaa
+uZK
+uZK
+uZK
+uZK
+aaa
+aaa
+cBw
+cDu
+cEM
+dcS
+egH
+eYX
+fIX
+anX
+hPQ
+avu
+avu
+avu
+lns
+avu
+avu
+aTB
+aTB
+aRL
+aTC
+bcy
+aWP
+bcy
+baL
+vSR
+bse
+bse
+bse
+bse
+bkV
+btY
+btY
+btY
+btY
+btY
+bxl
+bxl
+bzd
+bAz
+bCF
+jko
+sZC
+bHO
+bDE
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(71,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+uZK
+bQt
+bTY
+uZK
+aaf
+uZK
+cdI
+cgc
+uZK
+aaf
+uZK
+csc
+ctu
+uZK
+aaa
+aaa
+anX
+avu
+cEN
+ddH
+avu
+fbP
+anX
+gJr
+hQg
+ixU
+jvl
+kAo
+lnN
+gew
+aMV
+orq
+mqh
+mqh
+bGh
+baX
+sAg
+pPd
+aYJ
+aCg
+aCg
+aDC
+epn
+jUv
+bkV
+btY
+bnY
+aMN
+aOg
+btY
+bxm
+bxm
+bze
+uJq
+bZi
+eHi
+tnO
+bZi
+fxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(72,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+uZK
+bRf
+bRf
+uZK
+aaa
+uZK
+cdJ
+cdJ
+uZK
+aaa
+uZK
+cse
+cse
+uZK
+aaf
+aBe
+aBe
+aBe
+aBe
+aBe
+aBe
+aBe
+aBe
+gLd
+hQJ
+iya
+jwx
+kAw
+lox
+mqZ
+nhE
+osg
+piE
+pXi
+bfV
+baY
+sAH
+tQh
+aYJ
+vUv
+bnW
+bfS
+aEJ
+nCC
+aIH
+bmA
+jPg
+jPg
+quD
+btY
+ozL
+ozL
+bzd
+bAA
+bZi
+bZi
+bZi
+bZi
+bZi
+bZi
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(73,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaf
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+uZK
+bRg
+bUe
+uZK
+aaf
+uZK
+cdK
+cge
+uZK
+aaf
+uZK
+csf
+ctx
+uZK
+aaf
+aBe
+cBx
+avw
+cEO
+ddO
+ehE
+ehE
+aBe
+gLw
+aiI
+izn
+aTK
+aTK
+aTK
+aTK
+aTK
+aTK
+aPY
+pXH
+aYJ
+rYB
+sCg
+aYJ
+aYJ
+aAK
+bnW
+bkV
+bkW
+bkW
+bkW
+btY
+bnZ
+bqe
+bsd
+btY
+vbD
+bxn
+bzf
+qEG
+qEG
+qEG
+uvq
+tXV
+xgq
+bZi
+bZi
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(74,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+uZK
+bRh
+bUf
+uZK
+aaa
+uZK
+bRh
+bUf
+uZK
+aaa
+uZK
+bRh
+bUf
+uZK
+aaa
+aBe
+cBy
+avw
+aDO
+aDO
+eiB
+eiB
+aBe
+gLD
+hRv
+aTK
+aTK
+kBX
+lpd
+mss
+niK
+aOC
+aPY
+pZY
+aYJ
+rZA
+aYJ
+aYJ
+baO
+bnW
+wFh
+xCz
+aLX
+sqJ
+tRZ
+bkW
+bkW
+bGn
+bGn
+bGn
+bGn
+bGn
+bGn
+bGn
+bGn
+bGn
+bGn
+bHL
+vDJ
+bQe
+bZi
+aaa
+aaa
+aaa
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(75,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abX
+wWX
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apX
+ard
+aaa
+aaa
+aaa
+apX
+ard
+aaa
+aaa
+aaa
+apX
+ard
+aaa
+aaa
+aBe
+auG
+avw
+aDO
+aDO
+eiI
+azM
+aBe
+aCx
+hSp
+aLy
+aGC
+aLs
+aLs
+aLs
+aMY
+aOD
+aPY
+aRQ
+aTH
+rZG
+sCE
+aYK
+uZx
+vUQ
+bei
+xDl
+oEk
+mtC
+bkY
+aJx
+bkW
+bGn
+aOh
+iDz
+xpv
+dyX
+gSJ
+iDz
+bdN
+bhs
+cKs
+eVz
+qxn
+aal
+tCR
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(76,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aJb
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cFU
+cFU
+cFU
+aCD
+apY
+alU
+amT
+aCD
+aCD
+apY
+alU
+amT
+aCD
+aCD
+apY
+are
+amT
+aCD
+aBe
+cBz
+avx
+afA
+azN
+agn
+ahc
+aBe
+aia
+aDN
+izS
+akM
+aId
+aLt
+aLw
+aNb
+aOE
+aPY
+aRR
+aTI
+saJ
+sDc
+beq
+vaL
+bcB
+wFM
+xEA
+naj
+ftz
+aII
+bmD
+aLX
+aMP
+aOi
+qkX
+aSQ
+bzh
+bbK
+bbK
+bdO
+iqj
+bGn
+bHL
+sdb
+bLr
+tCR
+aaa
+aaa
+aaa
+wWX
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(77,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cFU
+bAt
+bFV
+bMs
+bRi
+bUg
+bXP
+aof
+aof
+ald
+alV
+amU
+aof
+aof
+apZ
+arf
+adi
+adv
+aBe
+avy
+avy
+aDO
+afU
+ago
+ahd
+aBe
+aCy
+hTs
+aLy
+aGD
+aLw
+aJD
+aLu
+aNa
+aOF
+aPY
+aSc
+bxq
+bxq
+bxq
+bxq
+bxq
+bxq
+bxq
+bfY
+nHe
+bkW
+bkW
+bkW
+bkW
+bGn
+dWe
+rHm
+hPV
+eva
+hPV
+bCK
+xAQ
+bEw
+aOj
+ssO
+fEE
+bLg
+tCR
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(78,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+bvo
+bAu
+aaV
+bBm
+aqa
+bUj
+adj
+atV
+atV
+aqa
+alW
+adj
+atV
+atV
+aqa
+ctG
+adj
+adw
+aBe
+avy
+aeV
+afC
+den
+ejD
+fce
+aBe
+gMa
+hTx
+aLy
+jwT
+alu
+lsm
+aLv
+aLv
+aoS
+aPY
+aSd
+bxq
+bGl
+bGl
+bGl
+bGl
+bGl
+bxq
+bfY
+aEK
+aIJ
+aIJ
+fZr
+cpW
+bGn
+bGn
+jUJ
+wqa
+jwK
+bGm
+lTy
+bdP
+bEx
+bGn
+bHP
+hMM
+bLh
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(79,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+aWw
+bcg
+biI
+bnA
+brB
+bvO
+bAv
+aog
+bGb
+bRj
+bUl
+aog
+aog
+aog
+cdL
+cgf
+atV
+atV
+atV
+aqb
+acP
+adk
+adx
+aBe
+aet
+aeW
+afD
+dgY
+agp
+azO
+aBe
+gOj
+aiH
+aFa
+jyC
+aIf
+aJE
+aLw
+aNb
+aOG
+aPY
+aSd
+bxq
+bGl
+bGl
+bGl
+bGl
+bGl
+bxq
+bfY
+rLs
+kis
+kRR
+xSp
+jYp
+iHF
+aOj
+aQI
+aSR
+bxr
+bGn
+bAG
+qmn
+bEy
+bGn
+bHQ
+bps
+bLi
+bZi
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(80,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+uZK
+aWx
+bcg
+biJ
+bnB
+bnE
+bvP
+bAH
+cAw
+bGc
+bRk
+bUm
+cAw
+apm
+apm
+aaT
+apm
+cAw
+apm
+apm
+acv
+acP
+cvO
+cFU
+aBe
+aBe
+aBe
+aBe
+afV
+aBe
+aBe
+aBe
+gOu
+aDP
+aLy
+aGF
+aLx
+aLx
+aLx
+ber
+aTT
+aPY
+aSd
+bxq
+bGl
+bGl
+bGl
+bGl
+bGl
+bxq
+aDD
+bhP
+aGz
+bhP
+dbK
+pss
+ejl
+vvp
+wKg
+iCB
+wco
+pWU
+ygs
+qmn
+sxu
+bGn
+xNV
+bQq
+bLj
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(81,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+aCD
+bAT
+bGa
+bMt
+aqb
+bMt
+atV
+atV
+atV
+atV
+atV
+atV
+atV
+ako
+aqd
+acQ
+asg
+cFU
+atR
+auJ
+aeY
+afG
+dkb
+emk
+fee
+fJb
+gPh
+aDQ
+aTK
+jzf
+kCe
+lsH
+mut
+nkI
+aPY
+aPY
+aSd
+bxq
+bGl
+bGl
+bGl
+bGl
+bGl
+bxq
+aDE
+bhP
+aGA
+aIM
+eRm
+fdO
+hoa
+bGn
+myX
+pog
+qKC
+sQm
+ygs
+qmn
+sbU
+bGn
+gTx
+bMU
+bLm
+tCR
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(82,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aCD
+bBg
+atV
+bMt
+aqb
+bMt
+atV
+atV
+atV
+atV
+akk
+aoi
+aoi
+apf
+acw
+acR
+ash
+cxn
+cyU
+auK
+afH
+pOA
+axA
+ayP
+ahe
+ahC
+gPG
+hUh
+aQe
+aQe
+aQe
+aQe
+aQe
+aQe
+aQe
+aQd
+aSc
+bxq
+bGl
+bGl
+bGl
+bGl
+bGl
+bxq
+bga
+bud
+bud
+bud
+bud
+bud
+bud
+bud
+jGK
+lYj
+mOu
+qsk
+jim
+omq
+xVd
+bGn
+gTx
+bpt
+bLm
+tCR
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(83,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+bwj
+bBh
+aaV
+bMt
+aqa
+bMt
+ako
+atV
+aaE
+cdM
+ajp
+atV
+aoj
+apg
+aqc
+acS
+asi
+asX
+cyV
+cBD
+avz
+afI
+dlx
+ayQ
+axS
+azJ
+gQR
+aiI
+aFe
+aGI
+aIj
+aJH
+aiR
+nkN
+aQe
+aQe
+aSd
+bxq
+aVj
+aWZ
+tQn
+baU
+aVj
+bxq
+xEJ
+fub
+fdE
+jMe
+whh
+fFh
+tSm
+pzF
+nZE
+vgu
+vnc
+oTe
+nyl
+viN
+efz
+bGn
+pbP
+bMS
+bLm
+tCR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(84,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+aWy
+bch
+biK
+bnA
+brB
+bvO
+bBj
+bGb
+bMu
+aqb
+bMt
+bXT
+atV
+aaE
+cdN
+ajp
+atV
+cjw
+atb
+ata
+ata
+axN
+cxo
+atW
+cBG
+avA
+afJ
+dlP
+emn
+feh
+fJl
+gSR
+aDS
+aIl
+aGJ
+aIk
+aJI
+aLB
+nnN
+aoU
+aQe
+aSd
+beq
+bcK
+aXa
+tRm
+baV
+vUV
+beq
+bgb
+bud
+bud
+hDI
+gpI
+gck
+bud
+bud
+gRP
+bGn
+xlj
+aXQ
+bGn
+bGn
+aje
+bGn
+bHL
+bJG
+fDD
+bZi
+aaa
+aaa
+wxw
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(85,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+aWz
+bch
+biL
+bnB
+bnE
+bvP
+bBl
+bGc
+bMx
+bRl
+bMt
+adz
+cak
+aaU
+aaU
+abn
+ang
+abO
+ata
+acx
+acT
+ask
+atb
+atT
+auL
+avB
+afK
+axC
+ayR
+azT
+aBp
+aCG
+aDT
+aFg
+akN
+kDd
+aJJ
+aLC
+noj
+aQe
+aQe
+aSd
+beq
+scT
+sDg
+tVa
+vbq
+bcH
+beq
+bgc
+fzk
+oCj
+qxk
+kDy
+iOA
+eXq
+mol
+vXh
+bvr
+aUM
+aXR
+bam
+bCP
+bGs
+bLs
+bHV
+bQu
+qcm
+bZi
+aaf
+aaf
+aaf
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(86,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+bwC
+bBm
+bGd
+bMy
+bRm
+bUn
+bXU
+atV
+atV
+atV
+cgI
+atV
+aqb
+ata
+acy
+acU
+asl
+asZ
+atU
+aeu
+avC
+afL
+axD
+agr
+azU
+fJX
+aCH
+bge
+aFh
+aGK
+alv
+aJK
+amR
+nor
+aoV
+aQe
+aSb
+beq
+beq
+aXr
+tYj
+aXr
+beq
+beq
+bgb
+fzk
+bud
+qlc
+ode
+xYN
+kFY
+jcd
+eHY
+pOW
+iiG
+bzm
+bAP
+bCU
+bEE
+xhf
+bHV
+bQu
+bLo
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(87,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aCD
+bBn
+atV
+bMA
+aqb
+bMt
+bXX
+cal
+akk
+cdO
+ane
+cdO
+cjx
+apj
+csg
+acV
+cvP
+cxp
+cyW
+auL
+cDv
+cEP
+axE
+ayS
+azV
+bge
+aAZ
+aAZ
+aFi
+akO
+aIm
+aJL
+aLD
+noZ
+aOL
+aQe
+qaC
+asa
+sdq
+aXj
+tYY
+vco
+beq
+bgb
+bgb
+bud
+bud
+pFE
+rhm
+ydm
+bud
+bud
+bud
+qiq
+bEJ
+bCU
+bCU
+bCU
+bCU
+bLs
+bHV
+bQu
+bLr
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(88,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+aCD
+bBu
+atV
+bMA
+aqb
+bMt
+bXZ
+cam
+anf
+aaV
+cgK
+atV
+aom
+ata
+aqe
+acW
+cvQ
+ata
+adZ
+aev
+azT
+azU
+azU
+azT
+azT
+fKl
+aiL
+aiL
+aQe
+aGL
+kDj
+ltX
+aLE
+npf
+aQe
+aQe
+beq
+aTS
+aVn
+aXe
+aZg
+vcv
+aAQ
+aCh
+beq
+bzj
+lVX
+dxR
+hQY
+oVc
+bql
+bLs
+bxv
+bvu
+aUN
+bzn
+bAM
+bdQ
+bCU
+bLs
+bLs
+bJJ
+bLq
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(89,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+aWA
+bcj
+biM
+bnC
+brC
+bwU
+bBx
+ame
+bMB
+aqa
+bMt
+bYa
+cam
+ccC
+ang
+ane
+ang
+cjy
+apl
+aqf
+ari
+adl
+atb
+atW
+auL
+afc
+awo
+axG
+agu
+azW
+aBm
+aJN
+aJN
+aIp
+aGM
+aIo
+aJN
+aLF
+aGM
+aON
+aQh
+arb
+reH
+sdA
+sGr
+tZC
+baZ
+bcK
+ahb
+bgf
+bzj
+eEQ
+bYD
+bYD
+hqU
+bqm
+bGt
+cZy
+bvv
+aUO
+bCU
+bAO
+bdS
+ptE
+bko
+bLs
+qPw
+bLr
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(90,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+aWB
+bcj
+biN
+bnD
+brC
+bwV
+bBy
+bGe
+bMC
+bRn
+bUl
+ang
+car
+aoi
+aoi
+aas
+atV
+cjz
+atb
+ata
+ctP
+axN
+atb
+cyX
+cBH
+cDw
+aDV
+aLG
+agw
+azX
+aDV
+aDV
+aDV
+aFl
+aGN
+aGN
+luv
+aLG
+aDV
+aOO
+aQf
+qbw
+aTR
+sdE
+avh
+tZJ
+bGg
+bcL
+aCi
+bgf
+lnf
+sGG
+bYD
+bYD
+bqo
+bqn
+bsn
+buf
+vnq
+bEJ
+bCU
+bAO
+bCU
+ptE
+bGw
+bLs
+qPw
+qjH
+bZi
+aaa
+aaa
+aaa
+wWX
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(91,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+bwW
+bBz
+bHG
+bOp
+bRo
+bUo
+ame
+cas
+ame
+ame
+ame
+ani
+aop
+ame
+acz
+ctQ
+cvR
+atd
+aeb
+aex
+afb
+awq
+axI
+aCK
+ahg
+aCK
+aCK
+aJO
+ajX
+aGO
+dJJ
+aJP
+aLH
+aOP
+aOP
+aQg
+arC
+rgn
+bcM
+bbb
+uaf
+bbb
+bcM
+wFY
+bgf
+uST
+bMw
+bYD
+bRG
+bqo
+bqn
+bsn
+bug
+bCU
+bEJ
+bCU
+bAO
+bCU
+ptE
+bkp
+bLs
+bLs
+bLh
+bZi
+bZi
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(92,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+beB
+aag
+aaa
+aaa
+aaa
+aWC
+aaa
+biO
+bnE
+bnE
+bvP
+bCx
+apm
+apm
+bRp
+bGc
+cAw
+ajo
+apm
+apm
+apm
+anj
+cjA
+apm
+acA
+arj
+cvT
+ate
+avE
+cBI
+avD
+awr
+axJ
+ayT
+azY
+fMG
+aCL
+aFm
+aFm
+aOP
+aOP
+aJQ
+anA
+aOP
+aoW
+aqF
+arC
+rhj
+seI
+aXn
+tZJ
+bbc
+aAR
+wKN
+bgf
+lnf
+sGG
+gYl
+fSQ
+bom
+koD
+bsp
+buh
+bvx
+aUP
+bzm
+bAP
+bCU
+bCU
+bGx
+bHZ
+bLs
+icB
+bMS
+bZi
+bZi
+aaa
+aaa
+aaa
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(93,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+bwY
+ang
+bIX
+atV
+atV
+bMt
+atV
+ajp
+ako
+atV
+atV
+ank
+aor
+atV
+atV
+ark
+asn
+atf
+atW
+auN
+afc
+aws
+axK
+ayU
+ahh
+aLI
+aLI
+aiN
+aFn
+aGQ
+kEp
+luY
+muM
+aGQ
+aoX
+aQh
+aSe
+asc
+bcK
+sHn
+uay
+bbd
+vVP
+ahb
+bgf
+bzj
+ktK
+uHP
+bon
+bon
+eVw
+wsV
+aQJ
+bvy
+eSJ
+bzp
+bAQ
+bfm
+oNr
+bLu
+sBv
+bLs
+bLr
+bMU
+kgk
+bZi
+aaf
+aaf
+aaf
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(94,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+beB
+aaf
+aaa
+uZK
+aXM
+bck
+biP
+bob
+brD
+bxt
+bCy
+apf
+aoi
+aoi
+bUq
+aoi
+aas
+atV
+cdQ
+abo
+anl
+cjB
+apn
+aqi
+arl
+adm
+adz
+aec
+cBJ
+aFt
+aCM
+aCM
+aFt
+aFt
+aCM
+aCM
+aFt
+aOQ
+aGR
+aLJ
+lxR
+aLJ
+aGR
+aOQ
+aQo
+syU
+ris
+syU
+aXk
+aZg
+bbe
+bJF
+wLh
+bJF
+bzj
+gQv
+etA
+ooY
+boo
+vIB
+bLs
+hhQ
+bvz
+gkl
+bQz
+bQz
+bCV
+jlQ
+bGz
+bQz
+bQz
+bLr
+bMU
+xlO
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(95,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+beB
+aaa
+aaa
+uZK
+aYj
+bck
+biQ
+boc
+brF
+bxL
+bCA
+bIY
+aog
+aos
+bUr
+aiB
+aat
+aaI
+abt
+abt
+chg
+cjC
+arm
+arm
+arm
+arm
+arm
+aed
+aey
+aFt
+awu
+aAa
+agz
+aAa
+aBr
+aCN
+aFt
+iAw
+aGS
+aIs
+lxX
+aNs
+npg
+aOR
+aQo
+aSg
+bbm
+syU
+avh
+aZg
+bGg
+bJF
+wLi
+bgj
+buj
+nWH
+nWH
+buj
+aLY
+nWH
+buj
+buj
+bvA
+bVA
+bQz
+bOQ
+bOQ
+bOQ
+bOQ
+bOQ
+bQz
+bLr
+uCD
+opg
+tCR
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(96,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+beB
+aaa
+aaf
+uZK
+uZK
+uZK
+uZK
+uZK
+aaa
+cFU
+atV
+bIZ
+bOq
+bRq
+bUs
+aiB
+aat
+aaI
+abt
+abq
+abC
+cjD
+arm
+acC
+acX
+cvU
+arm
+aee
+aez
+avG
+awv
+dmm
+ayX
+aCO
+aLP
+aCO
+avG
+aNs
+aGT
+aIt
+lyb
+aLO
+aNs
+aOS
+aQo
+aSg
+asd
+syU
+aXm
+aZc
+vcN
+bJF
+wLn
+bgk
+buj
+aHk
+blh
+aJB
+bop
+bqr
+bvF
+nWH
+bvB
+wdc
+bQz
+bOQ
+bOQ
+bOQ
+bOQ
+bOQ
+bQz
+bLr
+gTx
+cZS
+tCR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(97,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+beB
+aaa
+wWX
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+cFU
+cFU
+aCD
+aCD
+cFU
+bUt
+cFU
+aCD
+aCD
+abt
+abr
+abD
+abP
+arm
+acD
+acY
+ado
+adB
+aef
+aww
+cDx
+cEQ
+axO
+agA
+ahi
+aBt
+aie
+aiQ
+aFr
+aGU
+alx
+aJV
+aLM
+aNs
+aSh
+aQo
+qbZ
+aTW
+syU
+aXn
+aZg
+ayq
+bJF
+aCj
+bgl
+buj
+bjC
+aIN
+aKi
+bqq
+czx
+bss
+aQM
+bvC
+bxA
+bQz
+bOQ
+bOQ
+bOQ
+bOQ
+bOQ
+bQz
+bLr
+bMU
+qYN
+tCR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(98,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aJc
+aaf
+aaa
+aag
+aag
+bKY
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abt
+abs
+abF
+abQ
+arm
+acE
+acZ
+awx
+arm
+cyY
+aeA
+cDy
+cER
+axP
+ayV
+aAc
+aBu
+aif
+avG
+ajY
+akP
+aly
+amw
+aLM
+aNs
+apc
+aQo
+arE
+bbm
+syU
+aXo
+aZe
+bbh
+bJF
+bet
+bgm
+buj
+yet
+mnB
+eqB
+gNb
+fIO
+uah
+nWH
+bvD
+aVy
+bQz
+bOQ
+bOQ
+bOQ
+bOQ
+bOQ
+bQz
+bLr
+bMU
+dmt
+tCR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(99,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aag
+aag
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+abt
+abt
+abG
+ckB
+arm
+arm
+ada
+arm
+arm
+aeg
+azT
+aFt
+awy
+axQ
+ayW
+aAd
+aBv
+aCP
+aFt
+aFs
+aGV
+aJW
+aJW
+aLN
+aNs
+aOU
+aQo
+aSi
+bbm
+syU
+aXp
+awU
+bbi
+bJF
+aCk
+aDF
+buj
+aHl
+aIP
+aKj
+buB
+uFr
+bst
+aQN
+bvE
+bxB
+bQz
+bOQ
+bOQ
+bOQ
+bOQ
+bOQ
+bQz
+bLr
+bMU
+xPZ
+tCR
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(100,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaf
+aag
+aag
+aaf
+aaf
+aaf
+acm
+abH
+ckC
+syU
+aeC
+ctR
+aeC
+syU
+aeC
+aeC
+syU
+syU
+syU
+aFu
+aFu
+fMS
+aFu
+aFu
+iAD
+jzV
+aIv
+lyB
+muO
+aNt
+aOV
+aQo
+aSj
+bbm
+syU
+sIk
+aZg
+bGg
+bzy
+wMO
+bzy
+buj
+buj
+buj
+buj
+buj
+buj
+buj
+buj
+bzv
+pXv
+wtP
+bDb
+bDb
+bDb
+bDb
+bDb
+bQz
+eRd
+bMU
+mSi
+bZi
+aaa
+aaa
+aaa
+aag
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+fVP
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xgL
+xgL
+lhH
+xgL
+xgL
+lhH
+xgL
+xgL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(101,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+bKY
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+abJ
+chh
+ckP
+aro
+acH
+adb
+cvV
+adE
+aei
+aeD
+avv
+afN
+afW
+aFu
+aAf
+hYq
+aig
+aFu
+aFu
+tkH
+tkH
+aJY
+tkH
+tkH
+tkH
+aQr
+aSl
+aTW
+syU
+aXq
+aZg
+vdd
+bzy
+aCl
+xEQ
+iKM
+yij
+lXu
+bzy
+wcF
+wcF
+bzv
+buk
+bvG
+bxD
+bzt
+idI
+bDc
+lMA
+eXF
+idI
+bHV
+geo
+bMU
+xyV
+bZi
+tEK
+aaf
+aaf
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+sEx
+xgL
+vrg
+rIm
+vrg
+vrg
+gLO
+vrg
+xgL
+xvF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+hsI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ukI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(102,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+agO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cuR
+aag
+aag
+aag
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+abJ
+abJ
+ckR
+ack
+acI
+adc
+cvW
+aeE
+aej
+aeE
+cDz
+alR
+afX
+agC
+aAg
+fPk
+aih
+aiT
+ajZ
+tkH
+alz
+lzd
+mvC
+aoB
+aOX
+aQr
+aSl
+aTX
+syU
+avf
+aZh
+vfn
+bcS
+wNa
+bgo
+pyN
+iKg
+aVb
+bzy
+bou
+oEb
+bzv
+aQO
+bvH
+nQk
+aYd
+idI
+bfo
+bhw
+bGG
+xBQ
+bJR
+fgJ
+bNb
+bZi
+bZi
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aag
+aaa
+cuR
+wWX
+aag
+aag
+aag
+aaf
+aag
+aag
+aaf
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+sEx
+xgL
+vtR
+ihl
+rxj
+dwh
+jZO
+nmN
+xgL
+xvF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(103,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aag
+aag
+aag
+aaf
+aag
+aaf
+cuR
+aaf
+aaf
+wWX
+aag
+aag
+aag
+aag
+aag
+nnG
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+wxw
+aaa
+abx
+abJ
+abJ
+acm
+aSm
+aem
+syU
+awQ
+aek
+awO
+avJ
+awm
+syU
+aFu
+aAh
+ahD
+aLQ
+aEb
+aFv
+aGX
+kGf
+lAh
+anE
+tkH
+tkH
+aQr
+aSm
+aTX
+syU
+avg
+awV
+vfz
+vVQ
+aCm
+aDG
+dUH
+bQO
+hhw
+dyK
+aLZ
+bqu
+bzv
+bum
+aST
+aVJ
+aYe
+bap
+bfp
+tna
+dKV
+idI
+bHV
+orP
+bZi
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+sEx
+lhH
+vtR
+wjE
+wnt
+wnt
+hDz
+nmN
+lhH
+xvF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+qIw
+rEL
+svD
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+xxf
+hUO
+svD
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(104,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+abx
+abK
+abK
+acm
+bcV
+auh
+syU
+syU
+syU
+syU
+syU
+awA
+doj
+aFu
+aAi
+ahE
+nJh
+nJh
+nJh
+tkH
+aIx
+amx
+myq
+aoG
+apy
+aQr
+bcV
+aTX
+syU
+sIs
+uaW
+vhB
+bzy
+aCo
+bgp
+bzy
+rVs
+rVs
+bzy
+nGq
+bqz
+pqw
+rii
+bvI
+qoN
+bzu
+idI
+idI
+idI
+idI
+idI
+bHL
+brK
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+sEx
+xgL
+vtR
+wjE
+wnt
+wnt
+hDz
+nmN
+xgL
+xvF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+svD
+sXK
+hgv
+aaa
+aaa
+aaa
+fcX
+aaa
+aaa
+aaa
+mga
+fhH
+svD
+aaa
+aaa
+aaa
+fcX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(105,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aby
+chi
+ckX
+csF
+acL
+auh
+syU
+adI
+atX
+aeJ
+syU
+awB
+awB
+aFu
+aAj
+ahF
+aij
+aEd
+aka
+tkH
+aIx
+amy
+mza
+tkH
+tkH
+tkH
+syU
+aTX
+syU
+avh
+awW
+ayA
+aAT
+bzy
+bzy
+bzy
+bzy
+bzy
+bzy
+bow
+nGq
+bzv
+bzv
+bzv
+gkY
+bzv
+cbx
+bfr
+hwR
+bGI
+cbx
+gLq
+brL
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+sEx
+xgL
+rcp
+tAj
+vEq
+eTM
+tAj
+rcp
+xgL
+xvF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+svD
+eXP
+lNx
+aaa
+aaa
+aaa
+vzM
+aaa
+aaa
+aaa
+kzO
+lKi
+svD
+aaa
+aaa
+aaa
+vzM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(106,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+brG
+brG
+brG
+brG
+brG
+csF
+csF
+csF
+aaa
+aaa
+csF
+chj
+chj
+csF
+csh
+auh
+syU
+cxq
+atZ
+cBK
+syU
+syU
+syU
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+tkH
+alB
+amz
+mzG
+tkH
+aPa
+aQt
+qev
+aTY
+syU
+bcM
+aZj
+bbo
+aAU
+aCq
+bgr
+oDg
+tBE
+wNH
+bqy
+bqy
+bLC
+nGq
+cbx
+aSU
+aSU
+aSU
+cbx
+bfs
+nGq
+vZT
+cbx
+bHL
+oxg
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+sEx
+sEx
+sEx
+sEx
+sEx
+sEx
+sEx
+cmO
+rcp
+lhH
+seD
+seD
+lhH
+rcp
+rtk
+xvF
+aaa
+aaa
+tYk
+tYk
+tYk
+tYk
+aaa
+aaa
+yaI
+yaI
+uAt
+uNA
+yaI
+aaa
+aaa
+wnB
+aaa
+aaa
+yaI
+uNA
+uAt
+yaI
+yaI
+aaa
+aaa
+wnB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(107,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaM
+aaM
+aaM
+aaM
+aaN
+aAt
+aJd
+aNM
+aaM
+aaa
+aaa
+bcl
+biT
+bod
+brG
+brG
+bDf
+bJa
+bOr
+brG
+akw
+bYc
+csF
+ccD
+ccD
+ami
+chk
+aov
+cqQ
+acM
+auh
+syU
+ath
+atZ
+vxj
+avM
+bcV
+aSl
+syU
+ffZ
+fPE
+ail
+aiU
+aFw
+tkH
+tkH
+tkH
+tkH
+tkH
+apz
+aQu
+syU
+aTX
+syU
+avj
+awX
+ayB
+vVV
+lLl
+xHG
+gjJ
+ekL
+wNH
+bqy
+lrE
+bqy
+nGq
+cbx
+bxI
+aVL
+aVL
+cbx
+cbx
+ddf
+cbx
+cbx
+rDu
+brM
+sEx
+cza
+cza
+sEx
+sEx
+sEx
+sEx
+sEx
+sEx
+sEx
+sEx
+sEx
+cza
+cza
+cza
+sEx
+cza
+cza
+cza
+sEx
+sEx
+ckq
+cAq
+ckJ
+clA
+hZZ
+sEx
+xvF
+xvF
+nns
+gju
+gju
+xvF
+xvF
+xvF
+xvF
+xvF
+xvF
+tYk
+gbG
+cuq
+tYk
+wnB
+wnB
+wnB
+cxw
+rXE
+cyD
+yaI
+yaI
+wnB
+wnB
+wnB
+yaI
+yaI
+rFY
+rXE
+nYw
+yaI
+yaI
+wnB
+wnB
+wnB
+yaI
+cDD
+gEM
+vEe
+hgv
+xmb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(108,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aaM
+aaM
+agQ
+ajC
+apB
+aeq
+aAv
+aJf
+aNN
+aaM
+aTk
+aTk
+aTk
+biU
+bof
+brH
+bxM
+bDg
+bJb
+bOs
+bRs
+akw
+bYd
+caS
+akr
+akr
+abz
+chl
+abR
+cqR
+acN
+auh
+syU
+ati
+vxj
+auP
+vxj
+aSm
+aSl
+syU
+fge
+aBD
+gTh
+aiV
+aFx
+syU
+ajE
+aaW
+aaW
+syU
+pmJ
+syU
+syU
+aTX
+syU
+avk
+awY
+ayC
+wag
+aCq
+myp
+gDI
+xPR
+wNH
+qkR
+ijU
+lrE
+nGq
+fFv
+bvL
+bft
+bzx
+bBc
+bft
+bhx
+bZk
+bmk
+bNg
+bsf
+bNg
+bBe
+cbk
+bMj
+bTh
+cbk
+ceH
+clh
+cnc
+cnc
+ctl
+cnc
+cnc
+mId
+eNs
+cnc
+ebf
+tfd
+uSG
+uSG
+uSG
+uSG
+aTV
+clh
+ctM
+rAq
+cBh
+iSR
+fHv
+jsn
+uDx
+uDx
+mOp
+fuP
+jeH
+fcO
+sMJ
+tuj
+ygd
+yhq
+cur
+jqO
+qfA
+cwk
+cvN
+riV
+qtk
+pPG
+pxL
+pxL
+rQI
+abE
+afF
+pxL
+pUi
+pPG
+qtk
+cCv
+jmh
+pxL
+pxL
+vVG
+cCO
+djg
+fyL
+jTu
+fbR
+eMc
+wXh
+aaa
+cGW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(109,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaM
+adW
+agS
+ajD
+apD
+auC
+aAw
+aJg
+aNO
+aQG
+aTl
+aYk
+bdj
+biV
+bog
+brI
+byd
+bDj
+bJc
+bOt
+brG
+akw
+bYi
+caU
+akt
+agV
+alH
+amM
+clO
+cqS
+csF
+arq
+syU
+syU
+aua
+syU
+syU
+syU
+syU
+syU
+syU
+aBA
+syU
+aSl
+aSl
+syU
+vxj
+atZ
+vxj
+aPc
+vxj
+aqI
+vxj
+aTX
+syU
+aXr
+aZk
+bbp
+wbB
+wNH
+wNH
+wNH
+wNH
+wNH
+bqy
+dPi
+bsD
+bsD
+cbx
+nve
+baq
+aYf
+baq
+bfu
+rDi
+bkr
+bmG
+nGq
+bLC
+nGq
+bPb
+nGq
+nGq
+nGq
+nGq
+vEN
+nGq
+bYe
+cbw
+cbx
+ibC
+jBP
+nGq
+fbc
+nGq
+nYb
+vGJ
+nGq
+cbx
+mOG
+mOG
+mOG
+mOG
+mOG
+cma
+cbx
+cbx
+csZ
+csY
+kal
+fjz
+fjz
+fjz
+pIK
+kml
+oUx
+liI
+nsS
+glE
+cus
+byE
+cwV
+pcD
+aRV
+wrK
+pHl
+mTb
+trt
+czq
+fJr
+adh
+pFV
+pFV
+gkZ
+mTb
+fbN
+qim
+uzy
+xOD
+xOD
+xDR
+xFz
+cDk
+cDE
+fGl
+xRG
+lEm
+qbR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(110,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaM
+aeo
+agT
+ajG
+agT
+aeq
+aBL
+aJh
+ahm
+aRf
+aTm
+aYn
+bdF
+biW
+bov
+brH
+brH
+brH
+brH
+brG
+brG
+bUu
+bUu
+caW
+bUP
+aoc
+amj
+anp
+aow
+acn
+csF
+arr
+vxj
+vxj
+atk
+auR
+sFM
+awG
+axY
+emv
+fgN
+sFM
+sFM
+sFM
+sFM
+sFM
+sFM
+sFM
+aNv
+aNv
+aPb
+pjT
+aNv
+riG
+syU
+sJI
+ubU
+vhS
+cbx
+wPD
+xIf
+bDQ
+vGJ
+cbx
+cbx
+cbx
+cbx
+cbx
+cbx
+bGL
+nGq
+bEP
+bEP
+bfv
+bEP
+bEP
+bmH
+cAq
+crp
+crp
+bBv
+crp
+crp
+ckq
+bUx
+ceI
+bWJ
+bYf
+gWC
+cbx
+wcF
+mOG
+duE
+vvY
+mOG
+mOG
+mOG
+mOG
+mOG
+ahs
+sCV
+nVA
+wAZ
+mOG
+cpl
+cmB
+cbx
+xjv
+wql
+qUd
+nxW
+jIY
+dZA
+wjc
+jIY
+dZA
+iIA
+eaB
+glE
+cux
+cvb
+wnB
+yaI
+tBN
+yaI
+wnB
+yaI
+yaI
+yaI
+wnB
+uNA
+lxY
+gPC
+uNA
+xvb
+wQP
+wNj
+uNA
+gPC
+iSG
+uNA
+wnB
+yaI
+cDF
+gEM
+etF
+xsZ
+wnB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(111,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaM
+aeq
+aeq
+aeq
+aeq
+aeU
+aBT
+aJi
+aNP
+aRo
+aTn
+aYo
+bdG
+bjt
+boB
+agt
+bye
+bDk
+bJd
+aTk
+bRt
+bUN
+bUu
+caX
+aku
+abh
+abA
+abL
+abS
+cqT
+aqm
+ars
+adJ
+adJ
+ael
+cBL
+aBC
+aBC
+aBC
+aBC
+aBC
+aBC
+vxj
+vxj
+aKf
+aHb
+aIA
+aKd
+arE
+aNw
+aPc
+aqJ
+bcY
+asK
+atP
+avl
+awZ
+ayD
+wct
+aDH
+aDH
+aDH
+aDH
+aDH
+aDH
+aDH
+aDH
+aDH
+bNg
+aSV
+aVU
+bEP
+oTZ
+bfx
+vKA
+bEP
+bGL
+bpy
+crp
+eZS
+bCd
+gKx
+crp
+crp
+crp
+crp
+crp
+crp
+crp
+crp
+crp
+mOG
+nxC
+kLg
+rtL
+iRP
+ruc
+tfB
+cjH
+iHR
+cks
+evZ
+ipd
+mOG
+cmc
+cmx
+cbx
+jRN
+dYg
+lKh
+lKh
+hOK
+hOK
+lKh
+hOK
+hOK
+lKh
+lKh
+cvG
+cuu
+cvc
+tYk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xDJ
+lRj
+yjc
+wuI
+wnB
+wnB
+wnB
+xDJ
+kVy
+kJY
+wuI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(112,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaf
+aaa
+aaa
+aaa
+aaN
+aer
+ahk
+ajH
+apE
+avU
+aBU
+aJj
+aNQ
+aeU
+agt
+agt
+agt
+bju
+boC
+brN
+byx
+bDl
+bJe
+aTk
+bRu
+bUP
+bYL
+cba
+app
+cdR
+atq
+anq
+cmj
+atq
+atq
+atq
+atq
+atq
+auh
+aeK
+aBC
+awI
+aya
+aze
+aAn
+aBC
+syU
+syU
+syU
+syU
+aLS
+aLS
+aLS
+syU
+syU
+syU
+syU
+syU
+auk
+sKG
+aZm
+ayE
+auk
+cbx
+cbx
+cbx
+cbx
+cbx
+cza
+cza
+cza
+cbx
+cbx
+cbx
+cbx
+bEP
+bbR
+bfx
+bhy
+bEP
+bmJ
+bpz
+crp
+wuK
+lXn
+bFW
+crp
+bTk
+bUz
+ceK
+bWL
+klh
+fLN
+myK
+xqE
+lKy
+ybA
+hiu
+mAg
+cjL
+cjL
+cjL
+ijW
+mVG
+cIl
+fPV
+wAZ
+mOG
+rRH
+lal
+cbx
+xjv
+ikD
+hOK
+qlp
+sMp
+mAe
+gcj
+fjv
+peJ
+pBE
+lKh
+jFB
+gVl
+cvd
+cvG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+fCA
+uQN
+plF
+xsZ
+aaa
+aaa
+aaa
+fCA
+pnz
+kFC
+xsZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(113,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+abc
+aeM
+ahl
+ahl
+aqK
+ahl
+ahl
+aJk
+aNR
+aRp
+aTo
+aYs
+bdH
+bjw
+boE
+agt
+agt
+agt
+agt
+aTk
+bRv
+bUQ
+bUu
+akw
+akw
+akw
+atq
+anr
+aoy
+apq
+aqn
+art
+ass
+atq
+aue
+ayd
+cDA
+azh
+azh
+azf
+aAo
+aBC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bgq
+aul
+avm
+axb
+ayG
+aAV
+bgq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bEP
+xUn
+hmD
+dyd
+bEP
+wuu
+bZk
+crp
+jaC
+bCe
+lSA
+crp
+szk
+cmF
+hDe
+cmF
+qLC
+hsW
+cmF
+fil
+lKy
+jJH
+kyt
+chp
+chp
+chp
+cjL
+ijW
+aQb
+wMF
+ipd
+iBu
+mOG
+vxy
+cAq
+cbx
+fCI
+vwF
+nMv
+rWc
+jrF
+lVs
+fPb
+vor
+rWc
+nYo
+hOK
+ihz
+gVl
+cve
+tYk
+aaf
+aaf
+aaf
+aaf
+aaf
+nnG
+aaf
+aaa
+pEH
+eiA
+qJT
+svD
+aaa
+aaa
+aaa
+svD
+spQ
+eiA
+pEH
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(114,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aag
+aaf
+aaf
+aaf
+abe
+aeN
+ahm
+ahm
+aqL
+avV
+aBV
+aJl
+aNS
+aRq
+aTm
+aYn
+bdT
+biW
+boF
+brO
+byy
+bDs
+bJf
+aTk
+ajy
+ajy
+ajy
+ajy
+akx
+ajy
+atq
+abM
+aoE
+apu
+ary
+ary
+ary
+atq
+aud
+cBM
+aBC
+awK
+afY
+end
+aBC
+aBC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bgq
+aum
+sKT
+aZm
+ayH
+weK
+bgq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bEP
+bEP
+pwV
+wCT
+bEP
+ceT
+bpB
+crp
+fgg
+bCf
+bFX
+oAV
+fhU
+qeJ
+wqc
+gWL
+nBE
+nke
+cmF
+uVm
+lKy
+gQu
+sYW
+chp
+chp
+chp
+cjL
+ijW
+hoK
+ckv
+mOG
+mOG
+mOG
+dvr
+cbx
+cbx
+qJx
+pce
+hYY
+hMG
+vpB
+ctv
+eXe
+rTO
+peJ
+dzl
+hOK
+mSd
+tkz
+cvf
+tYk
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(115,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+abf
+aeQ
+ahl
+agS
+arH
+awe
+aBW
+aJm
+aNU
+aRr
+aTp
+aYo
+bdG
+bjx
+boR
+agt
+byz
+bDt
+bJg
+agt
+bRw
+bVe
+bYM
+ajz
+aky
+all
+atq
+ans
+aoA
+cqU
+aqp
+arv
+asu
+atq
+cyZ
+syU
+aBC
+aBC
+aBC
+aBC
+aBC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aKg
+aKg
+bgq
+bgq
+bgq
+aKg
+aKg
+aKg
+avn
+aZm
+bbq
+aKg
+bzL
+bzL
+bDr
+bDr
+bDr
+bzL
+bzL
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bEP
+bEP
+bEP
+bEP
+bGL
+nGq
+bsG
+bwG
+bCg
+bFY
+crp
+ffB
+lpo
+oyi
+pGs
+lMb
+gRF
+cmF
+sFt
+mOG
+dTN
+cWj
+ekk
+cjL
+cij
+cjL
+cgd
+pMt
+rDB
+mOG
+cmQ
+odS
+cmg
+lVD
+tDO
+kGV
+dlW
+hOK
+hwF
+sMp
+rtw
+ftm
+fhX
+gyf
+peJ
+hOK
+ctK
+gVl
+vZE
+cvG
+aaa
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+xDr
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(116,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abg
+aeR
+ahl
+ahl
+arL
+ahl
+ahl
+aJk
+aNV
+aeU
+agt
+agt
+agt
+bjy
+bpo
+agt
+agt
+agt
+agt
+agt
+bRz
+auj
+bYN
+ajA
+ccH
+cex
+atq
+chm
+aoE
+apu
+ary
+ary
+cvX
+atq
+auf
+syU
+afi
+ant
+syU
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+bgq
+bgq
+aKg
+mAZ
+nqK
+apG
+aqN
+qjZ
+rkp
+seO
+ayL
+aZm
+ayL
+wfl
+bez
+aVV
+bid
+bjG
+blo
+aVV
+bzL
+bDr
+bDr
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+cbx
+eia
+aSV
+clg
+clg
+clg
+clg
+clg
+crp
+lNm
+kwC
+giY
+qQL
+cmF
+kOS
+cmF
+oqA
+fhn
+gMr
+fBN
+chp
+chp
+chp
+vPP
+cjL
+eXg
+ygw
+mOG
+cli
+eKZ
+cmh
+cmC
+cmT
+cny
+hPC
+hOK
+xoO
+tTo
+fXq
+dSY
+xha
+ioL
+xof
+lKh
+ctJ
+gVl
+cvg
+bXA
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(117,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaM
+aeT
+ahn
+ajJ
+arM
+awf
+aBX
+aJo
+aNW
+aRs
+aTq
+aYt
+bdU
+bjz
+bpp
+brQ
+byA
+bDu
+bJh
+bOw
+bRA
+bVg
+bYQ
+auj
+anu
+ceA
+atq
+chI
+abU
+aps
+asw
+asw
+asw
+atq
+auh
+cBN
+vxj
+cEZ
+syU
+aaa
+aaa
+aaa
+aaa
+aaa
+bgq
+bgq
+alI
+amC
+anJ
+aoK
+apI
+asQ
+asQ
+asQ
+bcZ
+ayL
+aZm
+ayL
+bcZ
+blp
+blp
+bie
+eGO
+blp
+blp
+boH
+bqD
+bDr
+bDr
+aaa
+aaa
+aaa
+aaa
+aaa
+cbx
+aai
+nGq
+bpD
+btl
+bwI
+bCi
+clg
+bMl
+kOl
+cbA
+uqj
+kOl
+kOl
+npa
+emI
+iWj
+hJw
+cdT
+cfb
+chq
+chq
+chq
+dpN
+chq
+lGf
+cpm
+mOG
+uDr
+jZL
+cmk
+nIS
+hZr
+qLX
+kjI
+lKh
+lKh
+lKh
+lKh
+lKh
+lKh
+lKh
+lKh
+lKh
+ctK
+cux
+viV
+cvG
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(118,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aaM
+aeU
+aeU
+aeU
+aeU
+aeU
+aBZ
+aJp
+aNX
+aRt
+aUd
+aYu
+bdV
+bjA
+bpr
+bsY
+byB
+bDv
+bJh
+bOx
+bRB
+bVh
+bYR
+cbc
+aqu
+alo
+atq
+anv
+aoE
+apv
+atq
+atq
+atq
+atq
+aem
+syU
+afk
+awO
+syU
+aaa
+aaa
+aaa
+aaa
+bgq
+bgq
+aHe
+ikG
+aFF
+aLT
+aoL
+apJ
+aqP
+aFF
+bJY
+cbJ
+sLS
+aZm
+bbr
+aXs
+boI
+bgI
+uhO
+bjH
+lGm
+xjG
+bgI
+bqE
+aQQ
+bDr
+bDr
+aaa
+aaa
+aaa
+aaa
+cbx
+bGL
+nGq
+cNV
+btr
+bNi
+bCj
+clg
+crp
+bVm
+cbF
+dwY
+dwY
+bVm
+crp
+cau
+cbE
+mOG
+cdU
+cCf
+cgk
+cFb
+ewQ
+snD
+bYm
+vgH
+ckr
+mOG
+xZK
+clJ
+cmp
+rNn
+hZr
+tfo
+nKk
+nPL
+mWD
+eDi
+twa
+tmd
+vSv
+qXc
+eMF
+hNv
+ctL
+cuy
+cvh
+tYk
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(119,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaM
+aft
+aeU
+ajM
+ajM
+aeU
+aCW
+aJk
+aNY
+aeU
+aeU
+aeU
+aeU
+aeU
+aeU
+bsZ
+byC
+bDw
+bJh
+bOy
+bRE
+bVj
+bYS
+cbd
+ccI
+alp
+atq
+anw
+aoC
+apu
+aqt
+ary
+asy
+atq
+auh
+syU
+syU
+syU
+syU
+aaa
+aaa
+aaa
+bgq
+bgq
+aHe
+cky
+amE
+amE
+anK
+aoM
+aQv
+plk
+qkB
+rkS
+sfi
+sMt
+aZn
+aUk
+aAW
+beC
+bvN
+bvN
+bjI
+blr
+aKn
+bsM
+bsM
+bqE
+aQQ
+bDr
+bDr
+aaa
+aaa
+aaa
+cbx
+bBd
+cAq
+clg
+bts
+bNj
+nMm
+clg
+bMn
+clj
+lRO
+bVN
+bWN
+cnF
+dVq
+vyn
+jTH
+mOG
+mOG
+nyM
+mOG
+mOG
+isR
+isR
+isR
+hgO
+vSK
+mOG
+hZr
+ntX
+wKG
+hZr
+vcT
+qJx
+nFz
+coJ
+mWD
+crk
+hIn
+xxy
+crk
+crk
+foZ
+mWD
+kfT
+gVl
+iKC
+tYk
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(120,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaM
+afw
+aho
+afw
+afw
+awg
+aCX
+aKR
+aNZ
+ahl
+aUg
+aYv
+bfy
+bjD
+aUg
+bta
+byD
+bDx
+bJh
+bOz
+bRJ
+bRN
+bYT
+bRN
+bRN
+ceC
+atq
+anx
+cml
+cqV
+csj
+ctS
+cvY
+atq
+auh
+cBO
+afm
+awQ
+aLS
+aaa
+aaa
+aaa
+bgq
+ajF
+svX
+amE
+aIE
+aKh
+anL
+aoO
+apK
+aqQ
+aUc
+asR
+aXs
+sNg
+abd
+bbt
+aVG
+wRt
+bvZ
+aEP
+jYC
+pnY
+wJe
+pMy
+bEV
+bsM
+bqE
+bvV
+bDr
+aaa
+aaa
+aaa
+cza
+bGP
+tqM
+clg
+pft
+bwJ
+opo
+clg
+bMo
+jVL
+cYh
+jVL
+jVL
+jVL
+crq
+caw
+crq
+cfd
+akl
+hdb
+uba
+chs
+cil
+oHO
+oVe
+rYG
+ecb
+ckO
+rQF
+iIG
+mHl
+gYm
+jxs
+oie
+foz
+ctN
+cta
+vkE
+mcI
+dGB
+kXk
+lgv
+qFK
+mWD
+mkf
+gVl
+cvi
+tYk
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(121,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaM
+aaM
+aaM
+ajN
+arN
+aeU
+aDe
+aKS
+aOa
+aRu
+aUq
+aYw
+bfz
+bjE
+bpK
+btf
+byF
+bDy
+bJi
+bOA
+bRK
+bVk
+bYU
+cbe
+cdl
+any
+atq
+chJ
+aoE
+apw
+atq
+atq
+atq
+atq
+aui
+aae
+afn
+vxj
+aLS
+aaa
+aaa
+aKg
+aKg
+ajB
+ayL
+amE
+alK
+amF
+aQw
+lAv
+apL
+aQw
+aSC
+bIq
+bIq
+aXu
+aZx
+bdb
+aKg
+blu
+blu
+blu
+blu
+blu
+bmX
+tIv
+gPA
+bsM
+bgI
+bvU
+bzL
+bzL
+aaa
+aaa
+cza
+bGN
+ump
+clg
+clg
+bNw
+clg
+clg
+bMp
+chW
+cbB
+chW
+chW
+chW
+chW
+cax
+cbG
+qKm
+cdX
+cfe
+cgn
+rRc
+cim
+bOj
+wsU
+cln
+clm
+egG
+dzX
+clL
+gMz
+cmD
+jxs
+erh
+mGz
+ctb
+mWD
+crk
+crk
+crk
+iSH
+crk
+foZ
+mWD
+myv
+tkz
+kWB
+cvG
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(122,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+aaj
+aDf
+aFB
+aFB
+aSr
+aSr
+aSr
+aSr
+aSr
+aSr
+aSr
+byG
+bDZ
+bJj
+bOB
+bRL
+bVl
+bYV
+bVk
+bRN
+atr
+atq
+chK
+cmm
+cqU
+csk
+ary
+asy
+atq
+czt
+azl
+arE
+awS
+aLS
+aaa
+aaa
+aKg
+aim
+ajF
+aFG
+jAh
+alL
+aQw
+aQw
+aSq
+apN
+aQw
+qkK
+bdc
+bIq
+bIq
+mEJ
+bmX
+bmX
+wRC
+bgA
+aER
+bjL
+ipq
+bmX
+bmX
+bqI
+bsN
+buw
+bvV
+aVV
+bzL
+aaa
+aaa
+cza
+bkt
+bIn
+clg
+bLJ
+bNo
+bNu
+bGK
+nws
+bVr
+cci
+ceM
+lRF
+cnI
+crq
+ceN
+cbH
+ccM
+cdY
+cff
+cgo
+kGU
+cin
+cix
+cmP
+auQ
+clQ
+bGT
+bEZ
+bOk
+cme
+cmE
+jxs
+cnC
+wNx
+gil
+eEU
+cMz
+goF
+uaZ
+hPl
+hEr
+xzX
+hNv
+mkf
+gVl
+cvg
+bXA
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(123,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aaj
+aaj
+aaj
+afx
+ahr
+ajQ
+arO
+awh
+aDs
+aKT
+aKT
+aSr
+aUu
+aYx
+bfB
+bjF
+bpL
+bub
+byH
+bEa
+bJk
+bOC
+bRN
+bVs
+bYW
+cbf
+cdm
+ceD
+atq
+chL
+cmn
+cqV
+csj
+ctT
+cvZ
+atq
+czu
+cBX
+syU
+syU
+syU
+aaa
+aaa
+bgq
+gTM
+hUM
+iCs
+jAR
+kHE
+lAv
+mBH
+nrm
+apO
+aQw
+qkT
+bdc
+sfv
+qmt
+ucm
+ayM
+bdd
+wSU
+bgB
+aES
+bjM
+aIR
+aKo
+aMc
+tdv
+aOk
+bux
+bvW
+bxP
+bDr
+aaa
+aaa
+cbx
+bGP
+wcF
+clg
+btt
+iEe
+cPg
+bQH
+bOc
+xGn
+jHm
+ceN
+chX
+cnJ
+crq
+caz
+ccN
+ccN
+cdZ
+cCh
+ccN
+jxs
+haC
+ckg
+iLA
+ckf
+ssH
+ckQ
+ckf
+nVW
+ckf
+nwn
+wkq
+cnD
+iZh
+iIA
+iCL
+iCL
+iCL
+iCL
+iCL
+iCL
+iCL
+hVT
+pJD
+gVl
+vZE
+cvG
+aaa
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(124,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaj
+aaj
+abk
+act
+act
+act
+arP
+aaj
+aEh
+aKU
+aOb
+aSr
+aUv
+bfG
+aZB
+bkm
+bpM
+buc
+byI
+bEb
+bJh
+bOD
+bRO
+bVu
+bOC
+cbg
+cdo
+ceE
+atq
+chM
+cmA
+cqW
+atq
+atq
+atq
+atq
+czI
+cBY
+aSm
+bcV
+syU
+aaa
+aaa
+bgq
+gUj
+ajF
+iCy
+jAY
+kIt
+lFN
+mDM
+ntH
+ots
+aQw
+qmc
+rkX
+sfI
+qmt
+ueP
+viX
+bIl
+bmY
+bmY
+aET
+bmY
+bmY
+bmY
+bmY
+gmp
+aOm
+buy
+bxQ
+dBF
+bDr
+aaa
+aaa
+cbx
+bGP
+bIp
+clg
+bPd
+thH
+sIQ
+hUT
+bOd
+bVw
+qgm
+sYg
+crq
+crq
+crq
+tge
+ccN
+cxh
+cea
+cfg
+cgq
+jxs
+cip
+cjg
+kqI
+ckf
+uFq
+eLI
+ckf
+ckd
+ckf
+kFH
+wkq
+cnE
+efb
+ghX
+osw
+uht
+nHS
+bmC
+lsM
+jQa
+iCL
+vzL
+yhq
+lBG
+dEU
+tYk
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+yjo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(125,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaj
+aaj
+abl
+afy
+ahu
+akd
+arQ
+ayj
+aEl
+aKV
+aOc
+aSs
+aUx
+aZJ
+bfF
+bla
+bpO
+buu
+byJ
+bEc
+ajy
+ajy
+bRQ
+bVv
+bYZ
+ajy
+ajy
+ajy
+atq
+chN
+cnb
+cqX
+csm
+ary
+asy
+atq
+czJ
+azl
+vxj
+vxj
+syU
+aaa
+aaa
+bgq
+gUk
+aim
+iCy
+jDi
+kII
+lAv
+mDZ
+nuH
+ouo
+aQw
+qmt
+qmt
+qmt
+qmt
+aPu
+bdh
+bIm
+bmY
+xIB
+dEZ
+ihH
+dBK
+dBK
+bmY
+pzf
+aOm
+buy
+bvW
+bxR
+bDr
+aaa
+aaa
+cbx
+bGP
+tqM
+clg
+bLH
+bwK
+bPj
+xdp
+jVL
+crq
+bUB
+ceP
+bWQ
+cod
+crq
+caC
+cuU
+cxi
+ceb
+cCl
+cjN
+jxs
+ssC
+cjg
+aoP
+ckf
+sFE
+bHR
+ckf
+tSo
+ckf
+kFH
+wkq
+frZ
+gch
+dvT
+lkw
+gvv
+htI
+fLS
+vpU
+jCe
+iCL
+gKU
+glE
+gVl
+tYk
+tYk
+aaf
+aaf
+aaf
+aaf
+aaf
+nnG
+aaf
+aaa
+lux
+oip
+pRJ
+hax
+aaa
+aaa
+aaa
+hax
+jwC
+oip
+lux
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(126,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaj
+aaj
+abV
+afz
+act
+akh
+arR
+aaj
+aEr
+aKW
+aOd
+aSt
+aUz
+aZK
+aZB
+aZB
+bqf
+buD
+byK
+bEd
+bJl
+bOE
+bSc
+bVx
+bZb
+cbj
+bJn
+ceF
+atq
+chO
+cpg
+cqY
+csj
+ctU
+cwa
+atq
+czK
+cBZ
+sFM
+cFa
+syU
+aaa
+aaa
+aKg
+gUV
+hUM
+svX
+jDi
+kJg
+lAv
+aQw
+aQw
+ouA
+aQw
+qmD
+bdd
+sfU
+plL
+ueT
+bdh
+wfV
+bmY
+bgE
+bih
+bjP
+xGq
+bmZ
+bmY
+gDg
+aOn
+bqE
+bxQ
+eLs
+bzL
+aaa
+aaa
+cbx
+bGP
+bIr
+clg
+bLI
+bNp
+bPg
+xdp
+bRU
+bTl
+qPU
+bVO
+chY
+coe
+crq
+ctm
+cuU
+cxi
+cec
+cCm
+cgs
+jxs
+cir
+cjh
+fvE
+ckf
+syd
+dSc
+ckf
+syd
+ckf
+syd
+wkq
+xCD
+tCI
+xfH
+osw
+tHp
+wNh
+dLA
+eeQ
+uUh
+iCL
+eaB
+glE
+jPB
+tYk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dVT
+fBW
+iwC
+bos
+aaa
+aaa
+aaa
+dVT
+jxe
+nzm
+bos
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(127,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaj
+aaj
+aaj
+aaj
+afQ
+ahJ
+akF
+aaj
+aaj
+aEs
+aKX
+aOe
+aSv
+aUA
+aZN
+aZB
+blb
+bqh
+buE
+byM
+bEe
+bJm
+bOF
+bSB
+bSB
+bZd
+cbl
+bJn
+bJn
+atq
+chQ
+cpj
+cqZ
+anq
+atq
+atq
+atq
+aSl
+syU
+vxj
+cFi
+syU
+enG
+enG
+aKg
+gXB
+hUM
+iCX
+jDs
+kKp
+blu
+mEp
+nyy
+ouT
+plL
+qmX
+bmX
+bmX
+bmX
+bmX
+bmX
+bmX
+bii
+bgF
+aEU
+aHo
+klR
+aKr
+bmY
+klO
+aOo
+aQV
+bxQ
+aVV
+bzL
+bDr
+bDr
+cbx
+bGP
+bIu
+clg
+dwx
+nIX
+bCl
+ejk
+crq
+crq
+pDF
+bVP
+bWR
+bYk
+crq
+lTp
+ccN
+ccP
+cei
+cfo
+kgw
+jxs
+cis
+cji
+cji
+kHl
+cVG
+jtu
+clr
+oaL
+lFS
+qYm
+jxs
+quO
+tCI
+hWv
+iCL
+osw
+osw
+miZ
+osw
+osw
+iCL
+pMR
+ivF
+qkD
+tYk
+jqz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+scm
+mkX
+mDJ
+qTK
+jqz
+jqz
+jqz
+scm
+smo
+mnN
+qTK
+aaa
+aaa
+aaa
+aaa
+rIW
+pov
+wfB
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(128,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaj
+aaj
+aaw
+abW
+afz
+act
+akG
+arS
+aaj
+aFB
+aKY
+aPo
+aSr
+aSr
+aZO
+bfH
+blc
+bqi
+aSr
+byN
+bEf
+bJn
+bOG
+bSC
+bVy
+bZl
+cbn
+bJn
+ceG
+cgL
+chR
+cpw
+cra
+csn
+ctV
+cwb
+cxr
+syU
+syU
+syU
+cFj
+dpO
+enR
+fia
+fQL
+gZm
+hVh
+bUd
+jEc
+kKF
+bmX
+bmX
+nyy
+ovw
+bdh
+aPu
+bmX
+bdg
+bdg
+bdg
+bdg
+bdg
+bii
+bgG
+pIs
+bjQ
+bgG
+bgG
+aMi
+aMQ
+bsO
+aRa
+bwa
+qBY
+bzL
+bBp
+bDn
+bEW
+bGR
+cbx
+clg
+clg
+clg
+clg
+clg
+cuU
+cuU
+ccU
+wtM
+mor
+cuU
+cuU
+ccN
+ccN
+ckj
+czb
+cfi
+ckj
+jxs
+nMj
+wkq
+wkq
+jxs
+cht
+cna
+jxs
+wkq
+wkq
+jxs
+xSl
+pqA
+tCI
+ghX
+jkU
+lhV
+lhV
+unU
+lhV
+eyV
+hVT
+gKU
+glE
+gVl
+qIz
+jeg
+tDT
+ogN
+tDT
+jqz
+tDT
+tDT
+tDT
+jqz
+fMV
+sbX
+sGc
+fMV
+kuT
+obg
+aVw
+fMV
+sGc
+fHf
+fMV
+jqz
+ogN
+tDT
+jqz
+tDT
+hax
+mLP
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(129,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+aag
+aaa
+aaa
+aaa
+aaj
+aaj
+aax
+acp
+afR
+act
+akH
+arT
+ayk
+aFQ
+aKZ
+aPp
+aSx
+aUB
+aZY
+bfI
+bfI
+bfI
+buF
+byO
+bEg
+bJo
+bOH
+bSD
+bVz
+bZx
+cbo
+cdp
+cfH
+cgM
+chS
+cpx
+chS
+cso
+ctW
+cwc
+cxs
+czO
+cCa
+cDB
+cFk
+dpQ
+eqL
+fiw
+fRL
+had
+had
+iEH
+jEm
+kLl
+lIC
+bmX
+nAI
+owy
+bdh
+aPu
+bmX
+bdg
+bdg
+bdg
+bdg
+bdg
+aCt
+bgI
+aEV
+aHp
+aIT
+bgI
+boZ
+aNz
+aPd
+aQY
+bvZ
+bvZ
+aYl
+bbT
+bDo
+biw
+bkw
+bIt
+bKb
+bLK
+bwL
+bCn
+hpC
+bRX
+bTo
+ccQ
+ajm
+ajn
+pxb
+pxb
+caE
+cbN
+kLv
+cee
+cfj
+ckE
+wPa
+ciu
+cgy
+wTx
+vLn
+fUQ
+cmH
+fmH
+woJ
+mZR
+rwP
+sEv
+rwP
+pli
+wTx
+sKq
+cgy
+cgy
+cgy
+cgy
+lTI
+cpd
+ltg
+fDv
+tkz
+rsq
+vFr
+tbc
+rFo
+rFo
+nAW
+rFo
+rFo
+kVB
+uxj
+xvd
+drD
+drD
+iHG
+rFo
+rFo
+rFo
+pdU
+drD
+drD
+sdR
+wZn
+tBM
+pEa
+tDT
+sBI
+luQ
+hax
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(130,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+aaf
+aaf
+aaf
+aac
+aaj
+aaj
+aay
+acs
+afS
+ahL
+akJ
+arU
+azi
+aGh
+aLa
+aPr
+aSz
+aUC
+aSz
+bfJ
+aSz
+aSz
+buO
+byP
+bEh
+bJq
+bOK
+bSF
+bVB
+bZI
+cbp
+cdq
+cfI
+cgO
+chT
+cpy
+crl
+csp
+ctX
+cwd
+cxu
+czV
+cCb
+cDC
+cFM
+dsj
+erE
+dsj
+dsj
+dsj
+dsj
+dsj
+jEn
+kLo
+lJs
+mEJ
+aZC
+owO
+pmd
+qnA
+bmX
+bdg
+bdg
+bdg
+bdg
+bdg
+beK
+bgH
+bsM
+aHq
+jgG
+bjI
+boU
+bvN
+jMS
+bvN
+bvN
+bvN
+bzM
+bBq
+bfA
+bBq
+pda
+bmP
+bpE
+eBm
+oEU
+rDC
+oEU
+oEU
+nwl
+ccl
+cuV
+caF
+cuV
+cuV
+ncb
+cuV
+cuV
+czc
+cfk
+eBm
+chy
+eBm
+oEU
+rDC
+oEU
+oEU
+jdw
+nwl
+oEU
+vRq
+jYe
+rGo
+oEU
+rEG
+jqg
+jKf
+oEU
+ieG
+lHu
+oEU
+eBm
+pOp
+uKp
+eOG
+wVu
+fyo
+sbw
+tKa
+gUm
+pnQ
+efl
+gUm
+gUm
+gUm
+sCB
+wWx
+gUm
+uWx
+lxe
+gUm
+wjT
+ego
+xnS
+pBG
+mPt
+xnS
+hGu
+hMr
+wyl
+qIV
+dqc
+qrR
+xAj
+aaa
+iis
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(131,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+aag
+aaa
+aaa
+aaa
+aaj
+aaj
+aaz
+act
+afT
+acp
+akK
+ats
+ayk
+aGj
+aLb
+aPs
+aSA
+aUD
+aZZ
+bfK
+bld
+bqC
+buQ
+byQ
+bEi
+bJs
+bOL
+bSH
+bVC
+bZK
+cbq
+cds
+cfJ
+cgO
+chU
+cpM
+crm
+csq
+ctY
+cwe
+cxz
+czY
+cCe
+cDH
+cFN
+dso
+etv
+fix
+fSY
+arK
+arK
+iES
+jHa
+kLB
+lKa
+aXB
+aXB
+aXB
+aXB
+aPu
+bmX
+bdg
+bdg
+bdg
+bdg
+bdg
+beL
+bgI
+bgI
+bgI
+aIV
+bgI
+boZ
+bqQ
+bzO
+buz
+bvZ
+bvZ
+bzN
+bBr
+bDp
+cEX
+bkx
+rtT
+tSD
+ciu
+cgy
+bCo
+kiG
+bOe
+bWd
+jbN
+bVT
+bWU
+sUb
+bZz
+caG
+cbO
+cgy
+cef
+cfn
+cjR
+chz
+civ
+tVq
+cjO
+ckk
+vCe
+ckV
+aZV
+clT
+rgL
+cpB
+bWU
+psn
+sUb
+sUb
+rqw
+bOe
+cbO
+otn
+bVT
+ccq
+cpd
+ltg
+glE
+cux
+uoQ
+vFr
+tbc
+rFo
+dHp
+kHG
+rFo
+rFo
+rFo
+oiQ
+sgY
+gJB
+qPt
+anz
+rFo
+rFo
+uPX
+cND
+gJB
+qPt
+anz
+pPq
+rFo
+xoD
+jqz
+poy
+gzP
+jqz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(132,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaj
+aaj
+aaK
+acu
+agc
+ahP
+akS
+att
+aaj
+aGk
+aLc
+aGk
+aGk
+aUE
+baa
+bfL
+ble
+bqR
+aUE
+byN
+bEm
+bJn
+bPl
+bSI
+bSc
+bZl
+cbr
+bJn
+ceG
+cgP
+cif
+cqf
+crn
+csw
+csw
+csw
+csw
+csw
+aWb
+aWb
+cFO
+dpO
+eup
+fiG
+fTt
+hay
+hVh
+iEr
+jHn
+bUd
+aXB
+aXB
+nDk
+oxE
+aXB
+aPu
+bmX
+bdg
+bdg
+bdg
+bdg
+bdg
+bzL
+xKT
+bjR
+rIA
+rIA
+bna
+boV
+aMQ
+bsO
+aRa
+bwa
+bkR
+bzL
+bBs
+bDq
+bEW
+bKg
+hIE
+hIE
+hIE
+hIE
+hIE
+cbQ
+cbQ
+cbQ
+dbg
+ceQ
+cbQ
+cog
+cog
+cbQ
+cbP
+cgy
+cgy
+cfm
+cgy
+voV
+clW
+clW
+wqh
+wqh
+clW
+clW
+wqh
+wqh
+bIw
+eIM
+bWY
+rfR
+col
+col
+cnf
+rfR
+gJR
+dTv
+soA
+rfR
+ncU
+eaB
+glE
+gVl
+txi
+tVu
+tDT
+ogN
+tDT
+jqz
+tDT
+tDT
+tDT
+jqz
+tDT
+wFF
+rzN
+tDT
+kxM
+gZj
+xXo
+tDT
+nYj
+gWZ
+tDT
+jqz
+ogN
+tDT
+jqz
+tDT
+hax
+jqz
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(133,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aam
+aam
+aam
+aam
+agd
+ain
+akV
+aam
+aam
+aGw
+aLd
+aPt
+aGk
+aUG
+bab
+bgN
+blf
+brh
+buR
+byR
+bEn
+bKI
+bPU
+bSJ
+bSJ
+bZL
+cbs
+cdt
+cfN
+cgQ
+cig
+cqg
+crB
+csx
+ctZ
+cwf
+cxA
+csw
+aWb
+cDP
+cDZ
+aWb
+enG
+enG
+asV
+vad
+hWE
+iEX
+jHH
+kLD
+aUh
+mES
+nDA
+oxN
+aXB
+aPu
+bmX
+bmX
+bmX
+bmX
+bmX
+boY
+boY
+bgK
+aFH
+hRr
+aIW
+boY
+boY
+xRo
+bsP
+buA
+bwe
+lkL
+bzW
+bDr
+bDr
+hIE
+bGS
+bIx
+nBr
+bLN
+bwR
+hIE
+pux
+bOg
+bWu
+eZt
+teh
+chZ
+coh
+bZA
+caI
+cbQ
+ccS
+ceh
+qkP
+ccS
+ckj
+fFD
+xKO
+cjP
+trT
+xKO
+trT
+clv
+clW
+cms
+xtM
+rfR
+cnL
+com
+rrL
+dWl
+vAx
+gar
+kdg
+okR
+tHc
+rfR
+rfR
+ivF
+qkD
+tYk
+jqz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+uOF
+gUd
+aSp
+tDT
+jqz
+jqz
+jqz
+tDT
+kZG
+hCW
+uOF
+aaa
+aaa
+aaa
+aaa
+rIW
+pov
+wfB
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(134,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aam
+aam
+adu
+agf
+aio
+alh
+atu
+aam
+aHd
+aLe
+aPv
+aGk
+aUH
+bac
+bhk
+bac
+bri
+buS
+byS
+bEo
+bJl
+bPV
+bSK
+bVH
+bSK
+cbt
+bJn
+bJn
+cgR
+cih
+cqh
+crC
+csy
+cua
+cwh
+cxI
+csw
+cCo
+cuE
+cFP
+aWb
+aaa
+aaa
+asV
+hcA
+hWE
+iFy
+jHO
+kLG
+aXB
+aSy
+nDH
+oxO
+pmh
+qom
+bdd
+sga
+bdd
+aQW
+ayN
+boY
+beO
+bgL
+bik
+aHs
+mTv
+aKz
+boY
+plu
+aPf
+bsV
+bwe
+bxX
+bzW
+aaa
+aaa
+hIE
+bGS
+bpj
+hIE
+bwR
+bNn
+hIE
+tXm
+bOl
+bWz
+kff
+crt
+bWW
+crt
+crt
+caJ
+cog
+xSI
+hkO
+mTn
+tjD
+ckj
+ciy
+cjQ
+obG
+ckn
+cjQ
+mgk
+kNS
+clW
+txX
+hlo
+col
+cnM
+fvS
+gNI
+hwH
+dJS
+aQR
+jcM
+rir
+uCY
+rbZ
+rfR
+glE
+gVl
+tYk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+uOF
+ker
+tBR
+uOF
+aaa
+aaa
+aaa
+uOF
+ral
+ker
+uOF
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(135,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aam
+aam
+adO
+agg
+aip
+alF
+atv
+aam
+aHA
+aLf
+aPw
+aSD
+aUI
+bad
+bhl
+blg
+brj
+buT
+byT
+bEp
+bKJ
+bPZ
+bSL
+bVI
+bZN
+bPZ
+bPZ
+cfR
+cgR
+ciF
+cqj
+crD
+csx
+cub
+cwj
+cxK
+csw
+cwA
+cDQ
+cFV
+aWb
+aaa
+aaa
+enG
+hdd
+hXA
+iGf
+jIM
+kLW
+lLj
+mFY
+nDS
+oyS
+aXB
+aXB
+aUh
+aXB
+bmX
+aZC
+azm
+bdk
+beP
+bgM
+aFJ
+bjS
+blw
+aKA
+boL
+wCQ
+bsQ
+lVd
+bwd
+bxY
+byc
+aaa
+aaa
+hIE
+bkz
+bIx
+bKf
+bIx
+fMC
+hIE
+bHv
+bOl
+kha
+ccn
+ceS
+pSe
+jAm
+crt
+caK
+cog
+gmX
+cej
+cfp
+vUB
+ckj
+xKO
+jKO
+hZu
+trT
+jKO
+xij
+jMb
+wqh
+cmt
+xWT
+col
+cnM
+cot
+vKr
+hwH
+buq
+eaF
+eli
+nVE
+onb
+lJn
+rfR
+fDv
+tkz
+tYk
+tYk
+aaf
+aaf
+aaf
+aaf
+aaf
+nnG
+aaf
+aaa
+pMu
+dRO
+olH
+uOF
+aaa
+aaa
+aaa
+uOF
+kEy
+dRO
+pMu
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(136,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aam
+aam
+adP
+agh
+agh
+agh
+atw
+aam
+aHF
+aLg
+aPx
+aGk
+aUJ
+bac
+bhm
+bac
+brk
+aUE
+byU
+bEz
+bKK
+bQa
+bSM
+bVJ
+bZR
+cbu
+cdu
+bPZ
+cgS
+ciG
+cqk
+crE
+crE
+crE
+crE
+crE
+crE
+crE
+cDR
+cFW
+aWb
+aaa
+aaa
+enG
+hdV
+hYp
+iGf
+jIM
+kMj
+aXB
+mHY
+nEh
+ozl
+aQB
+aSy
+aUn
+aXB
+aXI
+aZD
+aZC
+boY
+beQ
+xLD
+bjT
+bjT
+dUc
+aKB
+boY
+hGd
+bsQ
+lVd
+gsX
+bxZ
+byc
+aaa
+aaa
+hIE
+bGS
+bIy
+btw
+bLP
+bLN
+hIE
+bHw
+bOl
+bWA
+cco
+tqH
+hsP
+rqM
+crs
+cFt
+cFt
+cFt
+cFt
+cfq
+cFt
+chE
+wIa
+jyK
+wIa
+wIa
+wIa
+fwZ
+clx
+clY
+cmu
+cgy
+col
+con
+dhP
+dhP
+cos
+kfN
+eaF
+eli
+nVE
+onb
+pQK
+rfR
+glE
+gVl
+uwy
+tYk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(137,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aam
+aam
+aam
+agi
+ait
+alG
+aam
+aam
+aHG
+aLh
+aGw
+aGk
+aVZ
+bae
+bho
+bli
+brl
+aUE
+bzk
+bEA
+bKM
+bQb
+bSN
+bWf
+bZU
+cbZ
+cdv
+bPZ
+cgT
+ciH
+cql
+crH
+csz
+cuc
+cwn
+cxL
+czZ
+cCp
+cuE
+cDZ
+aWb
+aaa
+aaa
+enG
+hex
+hWE
+iIm
+jJf
+kMw
+aXB
+mKm
+nEo
+oBh
+aSy
+qoI
+aUm
+aXB
+sOC
+aZE
+bjJ
+boY
+aCu
+aDK
+aFK
+aHw
+aIX
+aKC
+boY
+jLI
+bsR
+aRc
+bwe
+hIK
+byc
+aaa
+aaa
+hIE
+bGS
+bIz
+hIE
+btw
+bNv
+hIE
+bHx
+bOl
+bWE
+cco
+caL
+bWZ
+cow
+bZD
+cFt
+cbT
+ccV
+cel
+cfr
+cgC
+cFt
+ciB
+cjp
+wIa
+cko
+wIa
+fwZ
+cly
+clZ
+bKp
+dMp
+qnP
+cnP
+aTZ
+rae
+qWW
+gmm
+cnm
+iUH
+ebS
+onb
+dNr
+rfR
+dhR
+gVl
+vZE
+cvG
+aaa
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+ufT
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(138,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aam
+aam
+aam
+aam
+aam
+aam
+aam
+aHH
+aGk
+aGk
+aGk
+aUE
+aUE
+aUE
+aUE
+aUE
+aUE
+bzz
+bFF
+bKN
+bQd
+bSO
+bWg
+bZV
+ccb
+cdw
+bPZ
+cgU
+ciI
+cqm
+crE
+csA
+cud
+cwp
+cxM
+cAb
+cCs
+cDS
+cFX
+csa
+aaa
+aaa
+asV
+vad
+hYp
+iJx
+jJi
+kOM
+aXB
+aXB
+nFa
+oBy
+aqV
+qoX
+asS
+aXB
+aXB
+aZF
+bmX
+boY
+wSZ
+aVx
+pbi
+kst
+bPM
+boY
+boY
+kfI
+bsS
+bzJ
+bwd
+lkL
+bzW
+aaa
+aaa
+bXr
+fur
+bIA
+btw
+hIE
+hIE
+hIE
+ufA
+bOl
+bXq
+ccW
+bVV
+bXa
+crt
+crt
+cFt
+cFt
+cFt
+cem
+cfs
+cDI
+cFt
+xKO
+unr
+uOZ
+trT
+unr
+clt
+fbZ
+wqh
+twc
+heo
+col
+cXB
+qdU
+lJh
+pFW
+quL
+quL
+quL
+quL
+onb
+fGb
+cnN
+mkf
+gVl
+cvg
+bXA
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(139,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+adQ
+adQ
+adQ
+amB
+agH
+azj
+agH
+aMr
+aPy
+aSE
+aWa
+bai
+bhp
+blk
+brm
+buU
+bzA
+bEA
+bld
+bQf
+bSR
+bWi
+bZW
+ccd
+cdx
+bPZ
+cgV
+ciJ
+cqn
+crI
+csB
+cue
+cwq
+cxN
+cAc
+crE
+cDW
+cDZ
+csa
+aaa
+aaa
+asV
+asV
+hYG
+arK
+jKu
+eoK
+lMn
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+aXB
+avp
+axo
+vjM
+boY
+boY
+boY
+boY
+boY
+boY
+boY
+vQX
+nZY
+bsU
+bbF
+bwg
+bzW
+bzW
+aaa
+aaa
+bXr
+ohP
+bmQ
+men
+bty
+obR
+bCr
+bHy
+bOm
+iZV
+ccr
+caN
+bXb
+bYq
+gOI
+chG
+cbV
+ccX
+czd
+cft
+cgD
+chG
+fAD
+uLk
+rHy
+vYL
+uLk
+hen
+pfZ
+skd
+tso
+woi
+rfR
+xqV
+qdU
+coR
+nHY
+quL
+nvX
+qOl
+mTP
+uiD
+hmH
+rfR
+ctK
+cux
+viV
+cvG
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(140,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+adQ
+agv
+agH
+amG
+agH
+azn
+agH
+aMs
+aPz
+aSG
+aWl
+aSG
+bhq
+bll
+brm
+buV
+bzC
+bEA
+bKO
+bPZ
+bSS
+bWj
+bZY
+ccf
+cdy
+bPZ
+cgW
+ciK
+cqo
+crE
+csC
+cuf
+cwr
+cxO
+cAu
+crE
+cDW
+cFY
+csa
+aaa
+aaa
+aaa
+enG
+hYp
+iFy
+jKu
+kPr
+kOQ
+mKo
+nFE
+oBX
+pmo
+arK
+rlr
+aut
+avq
+axp
+vjZ
+bdn
+beT
+bgQ
+bin
+pxs
+blB
+yfl
+boP
+wkG
+bsU
+bsV
+bwd
+byc
+aaa
+aaa
+aaa
+bXr
+bkB
+bIB
+bKh
+uaD
+bwS
+cFI
+cFI
+bOn
+bXC
+cFI
+njG
+njG
+njG
+njG
+cFt
+cFt
+cFt
+cFt
+cFt
+cFt
+cFt
+fFD
+xKO
+xKO
+fdh
+nuJ
+szj
+gNy
+clW
+sUb
+hEC
+rfR
+coT
+qdU
+coR
+eCc
+quL
+gar
+quL
+quL
+onb
+hmH
+rfR
+rEd
+gVl
+qco
+tYk
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(141,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+adQ
+agF
+aiv
+amH
+atx
+aiw
+agH
+aMt
+aPA
+aSH
+aWm
+bas
+bhr
+blm
+brn
+buW
+bzU
+bFG
+bKP
+bQl
+bQl
+bQl
+bQl
+bQl
+bQl
+bQl
+bXk
+ciL
+cqp
+crE
+csD
+cug
+cws
+cxP
+cAv
+crE
+cDW
+cDZ
+aWb
+aaa
+aaa
+aaa
+enG
+enG
+iJT
+iFy
+ckt
+jKu
+mKr
+nGH
+oCh
+oCh
+bzB
+asU
+bdo
+avr
+aZG
+vmb
+bdo
+aCv
+bgR
+bgR
+bgR
+xwy
+rwl
+bsU
+bsU
+bsV
+bya
+byc
+byc
+aaa
+aaa
+aaa
+hIE
+hIE
+bIC
+bpF
+hIE
+hIE
+cFI
+bHz
+bPI
+nIW
+njG
+vMO
+vMO
+vMO
+vMO
+rLZ
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+voL
+voL
+kEz
+voh
+voL
+uTo
+hPt
+wqh
+mfz
+cpL
+rfR
+cnR
+qdU
+coR
+okq
+uRN
+erJ
+aYX
+aYX
+tMs
+xGd
+cnN
+rOI
+nLg
+iKC
+tYk
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(142,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+adQ
+agF
+aiw
+anG
+aty
+azs
+aHI
+aMu
+aPB
+aSI
+aWn
+bav
+bib
+blV
+bro
+buX
+bzC
+bEA
+bKQ
+bQl
+bSV
+bWB
+caa
+ccg
+cdz
+cfS
+cgX
+ciM
+cqo
+crE
+crE
+crE
+crE
+crE
+crE
+crE
+cDW
+cDZ
+aWb
+aaa
+aaa
+aaa
+aaa
+enG
+enG
+iJT
+ohV
+had
+mKs
+nHJ
+apR
+aqY
+had
+rmd
+jYZ
+vPZ
+azH
+lGR
+aut
+avs
+bbF
+srF
+tYl
+esm
+bne
+bbF
+bsV
+bya
+byc
+byc
+aaa
+aaa
+aaa
+aaa
+hIE
+eHa
+bmT
+fON
+hIE
+bwP
+cFI
+fSk
+ibQ
+bXE
+njG
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+git
+wOC
+uvS
+tEa
+kEz
+dEc
+pQe
+wqh
+wqh
+wqh
+rfR
+lyG
+qdU
+coU
+cpi
+quL
+cox
+uCb
+hTu
+piO
+viP
+rfR
+ctL
+cuy
+cvh
+tYk
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(143,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+adQ
+agG
+aiZ
+anH
+atA
+azA
+agH
+aMv
+aPC
+aTb
+aWo
+bax
+aPz
+blW
+brm
+buY
+bzV
+bFH
+bKR
+bQl
+bSZ
+bWC
+cad
+cch
+cdA
+cfT
+cgY
+ciN
+cqq
+crJ
+csE
+cuh
+cwt
+cxQ
+cAx
+crJ
+cAM
+cFZ
+aWb
+aaa
+aaa
+aaa
+aaa
+aaa
+enG
+enG
+kPK
+lMw
+mKx
+mKx
+oCL
+oCL
+oCL
+rmM
+aBF
+hzy
+azH
+hzy
+aBF
+aCw
+aDL
+aFN
+aHx
+xJa
+bnf
+bgS
+bFa
+byc
+byc
+aaa
+aaa
+aaa
+aaa
+aaa
+hIE
+uTA
+aak
+bpG
+hIE
+hIE
+cFI
+bHA
+eqR
+nYz
+njG
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+gFD
+xip
+msv
+tEa
+kEz
+dEc
+gNy
+oGx
+eGr
+wqh
+iPs
+quL
+qdU
+sRC
+pac
+pac
+tku
+toY
+uhC
+iJG
+hzr
+rfR
+cIQ
+tkz
+kWB
+cvG
+aaa
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(144,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+adQ
+agH
+agH
+agH
+atB
+agH
+agH
+aMw
+aPC
+aPz
+aPz
+bbS
+biD
+blX
+brp
+buZ
+bAl
+bFI
+bKS
+bQl
+bTc
+bWD
+bWG
+ccs
+bWG
+cfU
+cgZ
+ciO
+cqo
+crK
+csG
+cui
+cui
+cxR
+cAy
+crJ
+cDX
+cGa
+aWb
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+enG
+enG
+asV
+mMD
+nIT
+oFM
+pnB
+vad
+rnx
+auv
+hzy
+azH
+hzy
+wiE
+wUN
+aEf
+aFO
+aHy
+blD
+lkL
+bzW
+byc
+byc
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+hIE
+bkC
+bnk
+bpH
+bwR
+bwR
+bCu
+sfD
+bPN
+bTq
+jtC
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+gFO
+xHj
+emX
+tNh
+cVi
+qtb
+vxG
+wqh
+mIz
+wqh
+cnq
+lrp
+cou
+lrp
+lrp
+quL
+xao
+tKd
+iJh
+iJG
+rue
+rfR
+mkf
+gVl
+cvg
+bXA
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+tTx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(145,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+adR
+agI
+aja
+anM
+atD
+azB
+aHJ
+aMx
+aPD
+aTc
+aPz
+bbU
+biE
+biE
+biE
+bva
+bAm
+bFJ
+bKT
+bQl
+bTd
+bWF
+caf
+ccv
+cdB
+cfV
+cgX
+ciP
+cqr
+crU
+csH
+cuj
+cwu
+cxS
+cAz
+cCw
+cDY
+cGd
+cGd
+cGd
+cGd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+asV
+asV
+enG
+enG
+enG
+asV
+asV
+bzW
+avS
+azH
+voE
+bzW
+bzW
+bzW
+byc
+byc
+byc
+bzW
+bzW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bFh
+bFh
+bFh
+bFh
+bFh
+bpI
+hIE
+bwS
+cFI
+tvh
+ocw
+mTO
+njG
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+gKC
+xLN
+jvu
+tEa
+kEz
+mkd
+idF
+dCy
+vvh
+wqh
+cbQ
+dMF
+pYE
+fpc
+jGd
+fBa
+cQM
+rfR
+gAK
+qvK
+cok
+rfR
+ctK
+gVl
+vZE
+cvG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(146,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aag
+aaf
+aaf
+aaf
+adS
+agJ
+ajb
+anR
+aux
+azD
+aHK
+aMu
+aPE
+aPz
+aPz
+bbV
+biE
+blY
+brq
+bvb
+bva
+bFK
+bta
+bQl
+bTe
+bWG
+bWG
+bWD
+bWC
+cfW
+cgX
+ciQ
+cqs
+crK
+csI
+cum
+cui
+cui
+cAB
+crJ
+cDZ
+cGd
+dtI
+euB
+cGd
+cGd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+byc
+vNr
+sOZ
+azH
+vpH
+wki
+byc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bFh
+bFh
+igH
+xNu
+bkE
+bFh
+bQK
+hIE
+hIE
+cFI
+gho
+ibQ
+orB
+njG
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+hiK
+kqH
+lLD
+hkr
+kEz
+vbX
+khA
+wqh
+wqh
+wqh
+puG
+ugI
+bsi
+coZ
+dEa
+kHj
+fOV
+rfR
+sJp
+pdX
+pbd
+rfR
+xIT
+cux
+iYP
+tYk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(147,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+adT
+agK
+ajc
+apd
+auy
+azE
+aHJ
+aMy
+aPF
+aTd
+aWp
+bbU
+biE
+blZ
+brr
+bvc
+bAn
+bFM
+bld
+bQl
+bTf
+bXj
+cag
+ccw
+cdC
+cfX
+bXk
+ciR
+cqt
+crJ
+csJ
+cun
+cwv
+cxT
+cAC
+crJ
+cEa
+cGd
+dtN
+euY
+fjp
+cGd
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+byc
+sgx
+aXJ
+aZH
+azp
+bdq
+byc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bFh
+vVh
+hcP
+bSd
+bSd
+uKe
+sLV
+hIE
+bwS
+cFI
+jSo
+ibQ
+wJa
+jtC
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFI
+voL
+voL
+voL
+voL
+voL
+sFQ
+jnp
+eEy
+rXO
+wqh
+cns
+fyN
+bXh
+sCT
+bOi
+djr
+wBK
+rfR
+uhD
+lkQ
+uhD
+rfR
+ihz
+gVl
+cve
+tYk
+aaf
+aaf
+aaf
+aaf
+aaf
+nnG
+aaf
+aaa
+fHP
+eiG
+hJg
+fEU
+aaa
+aaa
+aaa
+fEU
+mZU
+fCw
+fHP
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(148,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aah
+aaa
+aaa
+aaa
+adU
+adV
+adV
+adV
+adV
+adV
+adV
+aMA
+aPG
+aju
+aWq
+bbW
+biE
+bma
+brs
+bvd
+bva
+bFN
+bKU
+bQl
+bQl
+bXk
+bXk
+bXk
+bXk
+bXk
+bXk
+ciS
+cqu
+crJ
+crJ
+crJ
+crJ
+crJ
+crJ
+crJ
+cEb
+cGd
+duc
+evb
+fjy
+cGd
+aWb
+aWb
+aWb
+aWb
+csa
+csa
+csa
+aWb
+aWb
+aWb
+aWb
+aWb
+blx
+aXK
+axu
+eae
+blx
+hIE
+hIE
+hIE
+hIE
+hIE
+bXr
+bXr
+bXr
+hIE
+hIE
+hIE
+hIE
+bFh
+jci
+sRN
+bix
+bkG
+bFh
+rId
+hIE
+jtM
+cFI
+nRC
+xeu
+kgG
+njG
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFF
+iJY
+ljr
+tHE
+eHU
+wqh
+gtA
+oDE
+lTM
+pgW
+wqh
+cnt
+eke
+nQn
+nQn
+nQn
+nJW
+dIu
+rfR
+gbW
+bYh
+rty
+uhD
+xIT
+gVl
+iqu
+cvG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+tlw
+axH
+vfT
+nom
+aaa
+aaa
+aaa
+tlw
+jYf
+gHy
+nom
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(149,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+adV
+agL
+agL
+agL
+agL
+azG
+aHL
+aMB
+aQx
+aTf
+aWr
+bbZ
+biE
+bmb
+biE
+biE
+biE
+bFO
+bKZ
+bQn
+bTA
+bXH
+cai
+ccx
+cdD
+cfY
+cha
+ciT
+cqv
+crV
+csK
+cuo
+cww
+cxU
+cAJ
+cCy
+cEc
+cGd
+duK
+evb
+fjA
+cGd
+heB
+hYM
+iKa
+jLa
+kPL
+kPL
+mNf
+nKE
+oGb
+poC
+qpO
+roJ
+shB
+sPi
+aZI
+byn
+bds
+aDa
+bgU
+bir
+bpq
+bgU
+bgU
+bpq
+bgU
+bgU
+bgU
+bwl
+byg
+bFh
+bFh
+bFh
+bFh
+bFh
+bFh
+rId
+hIE
+qeI
+cFI
+cFI
+rwe
+sbj
+njG
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFG
+ciC
+ckp
+cjV
+vOd
+wqh
+vbX
+jnp
+xKO
+foi
+wqh
+pUo
+coN
+coy
+oXt
+xoU
+poL
+nFo
+rfR
+nou
+wbx
+xNd
+rfR
+cvG
+cuu
+cvc
+tYk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+lFC
+myg
+fMc
+rrh
+vzM
+vzM
+vzM
+lFC
+cWU
+cTz
+hpn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(150,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+adV
+agM
+ajl
+agM
+auz
+agM
+aHM
+agM
+aQz
+aTg
+aWs
+bca
+biF
+bmd
+brt
+bve
+bAq
+hqq
+bKO
+bQo
+bTC
+bXI
+caj
+ccy
+cdE
+cfZ
+chb
+ciU
+cqw
+crW
+aWb
+cuC
+cuC
+cxV
+cAK
+cuE
+cEd
+cGd
+cGd
+ewV
+cGd
+cGd
+cDZ
+iah
+aWb
+jMa
+cuE
+lOw
+mNt
+nKR
+oHE
+ppW
+qqA
+roS
+adg
+sPZ
+ueZ
+xMr
+hIE
+aDc
+aEi
+aPk
+aPk
+aPk
+aPk
+aPk
+mcw
+aPj
+fFA
+upA
+tfw
+eAf
+bBC
+rtP
+bFi
+bTu
+qkk
+bId
+hIE
+bwR
+xXH
+cFI
+vXg
+cFI
+cFI
+vMO
+vMO
+vMO
+bZF
+vMO
+vMO
+vMO
+vMO
+vMO
+vMO
+cFH
+eLa
+ciD
+wxP
+kPk
+wqh
+vbX
+jnp
+xKO
+sxZ
+wqh
+cbQ
+cbQ
+cbQ
+cbQ
+cbQ
+sFN
+cbQ
+rfR
+rfR
+rfR
+rfR
+rfR
+glE
+cux
+cvb
+vzM
+dLF
+sIp
+dLF
+vzM
+dLF
+dLF
+dLF
+vzM
+cUT
+oUG
+jMn
+iLw
+shc
+uBH
+hxj
+cUT
+jMn
+nES
+cUT
+vzM
+dLF
+cRd
+qNz
+eZp
+gxV
+vzM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(151,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+adV
+agM
+ajs
+agM
+auA
+azI
+aHN
+aMC
+aQA
+aTh
+aWt
+bcb
+biF
+bme
+bru
+bvf
+bAr
+bFP
+bKO
+asb
+asb
+bXJ
+asb
+ccz
+cdF
+cga
+chc
+cjq
+cjq
+chc
+aWb
+aWb
+aWb
+cxW
+cAM
+cCC
+cEe
+cGe
+duU
+exb
+fld
+fVu
+hgn
+ibt
+aWb
+jMO
+kQG
+cAK
+mNU
+aWb
+oHP
+pqG
+qqJ
+cDW
+aWb
+sSi
+ufg
+sSi
+hIE
+beX
+bwR
+aPk
+xGZ
+nNL
+aKG
+aPk
+aPk
+aPk
+bKk
+bKk
+bKk
+bBH
+bGZ
+bGZ
+bGZ
+bGZ
+hIE
+umZ
+rHN
+bwR
+bwR
+hIE
+aDc
+bTv
+cFI
+njG
+dlt
+njG
+dgU
+njG
+njG
+dgU
+njG
+dlt
+njG
+cFI
+fnp
+rrB
+dWC
+bNr
+fnp
+eSn
+mNL
+pFu
+dDw
+gQh
+gkn
+fno
+rCN
+rCN
+mhd
+mKw
+sxI
+vKG
+iwp
+roo
+jfz
+wvG
+vdV
+xrN
+uJs
+aXW
+wQZ
+tyQ
+hOj
+hWw
+waV
+dYC
+peT
+iQL
+eBi
+dfc
+dfc
+aZM
+waV
+fvK
+qwb
+kHv
+vWB
+vWB
+qpz
+trL
+vCI
+pex
+pNL
+uVZ
+pIi
+xRW
+aaa
+kHB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(152,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaa
+adV
+agM
+ajl
+agM
+auB
+agM
+aHM
+agM
+aQz
+aTg
+aWu
+bcc
+biF
+bmf
+brv
+bvg
+bAs
+qlF
+bKO
+asb
+bTD
+bXK
+asb
+ccA
+cdG
+tXq
+chd
+cjr
+cqx
+crX
+csL
+cuD
+aWb
+cxX
+axw
+cCF
+aWb
+cGf
+aZL
+cAY
+aWb
+cAY
+cAY
+aGg
+aGg
+aGg
+aGg
+aGg
+aGg
+aGg
+aGg
+pru
+qqJ
+cCH
+aWb
+sSl
+ufk
+sSl
+hIE
+beY
+hIE
+aPk
+bkc
+pvD
+cTb
+bpa
+gCT
+aPk
+mQY
+ets
+mQY
+bBH
+qya
+jkg
+bFj
+bGZ
+bKk
+bEF
+bLU
+bNB
+bPp
+bQM
+vSL
+bTw
+cfh
+cfh
+bXg
+cfF
+cfF
+cfF
+cfF
+cdk
+cfF
+cfF
+cfF
+bXg
+wSa
+fJy
+eov
+tSG
+sbr
+qFw
+blC
+xKO
+krQ
+qle
+sOI
+smA
+nUb
+qWZ
+smA
+paJ
+fCl
+wnv
+jGV
+rEZ
+okO
+pUA
+oHb
+nST
+xzT
+vUp
+uxW
+jEf
+qbq
+tvT
+mmQ
+eTt
+eTt
+qKE
+hGX
+wrN
+eTt
+vUp
+mmQ
+tvT
+tGS
+pHZ
+eTt
+eTt
+vav
+sCt
+iYb
+qcZ
+hTF
+fHV
+sbk
+umh
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(153,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+adV
+adV
+ajt
+ajt
+ajt
+azK
+aHO
+aNL
+aQC
+aTi
+aWr
+bcd
+biF
+bmh
+brw
+bvh
+biF
+bFQ
+bLa
+asb
+bTT
+bXL
+asb
+ccB
+cdH
+cgb
+che
+cjs
+apb
+crY
+csM
+cuE
+cwx
+adN
+aeL
+aeL
+afp
+afp
+dve
+afp
+cEf
+fVv
+cCS
+aGg
+iKn
+jMY
+kQH
+lOW
+mOo
+nMn
+aGg
+aGg
+qtD
+cCI
+aWb
+sUh
+aZW
+sUt
+beZ
+aDd
+bgW
+aFT
+aHB
+aKH
+aKH
+bpb
+aNB
+aPm
+buJ
+bwo
+aWj
+aYq
+bBF
+sQN
+bFk
+bIH
+gaL
+bLV
+bLN
+bNC
+bPt
+aVF
+bPP
+uZI
+uZI
+uZI
+cvr
+cvr
+uZI
+cvr
+cvr
+uZI
+cvr
+cvr
+cvr
+uZI
+uZI
+uZI
+uZI
+uZI
+rXY
+ttW
+wLF
+neW
+iMo
+qle
+vJh
+pAj
+smA
+smA
+txk
+qle
+sCy
+qle
+txk
+txk
+txk
+tYk
+ijr
+qDj
+tYk
+vzM
+vzM
+vzM
+syk
+toM
+wni
+dLF
+dLF
+vzM
+vzM
+vzM
+dLF
+dLF
+lTu
+toM
+dIm
+dLF
+dLF
+vzM
+vzM
+vzM
+dLF
+eow
+qNz
+vCn
+xHO
+fcX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(154,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+adV
+aju
+aju
+aju
+adV
+adV
+adV
+aju
+aju
+aju
+adV
+biG
+bni
+brx
+bvi
+biF
+bFR
+bLb
+bQr
+bTV
+bXM
+asb
+aaQ
+aaQ
+aaQ
+chf
+cjt
+cjt
+chf
+csN
+cuG
+aWb
+aad
+axx
+csN
+afp
+afO
+dvz
+eCo
+afp
+fVA
+hgz
+ich
+iKA
+jPi
+kQV
+lPq
+mPD
+nNE
+oIs
+aGg
+qtO
+rpY
+aWb
+aXU
+aZS
+vqB
+wkF
+aDd
+xLT
+cVs
+bka
+ppc
+aKJ
+bpc
+aNC
+aPn
+aRg
+bwp
+byj
+bGZ
+bBG
+wuX
+biz
+bGZ
+bnq
+ebA
+bLW
+bND
+bPs
+pPn
+bSf
+bTx
+qgb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+rXY
+jZo
+ejP
+wqh
+mrF
+qle
+wNr
+jwJ
+vQa
+xlF
+txk
+hSM
+smA
+dCe
+txk
+aaa
+aaa
+tYk
+tYk
+tYk
+tYk
+aaa
+aaa
+dLF
+dLF
+xTR
+ref
+dLF
+aaa
+aaa
+vzM
+aaa
+aaa
+dLF
+ref
+iNa
+dLF
+dLF
+aaa
+aaa
+vzM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(155,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+biG
+biG
+biG
+biG
+biG
+bFS
+bMq
+asb
+asb
+asb
+asb
+aaa
+aaa
+aaa
+chf
+cju
+cqy
+chf
+adg
+adg
+adg
+adN
+cAN
+cCG
+afp
+cGm
+dvB
+eDx
+flB
+fWd
+hjA
+ich
+iLb
+jRr
+kRu
+lPI
+mPD
+nPc
+oIX
+aGg
+cuE
+rsM
+aWb
+aXV
+aZW
+sUt
+bhj
+bfa
+bhj
+aPk
+eFj
+gSn
+aKK
+jDw
+bDG
+hwJ
+aRh
+bwq
+byk
+bBH
+bBH
+bBH
+bBH
+bBH
+bKn
+bKn
+bLX
+bNE
+bPs
+bTy
+rMY
+bTx
+fid
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+rXY
+vbL
+vbL
+rXY
+ofD
+txk
+txk
+rGT
+rGT
+rGT
+txk
+gJV
+gtd
+nnD
+txk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+fEU
+xdb
+uYd
+aaa
+aaa
+aaa
+vzM
+aaa
+aaa
+aaa
+gZF
+fsr
+fEU
+aaa
+aaa
+aaa
+vzM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(156,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+wxw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+adg
+adN
+cuE
+cCH
+afp
+cGn
+dwP
+eEX
+afp
+fWj
+hkW
+ich
+iMc
+jRW
+kSs
+kSs
+mQg
+nPc
+oJi
+aGg
+qtY
+rtr
+aWb
+sUt
+aZW
+sUt
+bhj
+bfb
+aEk
+aPk
+aHD
+bra
+bra
+bra
+bra
+bra
+orf
+rYk
+tpu
+hff
+wpH
+sup
+bFm
+bHd
+bIJ
+bKn
+bLY
+bNF
+bPt
+bQP
+bSh
+bTz
+bUM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+txk
+rGT
+rGT
+rGT
+txk
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+fEU
+irj
+xHO
+aaa
+aaa
+aaa
+fcX
+aaa
+aaa
+aaa
+uRp
+mEe
+fEU
+aaa
+aaa
+aaa
+fcX
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(157,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+wWX
+aag
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+adg
+cyb
+cAO
+cCI
+cEf
+cEf
+cEf
+cEf
+cEf
+fYH
+hlb
+ich
+iNs
+jSi
+kSu
+lQm
+mRD
+nPX
+oJo
+aGg
+quz
+cuE
+aWb
+sWi
+ufl
+vrh
+bhj
+bfc
+bgZ
+biv
+wdx
+fma
+jwD
+aMm
+aND
+bso
+aRi
+bws
+bym
+bHh
+raN
+bDH
+bFn
+bHe
+bnr
+bKn
+bLZ
+bNG
+bPu
+bXs
+bTz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aag
+aag
+aag
+aaa
+aag
+aag
+aag
+aag
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+nqs
+piG
+fEU
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+fEU
+pwf
+nqs
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(158,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaf
+wWX
+aag
+aag
+aag
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+wxw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+adg
+adN
+cAP
+cAP
+cAP
+cGo
+dwV
+eFx
+cAP
+fYN
+hlX
+ich
+iOI
+jUw
+kSM
+aGg
+kTh
+nRd
+kTh
+aGg
+aWb
+rtA
+aWb
+bfl
+aZQ
+vrr
+bhj
+wVa
+bha
+biv
+bkd
+dxh
+bnl
+aMn
+aNE
+bAc
+buK
+aTe
+pfB
+qwB
+mZe
+bfD
+biB
+fRS
+bns
+bKn
+btE
+bNH
+jlD
+bXs
+bXr
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(159,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aTj
+aag
+aag
+aag
+aag
+aag
+aag
+aaf
+cuR
+aaf
+wWX
+aag
+aag
+aag
+aaa
+wWX
+aag
+aag
+cuR
+aaa
+aaa
+aaa
+aaa
+adg
+cyc
+cAP
+cCJ
+afq
+cGp
+dxa
+eFW
+dzb
+gbd
+hny
+ich
+iPq
+jUx
+kTh
+aGg
+mRM
+nSd
+oKd
+psR
+qxa
+ruN
+aWf
+aXU
+aZW
+bbM
+bhj
+wVw
+bhb
+biv
+bke
+tuX
+tHk
+bpf
+aND
+bth
+dgM
+pMI
+byu
+bHh
+bKs
+wKf
+bFo
+bHf
+nZA
+bKn
+btE
+aSP
+bNZ
+eKe
+bXr
+aaf
+aaf
+aaf
+aaf
+aaf
+wWX
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aag
+aag
+aag
+aag
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+sVp
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+iSo
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(160,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+adg
+adN
+cAP
+cCK
+cEg
+cGq
+cEg
+eGp
+flC
+gbs
+hnS
+idM
+iQe
+jXa
+kTo
+cuT
+mSD
+nSe
+oOz
+puy
+qxp
+rvu
+aJn
+aXV
+aZS
+azq
+bdA
+bfc
+bhc
+buN
+buN
+bti
+bti
+bti
+bti
+bti
+bti
+bwu
+byp
+bIL
+bBL
+bDJ
+biC
+bHg
+bnu
+bKn
+bTz
+bNJ
+bPx
+bKk
+bTz
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+wxw
+aab
+wWX
+aag
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(161,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+adg
+adg
+adN
+cAP
+cCL
+cEh
+cGw
+dyw
+eGF
+foc
+gbB
+hpA
+idP
+iSq
+jXg
+kTt
+lRG
+mUi
+nSw
+oOB
+puY
+qxU
+rxI
+shU
+aXY
+axv
+aUy
+bhj
+wWd
+bhd
+bti
+bkf
+aIY
+fRK
+bph
+brc
+btj
+bti
+bwz
+byq
+bKn
+bIL
+bDK
+bIL
+bHh
+bIL
+bKn
+bSm
+bSm
+bPy
+bSm
+bSm
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(162,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+adg
+cwy
+cyi
+cAP
+cCM
+cEi
+cGx
+dyy
+eHo
+flC
+gcd
+hqB
+cDa
+cEu
+jXU
+kTw
+cuT
+mVe
+nSJ
+oQj
+puy
+qxp
+rzk
+aWe
+aXX
+aZW
+azr
+bhj
+bfh
+bhe
+aFW
+bkk
+blN
+blN
+bpi
+blN
+btk
+bti
+nSC
+byr
+bKu
+bBN
+bDL
+bFq
+bkJ
+bIM
+bKu
+bMb
+bNL
+bPz
+kDK
+bSm
+cpN
+cpN
+cpN
+cpN
+cpN
+cpN
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(163,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+wWX
+aaa
+aaa
+aaa
+csa
+cwz
+cyi
+cAP
+cCP
+cEj
+cGy
+dyN
+eHw
+foF
+gcB
+hru
+iej
+iVx
+jYj
+iVx
+ifd
+mVk
+nTb
+oQz
+psR
+qyg
+ruN
+aWf
+sWJ
+aZU
+bbN
+bhj
+wWW
+bhf
+bti
+bkh
+sAC
+aKM
+bpk
+aNG
+bbE
+bti
+hua
+bys
+txI
+bKt
+fNB
+wXZ
+pMH
+bcR
+bKu
+btU
+bNM
+bCM
+bHC
+cpN
+bTG
+bUS
+bWl
+juu
+cpO
+cpN
+wWX
+wWX
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(164,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+wxw
+aaa
+aaa
+aaa
+csa
+cwA
+cyj
+cAP
+cAP
+afr
+afr
+dzb
+dzb
+cAP
+gdd
+hti
+iej
+iVF
+jZy
+kTT
+ifd
+iVx
+nTF
+oRM
+ifd
+aWi
+rzu
+aWi
+sXo
+aZW
+vtu
+bhj
+wYq
+bhg
+bti
+bki
+dlB
+aKN
+bpk
+brd
+vUd
+buM
+wrz
+byt
+sKv
+bMc
+bIO
+hHj
+bHo
+oew
+bKu
+btH
+bNY
+bDd
+jQo
+bSo
+bTH
+bUT
+cfO
+cSb
+caZ
+cpN
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(165,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+csa
+cwB
+cyk
+cAQ
+cCR
+afs
+afP
+aUw
+cEl
+fpA
+gdV
+hru
+iej
+iVP
+kaM
+kUD
+lRJ
+mWi
+nUh
+oSr
+ifd
+qyX
+rzK
+aWi
+avT
+aZW
+bbP
+bhj
+xaY
+bhh
+bti
+bkj
+btq
+bno
+aMo
+aNH
+whv
+buL
+xhh
+bys
+txI
+bBQ
+bDO
+bIP
+mOZ
+xaD
+bKu
+bPG
+bNX
+bPA
+qvr
+bSq
+bXF
+cct
+cfP
+cct
+cpP
+cpN
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(166,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adg
+cwB
+cym
+cAV
+cCR
+cEk
+cGD
+dzi
+eHG
+cvs
+aCd
+hul
+iej
+iXY
+kdq
+kVv
+lTB
+mWR
+nVx
+oTP
+ifd
+qzu
+rAm
+aWi
+sXG
+ugD
+vtO
+bhj
+xbV
+bhi
+bti
+ggV
+xbq
+aKO
+bpl
+rfd
+izx
+buM
+pMI
+byu
+bKu
+bBR
+xxU
+rsK
+rsK
+bIQ
+bKu
+lUX
+bNO
+xYs
+aMg
+bSp
+bTI
+ccu
+bWm
+ryI
+bYF
+cpN
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(167,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+cqz
+aiD
+ctc
+cuH
+cwC
+cyn
+cAW
+cCS
+cEl
+cGE
+dzN
+eHV
+fql
+gel
+hvb
+iej
+iYs
+kdq
+kVF
+lUp
+mWR
+nVx
+oUC
+ifd
+qzH
+rAK
+siq
+aXX
+aZW
+vrh
+wlg
+xch
+bhj
+aGd
+bkl
+blR
+aKP
+bpm
+bre
+jPh
+buN
+byv
+mLK
+bKu
+bKu
+txI
+bFv
+txI
+bKu
+bKu
+bNV
+bNV
+bPC
+ekq
+bSq
+bTJ
+bUU
+bWn
+qZK
+cdr
+cpN
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(168,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+cqA
+crZ
+ctd
+cuI
+cwD
+cyo
+cAX
+cCR
+cEm
+cEl
+dCb
+eHX
+cvs
+gex
+hvG
+iej
+iYD
+kdq
+kVv
+lUZ
+mWR
+nVx
+oVk
+ifd
+qAa
+rBr
+aWi
+sZg
+aZW
+vtu
+wom
+xcQ
+bAi
+bwB
+brb
+blS
+aKQ
+bpn
+brf
+nbA
+doR
+mnu
+jKa
+bKu
+bQN
+gDA
+gDA
+qWb
+gcc
+bSu
+btJ
+bNQ
+rfQ
+bQZ
+bSu
+bTO
+cfQ
+cfQ
+cfQ
+bYH
+bYH
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(169,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+cqM
+crZ
+cte
+cuJ
+cwD
+cyp
+cAY
+cCR
+cEn
+cGF
+dCH
+eIu
+frT
+gfQ
+hru
+iej
+iYZ
+kdL
+kVL
+kVL
+mXo
+nWL
+oVE
+ifd
+qAy
+rBv
+aWi
+taM
+uhf
+vuU
+wpq
+xdX
+xPe
+pXX
+aNI
+blT
+lPn
+gAD
+aNI
+tpX
+kCp
+wTX
+dqF
+bAj
+uGj
+bfW
+eqD
+jPU
+hdj
+eNz
+pUX
+bNR
+eLf
+jzA
+fVj
+bTO
+tye
+xQy
+rKQ
+bYI
+bYH
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(170,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+cqN
+adg
+ctf
+cuK
+cwC
+cyq
+cAZ
+cAZ
+cAZ
+cGH
+cAZ
+cAZ
+cCR
+ggi
+hxs
+iej
+jaH
+keQ
+kgi
+kgi
+mXK
+nWN
+nWN
+mYU
+mYU
+rBy
+aWi
+taU
+uhs
+vvJ
+vvJ
+xeF
+xPX
+doR
+kzp
+blU
+brg
+aMp
+day
+aXf
+doR
+wXc
+otO
+bFv
+bVa
+bDT
+bFy
+bHo
+bIS
+bNV
+bNM
+bNS
+bUY
+bHD
+bSt
+bTM
+bUX
+bWp
+bXv
+cpQ
+bYH
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(171,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+adg
+ctg
+cuL
+cwE
+cyr
+cAZ
+cCT
+cEo
+cGK
+dEo
+cAZ
+ftv
+giQ
+hru
+iej
+jaX
+kfJ
+kXm
+lXK
+mXK
+nXl
+oVW
+pvH
+mYU
+rCT
+aWi
+tce
+ufl
+vxe
+wqq
+xeT
+xPX
+wDy
+eMV
+nrg
+umI
+eMV
+eMV
+avH
+vpD
+nql
+vZc
+enc
+ifw
+bDU
+bVc
+bkZ
+bPK
+xRa
+btL
+bNT
+rfQ
+bQY
+rCx
+bTO
+jYr
+bWq
+bWq
+oZp
+bYH
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(172,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaf
+aaf
+adg
+ctg
+cuM
+cwF
+cys
+cAZ
+cCU
+cEp
+cGL
+dGs
+cAZ
+fva
+giQ
+hxA
+iej
+jdC
+kfY
+kYA
+lYO
+mYK
+nYu
+oWK
+pwY
+qAW
+rDG
+skB
+skB
+uhV
+vyA
+aWf
+xeV
+xTX
+bwB
+nwc
+rXR
+xft
+dNI
+jnc
+hBM
+doR
+mhL
+gIc
+bKu
+geI
+bDV
+ajf
+bHp
+bIT
+bSu
+bMf
+bNU
+rfQ
+bQZ
+bSu
+bTO
+bWr
+bWr
+bWr
+bYH
+bYH
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(173,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaf
+aaa
+csa
+cth
+cuN
+cwG
+cyt
+cAZ
+cCV
+cEq
+cGO
+dGC
+cAZ
+fva
+giQ
+hyf
+iej
+jew
+kgi
+kZv
+maC
+mYL
+nYU
+oWW
+pwY
+qBe
+rEq
+soz
+tdm
+uhW
+tdm
+wqL
+xhM
+xhM
+eCW
+ufJ
+wKQ
+nSF
+wKQ
+wKQ
+eCW
+eCW
+ccK
+inE
+bKF
+bKF
+rKm
+vHe
+bHq
+bKF
+bKF
+bNV
+bNV
+bPC
+bRa
+bSx
+eEj
+izw
+iho
+vzz
+mmn
+lWH
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(174,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cqO
+csb
+csb
+cuO
+cwH
+cyu
+cBa
+cBa
+cBa
+cGP
+cBa
+cBa
+cBa
+gjb
+hzE
+iej
+jeI
+khr
+las
+maU
+mXK
+nZq
+oYz
+pxc
+mYU
+rEJ
+rEJ
+tdq
+uiI
+tdq
+rEJ
+xhM
+xZu
+eCW
+kXd
+cVH
+vei
+cpT
+ief
+dYS
+mEB
+oZU
+fdL
+nCH
+hVN
+bWt
+bVb
+bHr
+shD
+bKF
+vmR
+bNW
+bUY
+bRb
+wQR
+bTQ
+pRA
+naz
+cgg
+dpP
+lWH
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(175,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+wxw
+aaf
+aaa
+aaa
+csa
+cuP
+cwI
+cyv
+cBa
+cCW
+cEr
+cGQ
+dGE
+eIX
+cBa
+gkh
+hzX
+ifd
+ifd
+ifd
+ifd
+ifd
+mYU
+mYU
+mYU
+mYU
+mYU
+rEJ
+soW
+tdJ
+ukV
+vAp
+wrf
+xhM
+rJB
+eCW
+sSp
+pjG
+rHH
+yhv
+rHH
+cUx
+mEB
+tlx
+fdL
+wum
+pMZ
+bfE
+jEj
+bHs
+bnw
+bKF
+bPG
+bNX
+hBg
+bHE
+bSx
+bTR
+wCh
+uhF
+wCh
+wbS
+lWH
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(176,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaf
+aaf
+csa
+cuQ
+cwJ
+cyw
+cBa
+cBa
+cBa
+cGR
+dHR
+eIY
+fvH
+gkO
+hBq
+ifO
+jfT
+khW
+lbd
+mbl
+mZG
+nZx
+iih
+pyR
+qBg
+rFO
+spx
+tfi
+uoP
+vAw
+aWf
+xiE
+ydn
+eCW
+nxR
+fEi
+xLt
+tpy
+uSo
+keY
+mJB
+ive
+phg
+ugC
+apP
+oJW
+bFD
+bHt
+esc
+bKF
+btH
+bNY
+vqA
+bHF
+xTW
+bTS
+bVd
+stu
+uYj
+jyp
+lWH
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(177,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaf
+aaa
+cti
+cuS
+cwK
+cyx
+cBa
+cCX
+cEs
+cGT
+dIq
+eIZ
+cBa
+gmI
+hBt
+igN
+jfW
+kjb
+lbo
+mby
+nak
+nZy
+oZL
+pyR
+qCZ
+pzW
+sqd
+tft
+upp
+vAS
+sqd
+pzW
+qHW
+eCW
+seX
+pjG
+rHH
+gFH
+rHH
+ljh
+fsn
+lMf
+foG
+wum
+vqv
+qAA
+saz
+bAk
+llv
+bKF
+btU
+bNM
+rfQ
+xFC
+bSx
+flL
+jlu
+jZp
+ihG
+rGX
+lWH
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(178,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+ctj
+cuT
+cuT
+cyy
+cBa
+cBa
+cBa
+cGU
+dIx
+eJf
+cBa
+got
+hqB
+iih
+jgq
+klK
+lbI
+mbG
+naC
+nZM
+iih
+pyR
+qDV
+pzW
+sql
+sql
+sql
+sql
+sql
+pzW
+qHW
+eCW
+mCf
+gjl
+uMy
+eXs
+hCX
+lwA
+eCW
+wML
+fAl
+bKF
+ilr
+oRX
+pOe
+bHu
+eLH
+bKF
+bMh
+bOa
+rfQ
+iuA
+jyb
+jyb
+jyb
+jyb
+vNi
+lWH
+lWH
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(179,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+cuR
+cuR
+aaf
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+wWX
+aaa
+wWX
+aaa
+ctj
+cuT
+cwM
+cyz
+cBe
+cCY
+cBa
+cBa
+cBa
+cBa
+cBa
+gpB
+hti
+iih
+jgy
+kmj
+lbW
+mbH
+naX
+obf
+iih
+pzW
+qEt
+pzW
+sql
+sql
+sql
+sql
+sql
+pzW
+qJk
+eCW
+mEB
+mEB
+eSw
+eCW
+eCW
+eCW
+eCW
+gDC
+nby
+bOb
+bOb
+qrI
+bOb
+bOb
+bOb
+bOb
+bOb
+bOb
+eMm
+cVI
+nvr
+gPc
+uTu
+kmi
+vNi
+aaa
+aaa
+aaa
+aaf
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(180,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+cuR
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cnd
+aag
+aag
+ctj
+cvs
+cwN
+cyA
+cBf
+cCZ
+cEt
+cGY
+dJN
+eKp
+dJN
+gpG
+hxs
+iih
+iih
+knE
+lbX
+lbX
+knE
+iih
+iih
+pAG
+qFB
+pzW
+sql
+sql
+sql
+sql
+sql
+pzW
+qHW
+jpX
+vRU
+hPZ
+ccj
+wXx
+ogH
+uOL
+qxs
+xIp
+pXr
+bOb
+sTb
+thF
+lZV
+nId
+kcc
+rOO
+jXw
+bOb
+soy
+rYP
+jyb
+hWO
+whb
+xDM
+vNi
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(181,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvs
+cvs
+cyB
+cBg
+cDa
+cEu
+cHs
+dLg
+eKs
+fya
+gqm
+hDc
+iih
+jgH
+knE
+lce
+mcs
+knE
+obp
+iih
+pAQ
+qGw
+pzW
+sql
+sql
+sql
+sql
+sql
+pzW
+qHW
+jpX
+tHW
+tAA
+eNU
+mTV
+wZh
+uhE
+ngi
+shQ
+lUr
+bOb
+xVJ
+mjR
+dCI
+cri
+dCI
+dCI
+eOl
+bOb
+ebw
+wbc
+jyb
+okt
+rSH
+qws
+vNi
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(182,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cuR
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cvs
+cvs
+cBi
+cBi
+cEz
+cHR
+cBi
+cBi
+fyD
+gqp
+hul
+iih
+jhW
+knE
+knE
+knE
+knE
+obI
+iih
+pBm
+qHW
+pzW
+sql
+sql
+sql
+sql
+sql
+pzW
+qHW
+jpX
+ijR
+xnd
+vGd
+cEH
+rra
+hPS
+hyq
+lQC
+hSQ
+bOb
+ycm
+mfB
+lhc
+qsK
+jKM
+wer
+lnJ
+bOb
+wVM
+snu
+nDN
+nDN
+nDN
+nDN
+gVw
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(183,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aao
+aao
+aao
+aao
+aao
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+cBi
+cDb
+cEA
+cIn
+dMl
+cBi
+cBi
+gsP
+hru
+iih
+jiH
+knE
+lci
+mdq
+nbk
+oct
+iih
+pBr
+qJk
+pzW
+pzW
+pzW
+pzW
+pzW
+pzW
+pzW
+ydH
+jpX
+aql
+aql
+aql
+aql
+aql
+aql
+aql
+wNw
+lUr
+bOb
+lvF
+gQT
+xdw
+gjr
+reJ
+hcg
+pQo
+bOb
+fek
+nqY
+drJ
+wls
+lUA
+vda
+cda
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(184,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aao
+aao
+aao
+aap
+aav
+aap
+aao
+aao
+aao
+aaa
+bce
+bce
+bce
+bce
+abK
+aaa
+aaa
+aaa
+aaa
+aaf
+bXN
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aWC
+aaf
+aaf
+aaa
+aaa
+cBi
+cDc
+cEB
+cIo
+dOF
+eLe
+cBi
+gsP
+hEv
+iih
+iih
+iih
+iih
+iih
+iih
+iih
+iih
+pBw
+qHW
+rJB
+rJB
+tfv
+uqg
+vAY
+wrn
+qHW
+yeN
+rEl
+jOR
+mjw
+iZI
+rPr
+deQ
+fSb
+hzO
+kke
+kPH
+bOb
+bOb
+bOb
+bOb
+bOb
+bOb
+bOb
+bOb
+bOb
+mff
+vDT
+evM
+lUC
+stG
+rIN
+qAJ
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(185,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aao
+aao
+aap
+aap
+aap
+azL
+aap
+aap
+aap
+aao
+aao
+aao
+biH
+aIZ
+bcf
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abK
+abx
+abK
+abK
+abK
+abK
+cBi
+cDd
+cDd
+cJn
+dQc
+eLk
+cBi
+gtw
+hEU
+iio
+jiL
+kot
+ldX
+mgb
+ncm
+oev
+ijc
+pDh
+qMI
+qMI
+srU
+srU
+uqP
+vBP
+rJB
+xiX
+rJB
+rEl
+vIn
+oSv
+oMg
+fsC
+kCx
+oPy
+wdd
+elC
+lUr
+bMW
+hdI
+kUt
+uLm
+fZU
+cSC
+aDv
+eyb
+fZU
+gVm
+xBk
+drJ
+wUp
+ojP
+qtn
+cda
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xSY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(186,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+aao
+agN
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+bcf
+aIZ
+bnj
+bry
+abK
+aaa
+aaa
+aaa
+aaa
+aaf
+bXN
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+cBi
+cDd
+cEC
+cIo
+dOF
+eMv
+cBi
+guC
+hHG
+iiQ
+jiS
+kow
+lfa
+mgO
+ncv
+ofv
+ijc
+pDo
+qOT
+rMh
+ooT
+tfF
+uqR
+ooT
+ooT
+xkS
+ygz
+rEl
+lvy
+hlN
+hIR
+vxB
+sHK
+dPW
+hzO
+wmE
+thu
+lNS
+vUf
+ncQ
+nZD
+fZU
+uOA
+cXd
+nYH
+tbL
+wup
+skp
+wmj
+wmj
+wmj
+wmj
+nGr
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(187,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+aao
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aWv
+aao
+aao
+bce
+bce
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+cBi
+cDe
+cED
+cJL
+dQc
+eLe
+cBi
+gvF
+hDc
+ijc
+ijc
+koF
+lfq
+mif
+nev
+ohF
+ijc
+cuT
+cuT
+cuT
+cuT
+tfG
+utG
+vDl
+wry
+wry
+wry
+rEl
+hzO
+hzO
+hzO
+hzO
+hzO
+hzO
+hzO
+qLq
+idT
+iOW
+vUf
+wAw
+iSS
+fZU
+pDg
+aFA
+oKT
+uau
+vOR
+lIY
+rEb
+pOQ
+vxF
+rKn
+bup
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(188,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+aap
+aap
+aap
+ajv
+aap
+aap
+aap
+aap
+aap
+aHP
+aap
+aap
+aap
+aao
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+cBi
+cDf
+cEE
+cKu
+dOF
+eNj
+cBi
+rsf
+hIh
+ily
+ijc
+ijc
+ijc
+ijc
+ijc
+ijc
+ijc
+pEj
+qPz
+rMM
+ssP
+tgb
+utJ
+vDV
+wsB
+xkY
+ygD
+kay
+pbh
+oqY
+mpx
+jSL
+opU
+uVT
+uVT
+wvS
+sRL
+wzV
+mWH
+iXo
+ksd
+fZU
+mkW
+fdB
+iXv
+tbL
+jVI
+oce
+bsC
+sib
+gEj
+avI
+vGS
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(189,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aan
+aao
+aap
+aap
+aap
+aap
+ajv
+aap
+aap
+aap
+aHP
+aap
+aap
+aap
+aap
+aao
+aao
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+cBi
+cDg
+cEI
+cMi
+dSt
+eLe
+cBi
+gwp
+hJo
+ilQ
+jjL
+kpx
+lgj
+mij
+ngb
+ngb
+oZN
+pEF
+qQv
+rOX
+cuT
+tgd
+utZ
+vFV
+wuf
+xnj
+yiw
+wTK
+mTy
+uVg
+nyO
+slm
+fnG
+sZj
+sZj
+cUR
+lRD
+mco
+kTR
+gRL
+ifD
+fZU
+hft
+fJF
+mti
+fZU
+oqh
+xBk
+rEb
+mre
+kzs
+sUz
+bup
+aaa
+aaa
+aaa
+aag
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+wWX
+aaa
+aaa
+aaa
+aan
+aap
+aap
+aap
+aap
+aap
+aap
+ajv
+aap
+aHP
+aap
+aQD
+aQD
+aQD
+aQD
+aap
+aao
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvt
+cwT
+cyF
+cBi
+cBi
+cBi
+cNa
+dUe
+eNJ
+cBi
+gyw
+iFC
+ini
+jjV
+kqp
+lgm
+cBg
+jjV
+jjV
+pbb
+pFH
+hJC
+rPK
+cuT
+ooT
+uwj
+ooT
+wuH
+xom
+xom
+xom
+xom
+xom
+hnG
+hlC
+iJP
+rTw
+rTw
+grM
+rLH
+dTh
+kwY
+pcH
+ulX
+fZU
+fZU
+fZU
+fZU
+fZU
+fgL
+uXT
+hBo
+hBo
+aan
+aan
+aan
+aaf
+aaf
+aaf
+aaf
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(191,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+aaf
+aaf
+aaf
+aaf
+aan
+aav
+aaL
+aap
+aap
+aap
+aap
+aav
+aAq
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+bnx
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvw
+cwZ
+cyN
+cBj
+cDh
+cwT
+cNk
+dUz
+eOJ
+cXZ
+cXZ
+hJU
+eTf
+jlK
+cXZ
+cXZ
+cXZ
+cXZ
+oiA
+oiA
+pGB
+qSA
+oiA
+oiA
+thh
+uxi
+vHd
+wuH
+xqf
+yiX
+nSo
+bsx
+xom
+ikX
+dTG
+pzi
+gWf
+haO
+iVk
+uZc
+wlf
+lIk
+dVM
+oqY
+sRD
+hXY
+eXp
+xaT
+mdj
+wCl
+vvd
+xeH
+ibY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(192,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+aag
+aaa
+aaa
+aaa
+aan
+aap
+aap
+aap
+aap
+aap
+aap
+ajw
+aap
+aJa
+aap
+aQE
+aQE
+aQE
+aQE
+aap
+aao
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvy
+cxc
+cyO
+cBk
+cDm
+cwT
+cNB
+dVl
+ePp
+fzR
+gyA
+hJX
+ipy
+jmu
+krH
+lhG
+miQ
+cXZ
+ojj
+pcG
+pHx
+qSS
+rQu
+oiA
+tiT
+uxr
+vIj
+wuH
+xte
+ykL
+ylt
+odi
+xom
+iOS
+xjT
+pkK
+oht
+rxD
+hzq
+jxN
+olr
+owQ
+fYw
+shy
+uzX
+xOe
+uZr
+xEj
+ueM
+tMo
+cde
+srt
+xDi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(193,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aan
+aao
+aap
+aap
+aap
+aap
+ajw
+aap
+aap
+aap
+aJa
+aap
+aap
+aap
+aap
+aao
+aao
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+abK
+cxd
+cyP
+cBl
+cDn
+cwT
+cQJ
+dWp
+eQy
+fAH
+gyT
+hKa
+ipN
+jmx
+krZ
+liq
+miS
+cXZ
+ojk
+pdw
+pIm
+qTx
+rQx
+oiA
+tiZ
+uxt
+vIC
+wuH
+xtR
+ylt
+uAF
+gDF
+xom
+jjH
+jjH
+egb
+jjH
+jjH
+jjH
+guk
+guk
+ljE
+guk
+guk
+qNE
+wry
+wry
+wry
+hBo
+xDi
+ibY
+xDi
+hBo
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(194,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+aap
+aap
+aap
+ajw
+aap
+aap
+aap
+aap
+aap
+aJa
+aap
+aap
+aap
+aao
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+cvz
+cxe
+cyQ
+cBp
+cDo
+cEJ
+cRi
+dWG
+eQz
+fAL
+gzN
+hKF
+gzN
+jmU
+kse
+lju
+mlF
+cXZ
+oku
+pes
+pIS
+qUo
+rRg
+oiA
+toq
+uxZ
+vID
+wuH
+xuy
+uwS
+jEl
+tJZ
+xom
+aAu
+veJ
+mFN
+hai
+xgD
+jjH
+hBX
+pVe
+mOr
+fuU
+lRy
+qNE
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(195,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+aao
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aWv
+aao
+aao
+bce
+bce
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvJ
+cxd
+cyS
+cBs
+cDp
+cwT
+cSi
+dWM
+eQK
+fBz
+gAX
+hKV
+iqf
+jnl
+ktt
+lju
+mma
+cXZ
+okZ
+okZ
+okZ
+okZ
+okZ
+okZ
+olj
+uzI
+vIX
+wxM
+xuM
+eBZ
+fdK
+rwm
+xom
+qoZ
+pVZ
+hYU
+vIb
+jgt
+oqS
+oKu
+aZf
+ryn
+vXB
+lTw
+qNE
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+wWX
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(196,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aao
+aao
+agN
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+aap
+bcf
+aIZ
+bny
+bry
+abK
+aaa
+aaa
+aaa
+aaa
+aaf
+bXN
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvK
+cwT
+cwT
+cwT
+cDr
+cwT
+cSF
+dXD
+eRK
+cXZ
+gBn
+hLg
+iqT
+cXZ
+kux
+lju
+mmq
+cXZ
+xpf
+pfJ
+sqI
+jqu
+pix
+jnL
+tos
+uAD
+vJq
+wuH
+xvt
+oIc
+hjH
+dqp
+xom
+mAU
+sPy
+mAU
+xpb
+pLC
+jjH
+fWS
+jFL
+vGp
+eKB
+uOH
+qNE
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aag
+aag
+aag
+aaf
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(197,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aao
+aao
+aap
+aap
+aap
+aAr
+aap
+aap
+aap
+aao
+aao
+aao
+biH
+bnz
+brA
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+cjv
+bvj
+cvL
+cxm
+cyT
+cBt
+cDs
+cwT
+cSR
+dXI
+eRO
+fBJ
+gBs
+hLi
+irx
+fGW
+kvq
+liq
+mmE
+cXZ
+omu
+pfT
+pMv
+tUA
+aIg
+dqr
+toU
+uAZ
+vJS
+wuH
+xvw
+jgx
+joH
+vcY
+xom
+xff
+jjH
+gyD
+nFF
+nFF
+nFF
+qNE
+eYr
+gro
+eYr
+qNE
+qNE
+aaa
+aaa
+cuR
+cuR
+wWX
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(198,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aao
+aao
+aao
+aap
+aav
+aap
+aao
+aao
+aao
+aaa
+bce
+bce
+bce
+bce
+abK
+aaa
+aaa
+bMr
+aaa
+aaf
+bXN
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cvM
+cwT
+cwT
+cwT
+cDt
+cwT
+cTj
+dZU
+eQz
+cXZ
+gCo
+hLS
+gCo
+cXZ
+kwy
+liq
+mnf
+cXZ
+ond
+rev
+pMv
+tUA
+rRk
+opM
+opM
+uCr
+opM
+opM
+xwa
+lWR
+pUs
+lod
+xom
+ttQ
+jjH
+cXz
+nFF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(199,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aao
+aao
+aao
+aao
+aao
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaf
+aaa
+cwT
+cwT
+cwT
+cWk
+eaJ
+eSF
+fDf
+gCy
+hMv
+irO
+cXZ
+kzz
+ljU
+ljU
+cXZ
+ooQ
+rev
+pNa
+qQJ
+rRD
+opM
+tpH
+uDM
+vKX
+opM
+xwr
+efB
+nHi
+rZK
+wuH
+nFF
+nFF
+nFF
+nFF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(200,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+wWX
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+cwT
+cXZ
+ecy
+eTf
+fFG
+gCE
+hMB
+isq
+cXZ
+eTf
+ecy
+cXZ
+cXZ
+dqr
+uoF
+vLw
+vhy
+mFk
+opM
+ttq
+uEc
+vLr
+opM
+xwT
+rmy
+oTS
+gdI
+wec
+lYK
+aaa
+aaa
+aaf
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(201,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+cuR
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+fGG
+gCE
+hMB
+itj
+cXZ
+aaa
+aaa
+aaa
+ngt
+opM
+opM
+opM
+opM
+opM
+opM
+opM
+uEF
+opM
+opM
+opM
+opM
+opM
+opM
+opM
+nhd
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+wWX
+aag
+aag
+aag
+cuR
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(202,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+peA
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cuR
+aaf
+wWX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aag
+aag
+aag
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+fGW
+gCH
+hMR
+gCH
+fBJ
+aaa
+aaa
+aaa
+ngt
+oqz
+pfY
+pNf
+qVR
+rSd
+ssW
+tuI
+uET
+vMl
+wzj
+xxe
+lrG
+ttx
+wTp
+fFx
+hXo
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(203,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aag
+aaf
+aag
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaa
+aaa
+aaa
+oqz
+pgN
+pOh
+qXP
+rTr
+rTr
+twh
+uHc
+tyL
+wzw
+rTr
+lAW
+vPj
+nCU
+oqz
+aaa
+aaa
+aaa
+cuR
+aag
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(204,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaf
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+opM
+pgX
+pOD
+qYe
+rUA
+stb
+two
+uHz
+vOY
+wzP
+xyg
+osH
+pQD
+lnx
+opM
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(205,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+opM
+opM
+oqz
+qYO
+opM
+stp
+two
+uIb
+pOh
+wAG
+opM
+oqz
+oqz
+opM
+opM
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(206,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+xka
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+opM
+pho
+pOM
+qZd
+oqz
+str
+two
+uJr
+vPj
+wAM
+oqz
+wvD
+pOM
+pho
+opM
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(207,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cuR
+aaa
+aaa
+aaa
+opM
+phA
+pOh
+qZe
+rWs
+stH
+tyL
+uMn
+rTr
+wAN
+xzs
+pCR
+pOh
+knP
+opM
+aaa
+aaa
+aaa
+wWX
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(208,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+opM
+opM
+pPc
+qZT
+oqz
+sxh
+pOh
+uNh
+pOh
+wBl
+oqz
+vlz
+aVd
+opM
+opM
+aaf
+aaf
+aaf
+aaf
+lvX
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(209,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+opM
+opM
+raZ
+opM
+syJ
+tyZ
+pOh
+vPr
+wCB
+opM
+opM
+opM
+opM
+aaa
+aaa
+aaa
+aaa
+aag
+xka
+xka
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(210,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+rby
+opM
+opM
+tzP
+uNi
+vRG
+opM
+opM
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(211,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+opM
+oqz
+uRk
+oqz
+opM
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(212,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wWX
+aag
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+wWX
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(213,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(214,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+wxw
+aaf
+aaa
+aaa
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(215,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aag
+aag
+aag
+aag
+cuR
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(216,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(217,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(218,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(219,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(220,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(221,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(222,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(223,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(224,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(225,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(226,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(227,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(228,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(229,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(230,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(231,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(232,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(233,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(234,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(235,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(236,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(237,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(238,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(239,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(240,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(241,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(242,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(243,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(244,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(245,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(246,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(247,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(248,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(249,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(250,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(251,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(252,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(253,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(254,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(255,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(256,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
"}
diff --git a/maps/southern_cross/southern_cross-5.dmm b/maps/southern_cross/southern_cross-5.dmm
index 174d2155c6..83e13ca438 100644
--- a/maps/southern_cross/southern_cross-5.dmm
+++ b/maps/southern_cross/southern_cross-5.dmm
@@ -332,7 +332,7 @@
"he" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 1"; dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one)
"hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor)
"hg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main)
-"hh" = (/obj/structure/closet/secure_closet/guncabinet{req_access = newlist(); req_one_access = list(43,67)},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration)
+"hh" = (/obj/structure/closet/secure_closet/guncabinet{req_access = newlist(); req_one_access = list(43,67)},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/light{dir = 1},/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration)
"hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one)
"hk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage)
"hl" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two)
diff --git a/maps/southern_cross/southern_cross-7.dmm b/maps/southern_cross/southern_cross-7.dmm
index 6315bfac7a..8c687b0896 100644
--- a/maps/southern_cross/southern_cross-7.dmm
+++ b/maps/southern_cross/southern_cross-7.dmm
@@ -2051,11 +2051,11 @@
/obj/effect/floor_decal/industrial/warning/full,
/obj/machinery/power/apc/hyper{
coverlocked = 0;
- locked = 0;
- pixel_y = -24;
environ = 0;
equipment = 0;
- lighting = 0
+ lighting = 0;
+ locked = 0;
+ pixel_y = -24
},
/obj/structure/cable/green,
/turf/simulated/shuttle/plating,
@@ -5927,10 +5927,10 @@
},
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/permit/gun/planetside,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/clothing/accessory/holster/waist,
/obj/item/clothing/accessory/holster/waist,
/obj/effect/floor_decal/industrial/warning/cee{
@@ -7397,20 +7397,26 @@
},
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/permit/gun/planetside,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/clothing/accessory/holster/waist,
/obj/item/clothing/accessory/holster/waist,
/obj/effect/floor_decal/industrial/warning{
dir = 5
},
-/obj/item/weapon/gun/energy/locked/frontier/carbine,
-/obj/item/weapon/gun/energy/locked/frontier/carbine,
+/obj/item/weapon/gun/energy/locked/phasegun/rifle,
+/obj/item/weapon/gun/energy/locked/phasegun/rifle,
/obj/machinery/light{
dir = 8
},
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
/turf/simulated/shuttle/floor/darkred,
/area/shuttle/baby_mammoth)
"uJ" = (
@@ -7818,15 +7824,19 @@
},
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/permit/gun/planetside,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun,
/obj/effect/floor_decal/corner/green/border{
dir = 4
},
/obj/item/clothing/accessory/holster/waist,
/obj/item/clothing/accessory/holster/waist,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
/turf/simulated/floor/tiled,
/area/expoutpost/hangarone)
"vD" = (
@@ -7982,14 +7992,18 @@
},
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/permit/gun/planetside,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun,
/obj/effect/floor_decal/corner/green/border{
dir = 4
},
/obj/item/clothing/accessory/holster/waist,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
/turf/simulated/floor/tiled,
/area/expoutpost/hangarone)
"vS" = (
@@ -14523,12 +14537,16 @@
},
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/permit/gun/planetside,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/clothing/accessory/holster/waist,
/obj/item/clothing/accessory/holster/waist,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
/turf/simulated/shuttle/floor/darkred,
/area/shuttle/shuttle3/start)
"Tz" = (
diff --git a/maps/southern_cross/submaps/gateway/snowfield.dmm b/maps/southern_cross/submaps/gateway/snowfield.dmm
index b67561534d..479a5eb140 100644
--- a/maps/southern_cross/submaps/gateway/snowfield.dmm
+++ b/maps/southern_cross/submaps/gateway/snowfield.dmm
@@ -142,7 +142,7 @@
},
/obj/structure/closet/secure_closet/engineering_welding{
req_access = null;
- req_one_access = list (10,11)
+ req_one_access = list(10,11)
},
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -510,7 +510,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/engineering_welding{
req_access = null;
- req_one_access = list (10,11)
+ req_one_access = list(10,11)
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/engineering/locker_room)
@@ -1374,11 +1374,11 @@
dir = 8
},
/obj/item/clothing/suit/fire/heavy{
- armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 60);
+ armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60);
desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation."
},
/obj/item/clothing/suit/fire/heavy{
- armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 60);
+ armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60);
desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation."
},
/obj/item/device/geiger,
@@ -2907,6 +2907,10 @@
},
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/service/cafeteria)
+"cCl" = (
+/mob/living/simple_mob/animal/giant_spider/electric,
+/turf/simulated/floor,
+/area/awaymission/snowfield/security/firingrange)
"cCA" = (
/obj/machinery/door/blast/gate/open,
/turf/simulated/floor/outdoors/rocks,
@@ -2926,7 +2930,7 @@
/area/awaymission/snowfield/outside)
"cDP" = (
/obj/structure/closet/secure_closet/warden{
- starts_with = list(/obj/item/clothing/gloves/combat, /obj/item/clothing/accessory/holster, /obj/item/weapon/storage/belt/security, /obj/item/weapon/shield/riot, /obj/item/ammo_magazine/akm = 2, /obj/item/weapon/gun/projectile/automatic/serdy/krinkov, /obj/item/clothing/head/beret/sec/corporate/warden, /obj/item/clothing/head/helmet/warden/hat, /obj/item/clothing/head/helmet/warden, /obj/item/clothing/suit/armor/swat/officer, /obj/item/device/radio/headset/heads/hos/alt, /obj/item/device/radio/headset/heads/hos, /obj/item/weapon/storage/backpack/security, /obj/item/weapon/storage/backpack/satchel/sec, /obj/item/clothing/shoes/boots/marine, /obj/item/ammo_magazine/s357 = 2, /obj/item/weapon/gun/projectile/revolver/nagant/skinned, /obj/item/clothing/under/soviet, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/melee/classic_baton)
+ starts_with = list(/obj/item/clothing/gloves/combat,/obj/item/clothing/accessory/holster,/obj/item/weapon/storage/belt/security,/obj/item/weapon/shield/riot,/obj/item/ammo_magazine/akm=2,/obj/item/weapon/gun/projectile/automatic/serdy/krinkov,/obj/item/clothing/head/beret/sec/corporate/warden,/obj/item/clothing/head/helmet/warden/hat,/obj/item/clothing/head/helmet/warden,/obj/item/clothing/suit/armor/swat/officer,/obj/item/device/radio/headset/heads/hos/alt,/obj/item/device/radio/headset/heads/hos,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/ammo_magazine/s357=2,/obj/item/weapon/gun/projectile/revolver/nagant/skinned,/obj/item/clothing/under/soviet,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/melee/classic_baton)
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/steel,
@@ -3127,7 +3131,7 @@
dir = 1
},
/obj/structure/closet/secure_closet/security{
- starts_with = list(/obj/item/clothing/gloves/black, /obj/item/clothing/accessory/holster, /obj/item/weapon/storage/belt/security, /obj/item/clothing/head/beret/sec/corporate/officer, /obj/item/clothing/head/helmet, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/off, /obj/item/weapon/storage/backpack/security, /obj/item/weapon/storage/backpack/satchel/sec, /obj/item/clothing/shoes/boots/marine, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/under/soviet, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/melee/classic_baton, /obj/item/ammo_magazine/makarov = 2, /obj/item/weapon/gun/projectile/serdy_pistols/makarov)
+ starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/weapon/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec,/obj/item/device/radio/off,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/weapon/gun/projectile/serdy_pistols/makarov)
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/security/security_lockerroom)
@@ -3137,6 +3141,7 @@
},
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/animal/giant_spider/electric,
/turf/simulated/floor,
/area/awaymission/snowfield/security/security_cell)
"cQM" = (
@@ -3841,7 +3846,7 @@
dir = 8
},
/obj/machinery/door/window/brigdoor/eastright{
- id = Cell 2;
+ id = Cell2;
name = "Cell 2";
req_access = null;
req_one_access = list(2,4)
@@ -3919,11 +3924,11 @@
"dzh" = (
/obj/structure/table/rack/shelf/steel,
/obj/item/clothing/suit/fire/heavy{
- armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 60);
+ armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60);
desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation."
},
/obj/item/clothing/suit/fire/heavy{
- armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 60);
+ armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60);
desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation."
},
/obj/item/clothing/head/hardhat/firefighter/atmos,
@@ -3985,7 +3990,7 @@
/obj/effect/floor_decal/industrial/outline,
/obj/structure/closet/secure_closet/medical3{
req_access = list(33);
- starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer = 3, /obj/item/weapon/storage/belt/medical)
+ starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer=3,/obj/item/weapon/storage/belt/medical)
},
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/medical/medical_locker)
@@ -4617,7 +4622,7 @@
"dWX" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/security{
- starts_with = list(/obj/item/clothing/gloves/black, /obj/item/clothing/accessory/holster, /obj/item/weapon/storage/belt/security, /obj/item/clothing/head/beret/sec/corporate/officer, /obj/item/clothing/head/helmet, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/off, /obj/item/weapon/storage/backpack/security, /obj/item/weapon/storage/backpack/satchel/sec, /obj/item/clothing/shoes/boots/marine, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/under/soviet, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/melee/classic_baton, /obj/item/ammo_magazine/makarov = 2, /obj/item/weapon/gun/projectile/serdy_pistols/makarov)
+ starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/weapon/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec,/obj/item/device/radio/off,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/weapon/gun/projectile/serdy_pistols/makarov)
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/security/security_lockerroom)
@@ -5063,7 +5068,7 @@
/obj/effect/floor_decal/industrial/outline,
/obj/structure/closet/secure_closet/medical3{
req_access = list(33);
- starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer = 3, /obj/item/weapon/storage/belt/medical)
+ starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer=3,/obj/item/weapon/storage/belt/medical)
},
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/medical/medical_locker)
@@ -6074,6 +6079,11 @@
},
/turf/simulated/floor/tiled/monotile,
/area/awaymission/snowfield/security/seconddesk)
+"fnn" = (
+/obj/structure/catwalk,
+/mob/living/simple_mob/animal/giant_spider/ion,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/awaymission/snowfield/security/security_cell)
"fnD" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
@@ -6155,6 +6165,11 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/steel,
/area/awaymission/snowfield/security/warden)
+"fpL" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/animal/giant_spider/tunneler/frequent,
+/turf/simulated/floor,
+/area/awaymission/snowfield/security/firingrange)
"fqn" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -6801,7 +6816,7 @@
/area/awaymission/snowfield/medical/chemistry)
"fWi" = (
/obj/structure/closet/crate/radiation{
- starts_with = list(/obj/item/clothing/suit/radiation = 8, /obj/item/clothing/head/radiation = 8)
+ starts_with = list(/obj/item/clothing/suit/radiation=8,/obj/item/clothing/head/radiation=8)
},
/obj/item/stack/material/lead{
amount = 50
@@ -9164,7 +9179,7 @@
/obj/machinery/vending/tool{
dir = 8;
pixel_x = -5;
- products = list(/obj/item/stack/cable_coil/random = 10, /obj/item/weapon/tool/crowbar = 5, /obj/item/weapon/weldingtool = 3, /obj/item/weapon/tool/wirecutters = 5, /obj/item/weapon/tool/wrench = 5, /obj/item/device/analyzer = 5, /obj/item/weapon/tool/screwdriver = 5, /obj/item/device/flashlight/glowstick = 3, /obj/item/device/flashlight/glowstick/red = 3, /obj/item/device/flashlight/glowstick/blue = 3, /obj/item/device/flashlight/glowstick/orange = 3, /obj/item/device/flashlight/glowstick/yellow = 3)
+ products = list(/obj/item/stack/cable_coil/random=10,/obj/item/weapon/tool/crowbar=5,/obj/item/weapon/weldingtool=3,/obj/item/weapon/tool/wirecutters=5,/obj/item/weapon/tool/wrench=5,/obj/item/device/analyzer=5,/obj/item/weapon/tool/screwdriver=5,/obj/item/device/flashlight/glowstick=3,/obj/item/device/flashlight/glowstick/red=3,/obj/item/device/flashlight/glowstick/blue=3,/obj/item/device/flashlight/glowstick/orange=3,/obj/item/device/flashlight/glowstick/yellow=3)
},
/obj/effect/floor_decal/borderfloorblack{
dir = 9
@@ -9380,20 +9395,20 @@
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/table/rack/shelf/steel,
/obj/item/clothing/gloves/combat{
- armor = list("melee" = 30, "bullet" = 15, "laser" = 5, "energy" = 20, "bomb" = 40, "bio" = 5, "rad" = 20);
+ armor = list("melee"=30,"bullet"=15,"laser"=5,"energy"=20,"bomb"=40,"bio"=5,"rad"=20);
desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked."
},
/obj/item/clothing/gloves/combat{
- armor = list("melee" = 30, "bullet" = 15, "laser" = 5, "energy" = 20, "bomb" = 40, "bio" = 5, "rad" = 20);
+ armor = list("melee"=30,"bullet"=15,"laser"=5,"energy"=20,"bomb"=40,"bio"=5,"rad"=20);
desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked."
},
/obj/item/clothing/gloves/combat{
- armor = list("melee" = 30, "bullet" = 15, "laser" = 5, "energy" = 20, "bomb" = 40, "bio" = 5, "rad" = 20);
+ armor = list("melee"=30,"bullet"=15,"laser"=5,"energy"=20,"bomb"=40,"bio"=5,"rad"=20);
desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked."
},
/obj/item/clothing/gloves/combat{
- armor = list("melee" = 30, "bullet" = 30, "laser" = 10, "energy" = 20, "bomb" = 45, "bio" = 5, "rad" = 20);
- armorsoak = list("melee" = 5, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 5, "bio" = 0, "rad" = 0);
+ armor = list("melee"=30,"bullet"=30,"laser"=10,"energy"=20,"bomb"=45,"bio"=5,"rad"=20);
+ armorsoak = list("melee"=5,"bullet"=0,"laser"=0,"energy"=5,"bomb"=5,"bio"=0,"rad"=0);
desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked."
},
/turf/simulated/floor/tiled/techfloor/grid,
@@ -9491,15 +9506,15 @@
/obj/item/ammo_magazine/pkm,
/obj/item/ammo_magazine/pkm/ap,
/obj/item/clothing/suit/bomb_suit/security{
- armor = list("melee" = 90, "bullet" = 85, "laser" = 70, "energy" = 80, "bomb" = 100, "bio" = 0, "rad" = 0);
- armorsoak = list("melee" = 10, "bullet" = 10, "laser" = 0, "energy" = 0, "bomb" = 20, "bio" = 0, "rad" = 0);
+ armor = list("melee"=45,"bullet"=70,"laser"=35,"energy"=80,"bomb"=100,"bio"=0,"rad"=0);
+ armorsoak = list("melee"=0,"bullet"=2,"laser"=0,"energy"=0,"bomb"=20,"bio"=0,"rad"=0);
desc = "You're up against the wall AND I AM THE FUCKING WALL!";
name = "EOD-Bullet proof suit";
slowdown = 4
},
/obj/item/clothing/head/bomb_hood/security{
- armor = list("melee" = 90, "bullet" = 80, "laser" = 60, "energy" = 80, "bomb" = 100, "bio" = 0, "rad" = 0);
- armorsoak = list("melee" = 10, "bullet" = 0, "laser" = 5, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0);
+ armor = list("melee"=40,"bullet"=80,"laser"=30,"energy"=80,"bomb"=100,"bio"=0,"rad"=0);
+ armorsoak = list("melee"=0,"bullet"=2,"laser"=0,"energy"=0,"bomb"=0,"bio"=0,"rad"=0);
desc = "I'll kill you, with or without my visor!";
name = "EOD-Bullet proof hood"
},
@@ -9972,9 +9987,9 @@
"iEH" = (
/obj/structure/catwalk,
/obj/machinery/vending/food/prison{
- contraband = list(/obj/item/weapon/reagent_containers/food/snacks/bearstew = 3);
+ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/bearstew=3);
icon_state = "hotfood";
- products = list(/obj/item/weapon/tray = 6, /obj/item/weapon/material/kitchen/utensil/spoon = 20, /obj/item/weapon/reagent_containers/food/snacks/tofu = 10, /obj/item/weapon/reagent_containers/food/snacks/mashedpotato = 10, /obj/item/weapon/reagent_containers/food/snacks/flatbread = 10)
+ products = list(/obj/item/weapon/tray=6,/obj/item/weapon/material/kitchen/utensil/spoon=20,/obj/item/weapon/reagent_containers/food/snacks/tofu=10,/obj/item/weapon/reagent_containers/food/snacks/mashedpotato=10,/obj/item/weapon/reagent_containers/food/snacks/flatbread=10)
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/security/security_cell)
@@ -10760,7 +10775,7 @@
/obj/machinery/vending/engivend{
dir = 8;
pixel_x = -5;
- products = list(/obj/item/device/geiger = 4, /obj/item/device/multitool = 4, /obj/item/weapon/cell/high = 10, /obj/item/weapon/airlock_electronics = 10, /obj/item/weapon/module/power_control = 10, /obj/item/weapon/circuitboard/airalarm = 10, /obj/item/weapon/circuitboard/firealarm = 10, /obj/item/weapon/circuitboard/status_display = 2, /obj/item/weapon/circuitboard/ai_status_display = 2, /obj/item/weapon/circuitboard/newscaster = 2, /obj/item/weapon/circuitboard/intercom = 4, /obj/item/weapon/circuitboard/security/telescreen/entertainment = 4, /obj/item/weapon/stock_parts/motor = 2, /obj/item/weapon/stock_parts/spring = 2, /obj/item/weapon/stock_parts/gear = 2, /obj/item/weapon/circuitboard/atm,/obj/item/weapon/circuitboard/guestpass,/obj/item/weapon/circuitboard/keycard_auth,/obj/item/weapon/circuitboard/geiger,/obj/item/weapon/circuitboard/photocopier,/obj/item/weapon/circuitboard/fax,/obj/item/weapon/circuitboard/request,/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/washing)
+ products = list(/obj/item/device/geiger=4,/obj/item/device/multitool=4,/obj/item/weapon/cell/high=10,/obj/item/weapon/airlock_electronics=10,/obj/item/weapon/module/power_control=10,/obj/item/weapon/circuitboard/airalarm=10,/obj/item/weapon/circuitboard/firealarm=10,/obj/item/weapon/circuitboard/status_display=2,/obj/item/weapon/circuitboard/ai_status_display=2,/obj/item/weapon/circuitboard/newscaster=2,/obj/item/weapon/circuitboard/intercom=4,/obj/item/weapon/circuitboard/security/telescreen/entertainment=4,/obj/item/weapon/stock_parts/motor=2,/obj/item/weapon/stock_parts/spring=2,/obj/item/weapon/stock_parts/gear=2,/obj/item/weapon/circuitboard/atm,/obj/item/weapon/circuitboard/guestpass,/obj/item/weapon/circuitboard/keycard_auth,/obj/item/weapon/circuitboard/geiger,/obj/item/weapon/circuitboard/photocopier,/obj/item/weapon/circuitboard/fax,/obj/item/weapon/circuitboard/request,/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/washing)
},
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/engineering/locker_room)
@@ -10982,7 +10997,7 @@
/area/awaymission/snowfield/dorms/dorm7)
"jtR" = (
/obj/structure/closet/secure_closet/security{
- starts_with = list(/obj/item/clothing/gloves/black, /obj/item/clothing/accessory/holster, /obj/item/weapon/storage/belt/security, /obj/item/clothing/head/beret/sec/corporate/officer, /obj/item/clothing/head/helmet, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/off, /obj/item/weapon/storage/backpack/security, /obj/item/weapon/storage/backpack/satchel/sec, /obj/item/clothing/shoes/boots/marine, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/under/soviet, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/melee/classic_baton, /obj/item/ammo_magazine/makarov = 2, /obj/item/weapon/gun/projectile/serdy_pistols/makarov)
+ starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/weapon/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec,/obj/item/device/radio/off,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/weapon/gun/projectile/serdy_pistols/makarov)
},
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/window/reinforced,
@@ -10990,10 +11005,11 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/security/security_lockerroom)
"jtT" = (
-/turf/simulated/wall/solidrock{
- block_tele = 0
- },
-/area/awaymission/snowfield/outside)
+/obj/structure/lattice,
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/animal/giant_spider/tunneler/frequent,
+/turf/simulated/floor/outdoors/rocks/caves,
+/area/awaymission/snowfield/security/security_cell)
"juu" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/green/border,
@@ -11240,7 +11256,7 @@
dir = 1
},
/obj/structure/closet/secure_closet/detective{
- starts_with = list(/obj/item/clothing/gloves/forensic, /obj/item/clothing/accessory/holster, /obj/item/weapon/storage/belt/security, /obj/item/clothing/head/fedora, /obj/item/clothing/head/fedora/brown, /obj/item/clothing/suit/storage/det_trench,/obj/item/clothing/suit/storage/det_trench/grey, /obj/item/clothing/suit/armor/bulletproof, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/off, /obj/item/weapon/storage/backpack/security, /obj/item/weapon/storage/backpack/satchel/sec, /obj/item/clothing/shoes/boots/marine, /obj/item/clothing/under/soviet, /obj/item/weapon/melee/classic_baton, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/device/flash, /obj/item/ammo_magazine/s357 = 2, /obj/item/weapon/gun/projectile/revolver/nagant)
+ starts_with = list(/obj/item/clothing/gloves/forensic,/obj/item/clothing/accessory/holster,/obj/item/weapon/storage/belt/security,/obj/item/clothing/head/fedora,/obj/item/clothing/head/fedora/brown,/obj/item/clothing/suit/storage/det_trench,/obj/item/clothing/suit/storage/det_trench/grey,/obj/item/clothing/suit/armor/bulletproof,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec,/obj/item/device/radio/off,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/under/soviet,/obj/item/weapon/melee/classic_baton,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/flash,/obj/item/ammo_magazine/s357=2,/obj/item/weapon/gun/projectile/revolver/nagant)
},
/turf/simulated/floor/lino,
/area/awaymission/snowfield/security/detective)
@@ -11884,7 +11900,7 @@
/area/awaymission/snowfield/dorms/dorm7)
"kcv" = (
/obj/machinery/door/window/brigdoor/eastright{
- id = Cell 1;
+ id = Cell1;
name = "Cell 1";
req_access = null;
req_one_access = list(2,4)
@@ -12169,7 +12185,7 @@
/obj/item/weapon/soap,
/obj/structure/closet/secure_closet/medical3{
req_access = list(33);
- starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer = 3, /obj/item/weapon/storage/belt/medical)
+ starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer=3,/obj/item/weapon/storage/belt/medical)
},
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/medical/medical_locker)
@@ -12395,7 +12411,7 @@
icon_state = "1-2"
},
/obj/item/clothing/suit/fire/heavy{
- armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 60);
+ armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60);
desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation."
},
/obj/effect/decal/cleanable/dirt,
@@ -13444,17 +13460,17 @@
/obj/structure/table/steel_reinforced,
/obj/item/weapon/reagent_containers/glass/beaker/vial{
name = "vial (Lexorin)";
- prefill = list("lexorin" = 30)
+ prefill = list("lexorin"=30)
},
/obj/item/weapon/reagent_containers/glass/beaker/vial{
name = "vial (Zombie Powder)";
pixel_x = -5;
- prefill = list("zombiepowder" = 30)
+ prefill = list("zombiepowder"=30)
},
/obj/item/weapon/reagent_containers/glass/beaker/vial{
name = "vial (Cryptobiolin)";
pixel_x = 5;
- prefill = list("cryptobiolin" = 30)
+ prefill = list("cryptobiolin"=30)
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/security/security_cell)
@@ -13918,7 +13934,7 @@
/obj/effect/floor_decal/industrial/outline,
/obj/structure/closet/secure_closet/medical3{
req_access = list(33);
- starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer = 3, /obj/item/weapon/storage/belt/medical)
+ starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer=3,/obj/item/weapon/storage/belt/medical)
},
/obj/item/weapon/soap,
/turf/simulated/floor/tiled/neutral,
@@ -13969,6 +13985,7 @@
/obj/effect/floor_decal/corner/red/border{
dir = 10
},
+/mob/living/simple_mob/animal/giant_spider/tunneler/frequent,
/turf/simulated/floor/tiled/steel,
/area/awaymission/snowfield/security/firingrange)
"lPD" = (
@@ -15536,6 +15553,7 @@
/area/awaymission/snowfield/checkpointunpowered)
"niv" = (
/obj/effect/floor_decal/industrial/warning,
+/mob/living/simple_mob/animal/giant_spider/pepper,
/turf/simulated/floor/tiled/steel,
/area/awaymission/snowfield/security/firingrange)
"niM" = (
@@ -16812,7 +16830,7 @@
/obj/machinery/vending/tool{
dir = 8;
pixel_x = -5;
- products = list(/obj/item/stack/cable_coil/random = 10, /obj/item/weapon/tool/crowbar = 5, /obj/item/weapon/weldingtool = 3, /obj/item/weapon/tool/wirecutters = 5, /obj/item/weapon/tool/wrench = 5, /obj/item/device/analyzer = 5, /obj/item/weapon/tool/screwdriver = 5, /obj/item/device/flashlight/glowstick = 3, /obj/item/device/flashlight/glowstick/red = 3, /obj/item/device/flashlight/glowstick/blue = 3, /obj/item/device/flashlight/glowstick/orange = 3, /obj/item/device/flashlight/glowstick/yellow = 3)
+ products = list(/obj/item/stack/cable_coil/random=10,/obj/item/weapon/tool/crowbar=5,/obj/item/weapon/weldingtool=3,/obj/item/weapon/tool/wirecutters=5,/obj/item/weapon/tool/wrench=5,/obj/item/device/analyzer=5,/obj/item/weapon/tool/screwdriver=5,/obj/item/device/flashlight/glowstick=3,/obj/item/device/flashlight/glowstick/red=3,/obj/item/device/flashlight/glowstick/blue=3,/obj/item/device/flashlight/glowstick/orange=3,/obj/item/device/flashlight/glowstick/yellow=3)
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techfloor,
@@ -17099,6 +17117,11 @@
/obj/item/weapon/storage/box/masks,
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/medical/surgery)
+"owE" = (
+/obj/structure/catwalk,
+/mob/living/simple_mob/animal/giant_spider/pepper,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/awaymission/snowfield/security/security_cell)
"oxR" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/weapon/ore/glass,
@@ -17875,7 +17898,7 @@
/area/awaymission/snowfield/medical/surgery)
"prj" = (
/obj/item/clothing/suit/fire/heavy{
- armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 60);
+ armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60);
desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation."
},
/obj/effect/decal/cleanable/dirt,
@@ -17995,6 +18018,11 @@
/obj/effect/spider/stickyweb,
/turf/simulated/floor/tiled/dark,
/area/awaymission/snowfield/security/security_lockerroom)
+"puf" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_mob/animal/giant_spider/pepper,
+/turf/simulated/floor/outdoors/rocks/caves,
+/area/awaymission/snowfield/security/hallway2)
"pun" = (
/turf/simulated/floor/outdoors/snow/sif/planetuse,
/area/awaymission/snowfield/outside)
@@ -19663,7 +19691,7 @@
/obj/item/weapon/storage/box{
desc = "A box full of soap. Soapy.";
name = "Soap box";
- starts_with = list(/obj/item/weapon/soap = 7)
+ starts_with = list(/obj/item/weapon/soap=7)
},
/obj/item/weapon/storage/box/lights/bulbs,
/turf/simulated/floor/tiled/steel_grid,
@@ -19784,7 +19812,7 @@
/area/awaymission/snowfield/public/publicrestroom)
"qPi" = (
/obj/machinery/door/airlock/highsecurity{
- req_one_access = list(1, 53)
+ req_one_access = list(1,53)
},
/obj/structure/cable/green{
d1 = 4;
@@ -21307,7 +21335,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/window/brigdoor/eastright{
- id = Cell 3;
+ id = Cell3;
name = "Cell 3";
req_access = null;
req_one_access = list(2,4)
@@ -21893,7 +21921,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/engineering_welding{
req_access = null;
- req_one_access = list (10,11)
+ req_one_access = list(10,11)
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/awaymission/snowfield/engineering/locker_room)
@@ -22752,29 +22780,29 @@
/obj/item/clothing/mask/gas/half,
/obj/item/clothing/mask/gas/half,
/obj/item/clothing/under/tactical{
- armor = list("melee" = 40, "bullet" = 35, "laser" = 10, "energy" = 10, "bomb" = 10, "bio" = 10, "rad" = 35);
- armorsoak = list("melee" = 10, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 5, "bio" = 5, "rad" = 5);
+ armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35);
+ armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1);
desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed.";
name = "tactical armored jumpsuit";
slowdown = 0.5
},
/obj/item/clothing/under/tactical{
- armor = list("melee" = 40, "bullet" = 35, "laser" = 10, "energy" = 10, "bomb" = 10, "bio" = 10, "rad" = 35);
- armorsoak = list("melee" = 10, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 5, "bio" = 5, "rad" = 5);
+ armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35);
+ armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1);
desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed.";
name = "tactical armored jumpsuit";
slowdown = 0.5
},
/obj/item/clothing/under/tactical{
- armor = list("melee" = 40, "bullet" = 35, "laser" = 10, "energy" = 10, "bomb" = 10, "bio" = 10, "rad" = 35);
- armorsoak = list("melee" = 10, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 5, "bio" = 5, "rad" = 5);
+ armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35);
+ armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1);
desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed.";
name = "tactical armored jumpsuit";
slowdown = 0.5
},
/obj/item/clothing/under/tactical{
- armor = list("melee" = 40, "bullet" = 35, "laser" = 10, "energy" = 10, "bomb" = 10, "bio" = 10, "rad" = 35);
- armorsoak = list("melee" = 10, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 5, "bio" = 5, "rad" = 5);
+ armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35);
+ armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1);
desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed.";
name = "tactical armored jumpsuit";
slowdown = 0.5
@@ -22858,22 +22886,22 @@
/obj/item/weapon/storage/box{
desc = "A box full of soap. Soapy.";
name = "Soap box";
- starts_with = list(/obj/item/weapon/soap = 7)
+ starts_with = list(/obj/item/weapon/soap=7)
},
/obj/item/weapon/storage/box{
desc = "A box full of soap. Soapy.";
name = "Soap box";
- starts_with = list(/obj/item/weapon/soap = 7)
+ starts_with = list(/obj/item/weapon/soap=7)
},
/obj/item/weapon/storage/box{
desc = "A box full of soap. Soapy.";
name = "Soap box";
- starts_with = list(/obj/item/weapon/soap = 7)
+ starts_with = list(/obj/item/weapon/soap=7)
},
/obj/item/weapon/storage/box{
desc = "A box full of soap. Soapy.";
name = "Soap box";
- starts_with = list(/obj/item/weapon/soap = 7)
+ starts_with = list(/obj/item/weapon/soap=7)
},
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -22994,7 +23022,7 @@
/obj/machinery/vending/tool{
dir = 8;
pixel_x = -5;
- products = list(/obj/item/stack/cable_coil/random = 10, /obj/item/weapon/tool/crowbar = 5, /obj/item/weapon/weldingtool = 3, /obj/item/weapon/tool/wirecutters = 5, /obj/item/weapon/tool/wrench = 5, /obj/item/device/analyzer = 5, /obj/item/weapon/tool/screwdriver = 5, /obj/item/device/flashlight/glowstick = 3, /obj/item/device/flashlight/glowstick/red = 3, /obj/item/device/flashlight/glowstick/blue = 3, /obj/item/device/flashlight/glowstick/orange = 3, /obj/item/device/flashlight/glowstick/yellow = 3)
+ products = list(/obj/item/stack/cable_coil/random=10,/obj/item/weapon/tool/crowbar=5,/obj/item/weapon/weldingtool=3,/obj/item/weapon/tool/wirecutters=5,/obj/item/weapon/tool/wrench=5,/obj/item/device/analyzer=5,/obj/item/weapon/tool/screwdriver=5,/obj/item/device/flashlight/glowstick=3,/obj/item/device/flashlight/glowstick/red=3,/obj/item/device/flashlight/glowstick/blue=3,/obj/item/device/flashlight/glowstick/orange=3,/obj/item/device/flashlight/glowstick/yellow=3)
},
/obj/effect/floor_decal/corner/yellow/border{
dir = 8
@@ -24027,7 +24055,7 @@
/obj/machinery/vending/security{
description_fluff = "This security vending machine is kindly provided by the-... Sorry, how do you spell this company's name again?";
product_ads = "Crack capitalist skulls!;Beat some heads in!;Don't forget - harm is good!;Your weapons are right here.;Handcuffs!;Freeze, scumbag!;Don't shoot me bro!;Shoot them, bro.;Why not have a slice of sandwich.";
- products = list(/obj/item/weapon/handcuffs = 12, /obj/item/weapon/grenade/flashbang = 4, /obj/item/weapon/reagent_containers/food/snacks/sandwich = 12, /obj/item/weapon/storage/box/evidence = 6,/obj/item/ammo_magazine/makarov = 18,/obj/item/weapon/gun/projectile/serdy_pistols/makarov = 4,/obj/item/weapon/melee/classic_baton = 8)
+ products = list(/obj/item/weapon/handcuffs=12,/obj/item/weapon/grenade/flashbang=4,/obj/item/weapon/reagent_containers/food/snacks/sandwich=12,/obj/item/weapon/storage/box/evidence=6,/obj/item/ammo_magazine/makarov=18,/obj/item/weapon/gun/projectile/serdy_pistols/makarov=4,/obj/item/weapon/melee/classic_baton=8)
},
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -24202,7 +24230,7 @@
"vaq" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/security{
- starts_with = list(/obj/item/clothing/gloves/black, /obj/item/clothing/accessory/holster, /obj/item/weapon/storage/belt/security, /obj/item/clothing/head/beret/sec/corporate/officer, /obj/item/clothing/head/helmet, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/off, /obj/item/weapon/storage/backpack/security, /obj/item/weapon/storage/backpack/satchel/sec, /obj/item/clothing/shoes/boots/marine, /obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/under/soviet, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/melee/classic_baton, /obj/item/ammo_magazine/makarov = 2, /obj/item/weapon/gun/projectile/serdy_pistols/makarov)
+ starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/weapon/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec,/obj/item/device/radio/off,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/weapon/gun/projectile/serdy_pistols/makarov)
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techfloor/grid,
@@ -25862,7 +25890,7 @@
/obj/effect/floor_decal/industrial/outline,
/obj/structure/closet/secure_closet/medical3{
req_access = list(33);
- starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer = 3, /obj/item/weapon/storage/belt/medical)
+ starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/device/radio/headset/headset_med,/obj/item/device/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/weapon/storage/box/freezer=3,/obj/item/weapon/storage/belt/medical)
},
/turf/simulated/floor/tiled/neutral,
/area/awaymission/snowfield/medical/medical_locker)
@@ -26452,6 +26480,7 @@
d2 = 2;
icon_state = "0-2"
},
+/mob/living/simple_mob/animal/giant_spider/tunneler/frequent,
/turf/simulated/floor/tiled/steel,
/area/awaymission/snowfield/security/firingrange)
"wSz" = (
@@ -47458,7 +47487,7 @@ tvg
aaw
xDT
aBy
-xPZ
+fpL
nBr
oGm
pgb
@@ -47719,7 +47748,7 @@ aBy
aBy
rSH
okr
-rSH
+cCl
bZn
bZn
bZn
@@ -48230,7 +48259,7 @@ aKI
iUn
raJ
mmT
-cwI
+puf
mJi
mJi
mJi
@@ -49007,7 +49036,7 @@ uDJ
cTE
eUs
tlT
-cTE
+jtT
uqf
faB
uDJ
@@ -50550,7 +50579,7 @@ byc
aMr
mFz
mFz
-mFz
+owE
rIV
rIV
mfc
@@ -50816,7 +50845,7 @@ mFz
fcB
dFg
mFz
-mFz
+fnn
ocr
ocr
ocr
@@ -69288,7 +69317,7 @@ pfs
pun
qym
pfs
-jtT
+qqw
kNs
gwC
eAM
diff --git a/maps/southern_cross/submaps/virtual_reality/constructVR.dm b/maps/southern_cross/submaps/virtual_reality/constructVR.dm
index 9c83b96ca0..caff07da30 100644
--- a/maps/southern_cross/submaps/virtual_reality/constructVR.dm
+++ b/maps/southern_cross/submaps/virtual_reality/constructVR.dm
@@ -74,6 +74,51 @@
name = "Cultist Outside"
ambience = AMBIENCE_UNHOLY
+//City section
+/area/vr/powered/bar
+ name = "VR Bar"
+ icon_state = "green"
+
+/area/vr/powered/cafe
+ name = "VR Ghost Cafe"
+ icon_state = "green"
+
+/area/vr/powered/gunshop
+ name = "VR GunShop"
+ icon_state = "green"
+
+/area/vr/powered/vet
+ name = "VR Vet"
+ icon_state = "green"
+
+/area/vr/powered/shop
+ name = "VR Shop"
+ icon_state = "green"
+
+/area/vr/powered/art
+ name = "VR Art Gallery"
+ icon_state = "green"
+
+/area/vr/powered/constore
+ name = "VR Convenience Store"
+ icon_state = "green"
+
+/area/vr/powered/nuke
+ name = "VR Violation"
+ icon_state = "green"
+
+/area/vr/powered/motel
+ name = "VR Motel"
+ icon_state = "green"
+
+/area/vr/powered/dungeon
+ name = "VR Dungeon"
+ icon_state = "darkred"
+
+/area/vr/powered/dungeon/indoors
+ name = "VR Sewers"
+ icon_state = "red"
+
/area/vr/powered/space
name = "VR Space Vessel"
icon_state = "away2"
diff --git a/maps/southern_cross/submaps/virtual_reality/constructVR.dmm b/maps/southern_cross/submaps/virtual_reality/constructVR.dmm
index f0b1ddaff8..513ec490cf 100644
--- a/maps/southern_cross/submaps/virtual_reality/constructVR.dmm
+++ b/maps/southern_cross/submaps/virtual_reality/constructVR.dmm
@@ -1,26 +1,37 @@
+"aa" = (/obj/machinery/door/airlock/medical{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered/vet)
"ab" = (/turf/unsimulated/wall/seperator,/area/space)
"ac" = (/obj/structure/outcrop/diamond,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"ad" = (/obj/item/weapon/coin/gold,/obj/item/toy/plushie/carp/gold,/turf/simulated/floor/flock,/area/vr/powered/rocks)
-"af" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"ae" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"af" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"ag" = (/obj/structure/salvageable/console_os{name = "Turret control console"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"ah" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"ai" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"aj" = (/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"ak" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
"al" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/mecha_part_fabricator{req_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"am" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
-"an" = (/obj/machinery/porta_turret/stationary/syndie{faction = "hivebot"},/turf/simulated/floor/airless,/area/space)
+"an" = (/turf/simulated/floor/wood,/area/vr/powered/bar)
+"ao" = (/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"ap" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/machinery/light,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"aq" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/grass/heavy{temperature = 293.15},/area/vr/outdoors/powered)
"ar" = (/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
+"as" = (/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"at" = (/obj/structure/table/alien/blue,/obj/item/weapon/surgical/circular_saw/alien,/obj/item/weapon/surgical/scalpel/alien{pixel_y = 8},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"au" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"av" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
"aw" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"ax" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/rshull,/area/vr/powered)
"ay" = (/obj/structure/flora/tree/jungle_small,/turf/unsimulated/wall,/area/vr/outdoors/powered)
"az" = (/obj/structure/bed/double/padded,/obj/machinery/light/small{dir = 4},/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/wood,/area/vr/powered)
+"aA" = (/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/vr/powered/art)
"aB" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/weapon/grenade/spawnergrenade/casino/armadillo,/obj/item/weapon/grenade/spawnergrenade/casino/armadillo,/obj/item/weapon/grenade/spawnergrenade/casino/cat,/obj/item/weapon/grenade/spawnergrenade/casino/cat,/obj/item/weapon/grenade/spawnergrenade/casino/chicken,/obj/item/weapon/grenade/spawnergrenade/casino/chicken,/obj/item/weapon/grenade/spawnergrenade/casino/corgi,/obj/item/weapon/grenade/spawnergrenade/casino/corgi,/obj/item/weapon/grenade/spawnergrenade/casino/cow,/obj/item/weapon/grenade/spawnergrenade/casino/cow,/obj/item/weapon/grenade/spawnergrenade/casino/fennec,/obj/item/weapon/grenade/spawnergrenade/casino/fennec,/obj/item/weapon/grenade/spawnergrenade/casino/fox,/obj/item/weapon/grenade/spawnergrenade/casino/fox,/obj/item/weapon/grenade/spawnergrenade/casino/goat,/obj/item/weapon/grenade/spawnergrenade/casino/goat,/obj/item/weapon/grenade/spawnergrenade/casino/goat,/obj/item/weapon/grenade/spawnergrenade/casino/fox,/obj/item/weapon/grenade/spawnergrenade/casino/fennec,/obj/item/weapon/grenade/spawnergrenade/casino/cow,/obj/item/weapon/grenade/spawnergrenade/casino/corgi,/obj/item/weapon/grenade/spawnergrenade/casino/chicken,/obj/item/weapon/grenade/spawnergrenade/casino/cat,/obj/item/weapon/grenade/spawnergrenade/casino/chicken,/obj/item/weapon/grenade/spawnergrenade/casino/chicken,/obj/item/weapon/grenade/spawnergrenade/casino/chicken,/obj/item/weapon/grenade/spawnergrenade/casino/horse,/obj/item/weapon/grenade/spawnergrenade/casino/horse,/obj/item/weapon/grenade/spawnergrenade/casino/horse,/obj/item/weapon/grenade/spawnergrenade/casino/lizard,/obj/item/weapon/grenade/spawnergrenade/casino/lizard,/obj/item/weapon/grenade/spawnergrenade/casino/lizard,/obj/item/weapon/grenade/spawnergrenade/casino/otie,/obj/item/weapon/grenade/spawnergrenade/casino/otie,/obj/item/weapon/grenade/spawnergrenade/casino/otie,/obj/item/weapon/grenade/spawnergrenade/casino/otie/chubby,/obj/item/weapon/grenade/spawnergrenade/casino/otie/chubby,/obj/item/weapon/grenade/spawnergrenade/casino/otie/chubby,/obj/item/weapon/grenade/spawnergrenade/casino/penguin,/obj/item/weapon/grenade/spawnergrenade/casino/penguin,/obj/item/weapon/grenade/spawnergrenade/casino/penguin,/obj/item/weapon/grenade/spawnergrenade/casino/redpanda,/obj/item/weapon/grenade/spawnergrenade/casino/redpanda,/obj/item/weapon/grenade/spawnergrenade/casino/redpanda,/obj/item/weapon/grenade/spawnergrenade/casino/snake,/obj/item/weapon/grenade/spawnergrenade/casino/snake,/obj/item/weapon/grenade/spawnergrenade/casino/snake,/obj/item/weapon/grenade/spawnergrenade/casino/tindalos,/obj/item/weapon/grenade/spawnergrenade/casino/tindalos,/obj/item/weapon/grenade/spawnergrenade/casino/tindalos,/obj/item/weapon/grenade/spawnergrenade/casino/zorgoia,/obj/item/weapon/grenade/spawnergrenade/casino/zorgoia,/obj/item/weapon/grenade/spawnergrenade/casino/zorgoia,/obj/item/weapon/grenade/spawnergrenade/casino/yithian,/obj/item/weapon/grenade/spawnergrenade/casino/yithian,/obj/item/weapon/grenade/spawnergrenade/casino/yithian,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
+"aC" = (/turf/unsimulated/wall/fakeglass,/area/vr/powered/conspawn)
"aD" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"aE" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"aF" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
-"aH" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/machinery/light{dir = 1},/obj/item/weapon/paper{desc = ""; info = "Due to many exploits we have decided to remove the consoles, I asked for help fixing this but instead I got lousy excuses. So you get no more RD!!"; name = "Angrily Scribbled Note"},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
+"aG" = (/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
+"aH" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"aI" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"aJ" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/characters,/obj/structure/curtain/open/bed,/turf/simulated/floor/wood,/area/vr/powered)
"aK" = (/obj/structure/table/woodentable,/obj/item/weapon/material/sharpeningkit,/obj/item/weapon/material/knife/tacknife/boot,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
@@ -34,6 +45,7 @@
"aS" = (/obj/structure/table/darkglass,/obj/item/weapon/dnainjector/insulation,/obj/item/weapon/dnainjector/insulation{pixel_y = -5},/obj/item/weapon/dnainjector/insulation{pixel_y = -3},/obj/item/weapon/dnainjector/telemut{pixel_y = 9},/obj/item/weapon/dnainjector/telemut{pixel_y = 3},/obj/item/weapon/dnainjector/telemut{pixel_y = 6},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"aT" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"aU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/shuttle/window,/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"aV" = (/obj/effect/floor_decal/corner/red/diagonal,/obj/machinery/door/airlock/medical{req_one_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"aW" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"aX" = (/obj/mecha/combat/fighter/gunpod/loaded{dir = 4},/turf/space,/area/space)
"aY" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
@@ -43,28 +55,42 @@
"bc" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/cryofeed,/turf/simulated/floor/greengrid/nitrogen,/area/vr/powered/space/sciship)
"bd" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"be" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/hos,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
+"bf" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
"bg" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"bh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/maintenance/engineering,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"bi" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"bj" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/vr/powered/bar)
"bk" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/turf/simulated/floor/wood,/area/vr/powered)
"bl" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/structure/table/rack/shelf/steel,/obj/item/clothing/head/cowboy,/obj/item/clothing/glasses/fakesunglasses/aviator,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase)
"bm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"bn" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"bo" = (/obj/structure/table/bench/wooden,/obj/item/weapon/gun/energy/pulse_rifle,/turf/simulated/floor/plating,/area/vr/powered/material)
+"bp" = (/obj/machinery/light/small,/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
+"bq" = (/obj/random/trash,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"br" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/ion_engine,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"bs" = (/obj/structure/simple_door/wood,/turf/simulated/floor,/area/vr/powered)
"bt" = (/obj/structure/toilet{pixel_y = 12},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/survival_pod{dir = 2; req_one_access = null},/turf/simulated/floor/tiled/freezer,/area/vr/powered/space/whiteship)
+"bu" = (/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/vr/powered/dungeon)
"bv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/curtain/black,/turf/simulated/floor/tiled/neutral,/area/vr/powered)
+"bw" = (/turf/simulated/floor/outdoors/sidewalk/side{icon_state = "sidewalk"; movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"bx" = (/obj/structure/bed/chair/sofa/left/brown{pixel_y = 0; dir = 1},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
+"by" = (/obj/structure/reagent_dispensers/fueltank/barrel/two,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"bz" = (/obj/item/weapon/weldingtool/largetank,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/item/weapon/storage/firstaid/surgery,/obj/structure/table/steel_reinforced,/obj/item/stack/nanopaste/advanced,/obj/item/stack/nanopaste/advanced,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"bA" = (/obj/structure/simple_door/wood,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered/cult)
"bB" = (/obj/machinery/vending/wardrobe/chapdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"bC" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"bD" = (/turf/simulated/wall/r_wall,/area/vr/powered/art)
+"bE" = (/mob/living/simple_mob/vore/aggressive/rat/phoron,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"bF" = (/obj/machinery/door/firedoor/glass,/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"bG" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"bH" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"bI" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered)
"bJ" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/survival_pod{opacity = 1},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"bK" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/unsimulated/wall,/area/vr/powered/cult)
"bL" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"bM" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/regular,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"bN" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/blast/shutters{id = "vrgunshop"; dir = 2},/obj/machinery/door/window/northright,/obj/machinery/door/window/southleft,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"bO" = (/obj/item/weapon/gun/energy/alien{pixel_y = -6},/obj/item/weapon/gun/energy/alien,/obj/structure/table/alien/blue,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"bP" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"bQ" = (/obj/machinery/vending/wardrobe/clowndrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"bR" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
@@ -74,9 +100,12 @@
"bV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = -24},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"bW" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"bX" = (/obj/machinery/disperser/middle{dir = 1},/turf/space,/area/space)
+"bY" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"bZ" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
+"ca" = (/obj/effect/map_effect/portal/master/side_a{dir = 8; portal_id = "vrdungeon"},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/rocks)
"cb" = (/obj/machinery/light,/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"cc" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
+"cd" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/morestuff,/turf/simulated/floor/wood,/area/vr/powered/shop)
"ce" = (/obj/machinery/vending/deathmatch,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase)
"cf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"cg" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/computer/operating{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
@@ -85,16 +114,23 @@
"cj" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor/wood,/area/vr/powered/cult)
"ck" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered/cult)
"cl" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif/broken,/area/vr/powered/space/mechfactory)
+"cm" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"cn" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
"co" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gibbearhead"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"cp" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/tiled/white,/area/vr/powered)
"cq" = (/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
+"cr" = (/mob/living/simple_mob/vore/alienanimals/catslug/suslug/color/red,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"cs" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"ct" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/structure/closet/walllocker/medical/east,/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"cu" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/durand,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
"cv" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/shoes/sandal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"cw" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/turf/simulated/floor/tiled,/area/vr/powered/constore)
"cx" = (/obj/effect/catwalk_plated/dark,/obj/machinery/shipsensors{dir = 8},/obj/structure/sign/science{pixel_x = 32},/turf/space,/area/vr/powered/space/whiteship)
+"cy" = (/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"cz" = (/obj/structure/prop/machine/nt_biocan,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"cA" = (/turf/simulated/floor/airless,/area/space)
-"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/shield_generator/charged{field_radius = 8; initial_shield_modes = 2153; target_radius = 8},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"cB" = (/obj/machinery/transhuman/autoresleever{respawn = 0; vore_respawn = 0; equip_body = 1; name = "VR Ghost Cafe Spawn"; desc = "Clicking on this as a ghost will spawn you in as a NPC exclusive to the VR world loaded into the station."; ghost_spawns = 1},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/shield_generator/charged{field_radius = 8; initial_shield_modes = 2153; target_radius = 8},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"cD" = (/turf/simulated/wall/r_wall,/area/vr/powered/building1)
"cE" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"cF" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
@@ -107,22 +143,33 @@
"cM" = (/obj/machinery/chem_master{pixel_x = -7},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"cN" = (/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/health,/obj/item/weapon/implantcase/health,/obj/item/weapon/implantcase/laser,/obj/item/weapon/implantcase/laser,/obj/item/weapon/implantcase/medkit,/obj/item/weapon/implantcase/medkit,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/restrainingbolt,/obj/item/weapon/implantcase/restrainingbolt,/obj/item/weapon/card/id/casino{access = list(777); desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{access = list(777); desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/material/twohanded/sledgehammer/mjollnir,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/storage/pouch/holding,/obj/item/weapon/storage/backpack/holding,/obj/item/weapon/storage/belt/soulstone/full,/obj/item/clothing/accessory/fluff/zeta_blackwell_1,/turf/simulated/floor/cult,/area/vr/powered/cult)
"cO" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"cP" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"cQ" = (/obj/structure/table/rack/shelf,/obj/item/weapon/gun/projectile/revolver/nagant,/obj/item/weapon/gun/projectile/revolver/nagant,/obj/item/weapon/silencer,/obj/item/weapon/silencer,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"cR" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/gygax/dark/adv,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
"cS" = (/obj/structure/cult/forge,/turf/simulated/floor/wood,/area/vr/powered/cult)
"cT" = (/obj/structure/salvageable/computer_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"cU" = (/obj/structure/salvageable/server,/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
+"cV" = (/obj/structure/table/glass,/obj/item/weapon/storage/backpack/dufflebag/med,/obj/item/device/flashlight/pen,/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"cW" = (/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"cX" = (/obj/structure/bed/chair/wood,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered)
+"cY" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"cZ" = (/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
+"da" = (/mob/living/simple_mob/animal/giant_spider/lurker,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"db" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6; pixel_y = 0},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"dc" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/gorefloor2,/area/vr/outdoors/powered/cult)
+"dd" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/vr/powered/art)
"de" = (/turf/simulated/wall/skipjack,/area/vr/powered/space/sciship)
"df" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"dg" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"dh" = (/obj/effect/zone_divider,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"di" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
+"dj" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"dk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/whiteship)
"dl" = (/obj/structure/bed/chair/office/dark,/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"dm" = (/obj/structure/table/rack/shelf/steel,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
+"dn" = (/obj/machinery/door/window/eastright{dir = 4},/turf/simulated/floor/tiled,/area/vr/powered/constore)
"do" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
-"dp" = (/obj/machinery/vending/loadout,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"dp" = (/obj/machinery/vending/loadout{prices = list(/obj/item/clothing/gloves/evening=0,/obj/item/clothing/gloves/fingerless=0,/obj/item/clothing/gloves/black=0,/obj/item/clothing/gloves/blue=0,/obj/item/clothing/gloves/brown=0,/obj/item/clothing/gloves/color=0,/obj/item/clothing/gloves/green=0,/obj/item/clothing/gloves/grey=0,/obj/item/clothing/gloves/sterile/latex=0,/obj/item/clothing/gloves/light_brown=0,/obj/item/clothing/gloves/sterile/nitrile=0,/obj/item/clothing/gloves/orange=0,/obj/item/clothing/gloves/purple=0,/obj/item/clothing/gloves/red=0,/obj/item/clothing/gloves/fluff/siren=0,/obj/item/clothing/gloves/white=0,/obj/item/clothing/gloves/duty=0,/obj/item/clothing/shoes/athletic=0,/obj/item/clothing/shoes/boots/fluff/siren=0,/obj/item/clothing/shoes/slippers=0,/obj/item/clothing/shoes/boots/cowboy/classic=0,/obj/item/clothing/shoes/boots/cowboy=0,/obj/item/clothing/shoes/boots/duty=0,/obj/item/clothing/shoes/flats/white/color=0,/obj/item/clothing/shoes/flipflop=0,/obj/item/clothing/shoes/heels=0,/obj/item/clothing/shoes/hitops/black=0,/obj/item/clothing/shoes/hitops/blue=0,/obj/item/clothing/shoes/hitops/green=0,/obj/item/clothing/shoes/hitops/orange=0,/obj/item/clothing/shoes/hitops/purple=0,/obj/item/clothing/shoes/hitops/red=0,/obj/item/clothing/shoes/flats/white/color=0,/obj/item/clothing/shoes/hitops/yellow=0,/obj/item/clothing/shoes/boots/jackboots=0,/obj/item/clothing/shoes/boots/jungle=0,/obj/item/clothing/shoes/black/cuffs=0,/obj/item/clothing/shoes/black/cuffs/blue=0,/obj/item/clothing/shoes/black/cuffs/red=0,/obj/item/clothing/shoes/sandal=0,/obj/item/clothing/shoes/black=0,/obj/item/clothing/shoes/blue=0,/obj/item/clothing/shoes/brown=0,/obj/item/clothing/shoes/laceup=0,/obj/item/clothing/shoes/green=0,/obj/item/clothing/shoes/laceup/brown=0,/obj/item/clothing/shoes/orange=0,/obj/item/clothing/shoes/purple=0,/obj/item/clothing/shoes/red=0,/obj/item/clothing/shoes/white=0,/obj/item/clothing/shoes/yellow=0,/obj/item/clothing/shoes/skater=0,/obj/item/clothing/shoes/boots/cowboy/snakeskin=0,/obj/item/clothing/shoes/boots/jackboots/toeless=0,/obj/item/clothing/shoes/boots/workboots/toeless=0,/obj/item/clothing/shoes/boots/winter=0,/obj/item/clothing/shoes/boots/workboots=0,/obj/item/clothing/shoes/footwraps=0,/obj/item/clothing/shoes/sneakerspurple=0,/obj/item/clothing/shoes/sneakersblue=0,/obj/item/clothing/shoes/sneakersred=0)},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"dq" = (/turf/simulated/floor/gorefloor2,/area/vr/outdoors/powered/cult)
"dr" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"ds" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/iandouble,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
@@ -134,37 +181,57 @@
"dy" = (/obj/machinery/light/floortube,/obj/machinery/recharger/wallcharger{pixel_y = 24},/turf/simulated/floor/cult,/area/vr/powered/cult)
"dz" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"dA" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
+"dB" = (/obj/structure/table/alien/blue,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/welding,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"dC" = (/turf/simulated/wall/rdshull,/area/vr/powered)
+"dD" = (/obj/machinery/light/bigfloorlamp{light_range = 10},/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
"dE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"dF" = (/turf/simulated/floor/wood/broken,/area/vr/powered)
"dG" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"dH" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/table/bench/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"dI" = (/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
"dJ" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"dK" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"dL" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"dM" = (/mob/living/simple_mob/vore/aggressive/rat,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
+"dN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
+"dO" = (/turf/simulated/floor/concrete{outdoors = 1},/area/vr/powered/rocks)
"dP" = (/obj/machinery/vending/magivend,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"dQ" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"dR" = (/obj/machinery/vending/wardrobe/bardrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"dS" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northright{req_one_access = list(150)},/obj/item/weapon/material/knife/tacknife/combatknife/fluff/katarina,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"dT" = (/obj/structure/table/alien/blue,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/retractor/alien,/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
+"dU" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
+"dV" = (/obj/machinery/floor_light{anchored = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/vr/powered/bar)
"dW" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"dX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"dY" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"dZ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"ea" = (/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/powered/rocks)
"eb" = (/obj/structure/closet/crate/large,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"ec" = (/obj/structure/easel,/obj/item/canvas/nineteen_nineteen{pixel_y = 10},/turf/simulated/floor/wood,/area/vr/powered/art)
"ed" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small/emergency{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"ee" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"ef" = (/turf/simulated/mineral/alt{temperature = 293.15},/area/vr/powered/rocks)
"eg" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
+"eh" = (/turf/simulated/wall/r_concrete,/area/vr/powered/rocks)
+"ei" = (/turf/simulated/wall/concrete,/area/vr/powered/dungeon)
"ej" = (/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/effect/decal/remains,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"ek" = (/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"el" = (/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"em" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building1)
+"en" = (/obj/structure/bed/chair/backed_red{dir = 1},/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/vr/powered/art)
"eo" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/purcarpet,/area/vr/powered/cult)
+"ep" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/dungeon)
"eq" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "estrella_pump"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "estrella"; pixel_y = 26; tag_airpump = "estrella_pump"; tag_chamber_sensor = "estrella_sensor"; tag_exterior_door = "estrella_outer"; tag_interior_door = "estrella_inner"},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"er" = (/obj/machinery/door/airlock/glass_centcom{id_tag = "kalipsobolt"; name = "Bridge"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
+"es" = (/obj/machinery/bodyscanner,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/dungeon)
"et" = (/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"eu" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/wood,/area/vr/powered/art)
+"ev" = (/obj/structure/flora/bush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"ew" = (/obj/effect/zone_divider,/turf/unsimulated/wall/seperator,/area/space)
"ex" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"ey" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered)
-"ez" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"ez" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"eA" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/storage/firstaid/adv{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/adv,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"eB" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"eC" = (/obj/structure/sign/warning/vacuum,/turf/simulated/wall/skipjack,/area/vr/powered/space/sciship)
@@ -176,7 +243,11 @@
"eI" = (/obj/structure/grille/cult,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"eJ" = (/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/wood,/area/vr/powered)
"eK" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"eL" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"eM" = (/obj/effect/decal/remains,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"eN" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"eO" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"eP" = (/obj/machinery/light{dir = 1; layer = 3},/obj/machinery/gear_painter,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"eQ" = (/obj/structure/table/rack/shelf/steel,/obj/item/trash/rkibble{pixel_x = 8},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
"eR" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/weapon/module/power_control,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/id_auth,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/vr/powered/material)
"eS" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
@@ -184,9 +255,12 @@
"eU" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"eV" = (/turf/simulated/floor/water/beach{dir = 9; temperature = 311; outdoors = 0},/area/vr/powered/rocks)
"eW" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"eX" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = list(777)},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"eY" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"eZ" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered)
+"fa" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"fb" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
+"fc" = (/obj/structure/noticeboard{dir = 1; pixel_y = -27},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"fd" = (/turf/simulated/wall/r_wall,/area/vr/powered/conspawn)
"fe" = (/obj/machinery/vending/wardrobe/secdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"ff" = (/obj/mecha/combat/fighter/gunpod{dir = 8},/turf/space,/area/space)
@@ -196,12 +270,18 @@
"fj" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/conspawn)
"fk" = (/obj/structure/prop/rock/water,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"fl" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"fm" = (/obj/structure/prop/machine/alien_tank/starts_broken,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"fn" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/vr/powered/bar)
"fo" = (/obj/machinery/mech_recharger,/obj/mecha/combat/phazon/old,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
+"fp" = (/obj/structure/flora/tree/bigtree,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"fq" = (/obj/structure/railing{dir = 8},/obj/structure/table/bench/steel,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"fr" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"fs" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered/space/whiteship)
"ft" = (/obj/item/weapon/material/twohanded/baseballbat/gold,/obj/item/stack/material/gold,/obj/item/clothing/gloves/ring/material/gold,/obj/item/clothing/accessory/bracelet/material/gold,/obj/item/weapon/ore/diamond,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"fu" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/shoes/sandal,/obj/machinery/light/small,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"fv" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/turf/simulated/shuttle/plating,/area/vr/powered/dungeon)
"fw" = (/obj/structure/table/standard,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 9},/turf/simulated/floor/wood,/area/vr/powered)
+"fx" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"fy" = (/obj/effect/floor_decal/techfloor/corner,/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"fz" = (/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/turf/simulated/floor,/area/vr/powered)
"fA" = (/obj/item/weapon/rcd/advanced/loaded{pixel_x = -5; pixel_y = 9},/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/structure/table/steel_reinforced,/turf/simulated/floor/plating,/area/vr/powered/material)
@@ -209,6 +289,7 @@
"fC" = (/obj/effect/floor_decal/spline/fancy{icon_state = "spline_fancy_full"},/obj/structure/bed/chair/comfy/purp,/turf/simulated/floor/bronze,/area/vr/powered/cult)
"fD" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,/obj/item/mecha_parts/mecha_equipment/weapon/phoron_bore,/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser/rigged,/turf/simulated/floor/airless,/area/space)
"fE" = (/obj/structure/flora/rocks2,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"fF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/confetti,/obj/effect/decal/remains/human,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"fG" = (/obj/machinery/atmospherics/unary/engine{dir = 4},/turf/space,/area/space)
"fH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/airless,/area/vr/powered)
"fI" = (/obj/structure/cliff/automatic{dir = 6},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
@@ -218,6 +299,7 @@
"fM" = (/obj/structure/flora/bboulder1,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"fN" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/vr/powered)
"fO" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"fP" = (/obj/structure/salvageable/data_os{name = "broken money printer"},/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/cash/huge,/obj/item/weapon/storage/bag/cash,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"fQ" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"fR" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/clothing/mask/muzzle/ballgag,/obj/item/clothing/suit/iasexy,/obj/item/clothing/under/sexybunny_white/sexybunny_black,/obj/item/clothing/under/dress/maid/sexy,/obj/item/clothing/head/collectable/rabbitears,/turf/simulated/floor/wood/broken,/area/vr/powered/space/whiteship)
"fS" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/outdoors/powered)
@@ -229,16 +311,28 @@
"fY" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"fZ" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"ga" = (/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"gb" = (/obj/machinery/light/small,/obj/structure/table/woodentable,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
+"gc" = (/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/vr/powered/art)
+"gd" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/vr/powered/vet)
"ge" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"gf" = (/obj/structure/bed/chair/sofa/left/black,/turf/simulated/floor/wood,/area/vr/powered/shop)
"gg" = (/obj/item/clothing/head/cone,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
+"gh" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"gi" = (/turf/simulated/wall/phoron,/area/vr/outdoors/powered/cult)
"gj" = (/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_x = -24; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"gk" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"gl" = (/obj/machinery/fusion_fuel_compressor,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"gm" = (/obj/machinery/light{layer = 3},/obj/structure/table/rack/shelf,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"gn" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
+"go" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
+"gp" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/shop)
+"gq" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/obj/item/weapon/bone/skull,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"gr" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"gs" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/obj/item/weapon/gun/energy/mouseray/medical{pixel_y = -7},/obj/machinery/recharger/wallcharger{pixel_x = -24},/obj/item/device/denecrotizer/medical,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"gt" = (/obj/machinery/light{dir = 4},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin,/obj/machinery/recharger/wallcharger{pixel_x = 34},/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/jumper_kit/loaded,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"gu" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
+"gv" = (/obj/structure/railing/grey,/obj/structure/railing/grey{pixel_y = 0; dir = 4},/obj/structure/prop/statue/pillar,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
+"gw" = (/obj/structure/table/glass,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"gx" = (/turf/simulated/floor/plating,/area/vr/powered)
"gy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/whiteship)
"gz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
@@ -247,44 +341,65 @@
"gC" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/automatic/pdw,/obj/item/weapon/gun/projectile/automatic/pdw,/obj/item/weapon/gun/projectile/automatic/pdw,/obj/item/weapon/gun/projectile/automatic/pdw,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"gD" = (/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/darkred,/area/vr/powered/space/sciship)
"gE" = (/obj/machinery/vending/wardrobe/atmosdrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"gF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/confetti,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"gG" = (/obj/structure/bed/chair/wood{dir = 8; pixel_y = 0},/obj/structure/fireplace{dir = 2; pixel_x = 10},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"gH" = (/obj/effect/simple_portal/linked{portal_id = 71; name = "Fast Travel to VR Armory"},/turf/simulated/shuttle/floor/black,/area/vr/outdoors/powered)
"gI" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/blue,/area/vr/powered/cult)
"gJ" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"gK" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"gL" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"gM" = (/obj/screen/alert/highpressure,/turf/simulated/shuttle/wall,/area/vr/powered/space/whiteship)
"gN" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"gO" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/wood,/area/vr/powered/shop)
"gP" = (/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"gQ" = (/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/table/rack/shelf/steel,/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"gR" = (/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/item/weapon/material/fishing_rod/built,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
"gS" = (/obj/machinery/atmospherics/valve{dir = 8},/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"gT" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"gU" = (/mob/living/simple_mob/animal/passive/crab,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"gV" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 2},/obj/structure/table/standard,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/melee/baton/cattleprod,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"gW" = (/obj/structure/bed/chair/sofa/brown{pixel_y = 0; dir = 1},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"gX" = (/turf/simulated/floor/gorefloor,/area/vr/powered/rocks)
"gY" = (/obj/structure/closet,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
+"gZ" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"ha" = (/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/decal/remains,/obj/item/clothing/head/fishing,/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
"hb" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered)
"hc" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
"hd" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"he" = (/obj/structure/cult/pylon,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"hf" = (/turf/simulated/floor/tiled/neutral,/area/vr/powered)
-"hg" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"hg" = (/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"hh" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/food/snacks/devilledegg,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"hi" = (/obj/item/tape/police,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/rocks)
"hj" = (/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/turf/simulated/floor/redgrid,/area/vr/powered)
"hk" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered)
"hl" = (/obj/machinery/bodyscanner,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"hm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"hn" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"ho" = (/obj/structure/prop/machine/alien_tank/starts_broken,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"hp" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"hq" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
"hr" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/poi{dir = 4},/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"hs" = (/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1; temperature = 293.15},/area/vr/outdoors/powered)
"ht" = (/obj/machinery/light/floortube,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"hu" = (/obj/structure/table/hardwoodtable,/turf/simulated/floor/wood,/area/vr/powered/shop)
+"hv" = (/obj/machinery/door/airlock/alien{req_one_access = null},/obj/structure/fans/tiny,/turf/simulated/shuttle/floor/black,/area/vr/powered/dungeon)
+"hw" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/plating,/area/vr/powered/cafe)
+"hx" = (/obj/structure/showcase/sign,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"hy" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"hz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"hA" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"hB" = (/turf/space,/area/space)
+"hC" = (/obj/effect/floor_decal/corner/paleblue{dir = 2},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"hD" = (/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"hE" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"hF" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"hG" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/toxin,/obj/item/device/laser_pointer,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"hH" = (/obj/item/weapon/storage/pouch/holding,/turf/simulated/floor/cult,/area/vr/powered/cult)
"hI" = (/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"hJ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"hK" = (/obj/structure/bed/double/padded,/obj/structure/curtain/bed,/obj/item/weapon/bedsheet/hosdouble,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_y = 32},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"hL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"hM" = (/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered)
"hN" = (/obj/structure/flora/rocks2,/mob/living/simple_mob/animal/passive/bird/black_bird,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"hO" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
@@ -292,34 +407,48 @@
"hQ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 1; frequency = 1331; id_tag = "kalipso_shuttle"; pixel_y = -26},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"hR" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/toy/AI{desc = "May look like a toy, but to your surprise it seems to be a miniature AI core. There is constant static and a constant buzzing sound that makes your ear rings. . ."; name = "M@13fic3n7"; pixel_y = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/turf/simulated/floor/redgrid/animated,/area/vr/powered)
"hS" = (/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered/space/whiteship)
+"hT" = (/obj/structure/table/marble,/obj/structure/sink/countertop{dir = 2; pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered/bar)
"hU" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"hV" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"hW" = (/obj/structure/closet,/obj/item/clothing/suit/storage/apron/white,/obj/item/clothing/suit/storage/apron/white,/obj/machinery/light{dir = 8},/turf/simulated/floor/plating,/area/vr/powered/cafe)
+"hX" = (/obj/machinery/light/poi{dir = 1},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"hY" = (/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/structure/cult/pylon{pixel_y = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
"hZ" = (/obj/machinery/door/window/survival_pod,/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"ia" = (/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"ib" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/vr/powered/bar)
"ic" = (/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"id" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"ie" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/shuttle/plating,/area/vr/powered)
"if" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/airless,/area/vr/powered)
+"ig" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
"ih" = (/mob/living/simple_mob/animal/passive/cat/bones{desc = "A very odd behaved cat, their scratched name tag reads 'Felix'. They look very malnourished."; name = "Felix"},/turf/simulated/floor/wood,/area/vr/powered)
+"ii" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled,/area/vr/powered/art)
"ij" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"ik" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Scrubber to Waste"},/turf/simulated/floor/airless,/area/vr/powered)
"il" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = null},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
"im" = (/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"in" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"io" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/purple{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"ip" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"iq" = (/obj/structure/flora/tree/jungle,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"ir" = (/obj/machinery/light/bigfloorlamp{light_range = 10},/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"is" = (/obj/mecha/combat/fighter/baron{dir = 8},/turf/space,/area/space)
"it" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"iu" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"iv" = (/obj/structure/sign/warning/vacuum,/turf/unsimulated/wall,/area/vr/powered/cult)
+"iw" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"ix" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"iy" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"iz" = (/obj/structure/cliff/automatic{dir = 10},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"iA" = (/obj/machinery/door/airlock/angled_tgmc/wide/command,/turf/simulated/shuttle/plating,/area/vr/powered)
+"iB" = (/obj/structure/table/gamblingtable,/obj/random/cigarettes,/turf/simulated/floor/wood,/area/vr/powered/bar)
"iC" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
+"iD" = (/obj/random/trash,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"iE" = (/obj/vehicle/boat/dragon/sifwood{dir = 8},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered)
+"iF" = (/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"iG" = (/obj/machinery/recharger/wallcharger{pixel_y = 24},/obj/machinery/vending/deathmatch/red,/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
"iH" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"iI" = (/mob/living/simple_mob/vore/aggressive/rat,/obj/item/weapon/bone/arm,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"iJ" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"iK" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"iL" = (/obj/machinery/recharge_station,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
@@ -327,9 +456,11 @@
"iN" = (/mob/living/simple_mob/construct/juggernaut/behemoth{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"iO" = (/mob/living/simple_mob/vore/horse/big{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"iP" = (/obj/structure/table/marble,/obj/machinery/light{dir = 1},/obj/machinery/microwave,/turf/simulated/floor/tiled/white,/area/vr/powered)
+"iQ" = (/obj/effect/floor_decal/rust,/obj/item/weapon/bone/leg{pixel_y = 0; pixel_x = -6},/obj/item/weapon/bone/leg{pixel_x = 4},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"iR" = (/obj/structure/table/standard,/obj/item/weapon/gun/projectile/automatic/serdy/memegun,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"iS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/meter,/turf/simulated/floor/airless,/area/vr/powered)
"iT" = (/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"iU" = (/obj/machinery/door/airlock/glass_medical{req_one_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"iV" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"iW" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/cans/beercan,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"iX" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/roastbeef,/turf/simulated/floor/cult,/area/vr/powered/cult)
@@ -337,8 +468,10 @@
"iZ" = (/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"ja" = (/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"jb" = (/turf/simulated/floor/outdoors/sidewalk{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"jc" = (/obj/structure/table/glass,/obj/machinery/light/small,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"jd" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
-"jf" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"je" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/confetti,/obj/item/weapon/grenade/confetti/party_ball,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"jf" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"jg" = (/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/powered/rocks)
"jh" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light,/turf/simulated/floor/cult,/area/vr/powered/cult)
"ji" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "estrella_back_hatch"; locked = 1; req_one_access = null},/obj/machinery/button/remote/airlock{desiredstate = 1; id = "estrella_back_hatch"; name = "Rear Hatch Control"; pixel_y = 27; req_access = null; specialfunctions = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/obj/structure/fans/tiny,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
@@ -346,41 +479,59 @@
"jk" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
"jl" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"jm" = (/obj/structure/bonfire/permanent,/obj/item/weapon/reagent_containers/food/snacks/cuttlefish,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"jn" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/closet/crate/medical/blood,/obj/item/weapon/reagent_containers/blood/prelabeled/BPlus,/obj/item/weapon/reagent_containers/blood/prelabeled/AMinus,/obj/item/weapon/reagent_containers/blood/prelabeled/BMinus,/obj/item/weapon/reagent_containers/blood/prelabeled/APlus,/obj/item/weapon/reagent_containers/blood/prelabeled/OPlus,/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus,/obj/structure/medical_stand,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"jo" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/crunch,/turf/simulated/floor/cult,/area/vr/powered/cult)
"jp" = (/obj/structure/ship_munition/disperser_charge/mining,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"jq" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
"jr" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"js" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic{pixel_x = 6; pixel_y = 0},/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
"jt" = (/mob/living/simple_mob/animal/passive/fish/trout,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
-"ju" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"ju" = (/turf/simulated/wall/titanium,/turf/simulated/wall/titanium,/area/vr/powered/dungeon)
"jv" = (/mob/living/simple_mob/construct/artificer{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"jw" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"jx" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1; temperature = 293.15},/area/vr/outdoors/powered)
"jy" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"jz" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/shoes/boots/marine,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"jA" = (/mob/living/simple_mob/animal/giant_spider/electric,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"jB" = (/obj/structure/flora/ausbushes/fernybush,/obj/structure/flora/rocks1,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"jC" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/green,/turf/simulated/floor/cult,/area/vr/powered/cult)
"jD" = (/obj/item/weapon/fossil/skull/horned,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"jE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"jF" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
+"jG" = (/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/bar)
"jH" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/implanter/compliance{pixel_y = 12},/obj/item/weapon/implanter/compliance,/obj/item/weapon/implanter/compliance{pixel_y = 4},/obj/item/weapon/implanter/compliance{pixel_y = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"jI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"jJ" = (/obj/structure/flora/pottedplant/largebush,/turf/simulated/floor/wood,/area/vr/powered/shop)
"jK" = (/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/white,/area/vr/powered/cult)
"jL" = (/mob/living/simple_mob/construct/harvester{ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"jM" = (/obj/effect/floor_decal/corner/red/diagonal,/obj/structure/toilet,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"jN" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"jO" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"jP" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"jQ" = (/turf/unsimulated/wall,/area/vr/powered/rocks)
"jR" = (/obj/structure/toilet{dir = 8; pixel_x = 9},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/tiled/freezer,/area/vr/powered/space/whiteship)
"jS" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = null},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/vr/powered/cult)
"jT" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
+"jU" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"jV" = (/obj/fiftyspawner/wood,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"jW" = (/obj/item/weapon/coin/gold,/obj/item/clothing/mask/bandana/gold,/obj/fiftyspawner/gold,/obj/item/weapon/coin/diamond,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"jX" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rainbowdouble,/obj/machinery/partyalarm{pixel_y = -18},/turf/simulated/floor/wood/sif,/area/vr/powered/space/mechfactory)
"jY" = (/obj/structure/table/steel,/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/obj/fiftyspawner/wood,/obj/fiftyspawner/steel,/turf/simulated/floor,/area/vr/powered)
"jZ" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
+"ka" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"kb" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"kc" = (/turf/simulated/floor/plating,/area/vr/powered/space/whiteship)
+"kd" = (/obj/structure/railing{dir = 4},/obj/structure/table/bench/steel,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"ke" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/outdoors/powered)
"kf" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"kg" = (/turf/simulated/wall/cult,/area/vr/outdoors/powered/cult)
"kh" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/sword/katana,/obj/item/weapon/material/sword/katana,/obj/item/weapon/material/sword,/obj/item/weapon/material/sword,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"ki" = (/obj/effect/landmark/virtual_reality{name = "City"},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
+"kj" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/art)
+"kk" = (/obj/machinery/power/port_gen/pacman/super,/obj/item/stack/material/uranium{amount = 20},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"kl" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/marauder/mauler,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
+"km" = (/mob/living/simple_mob/animal/giant_spider/tunneler,/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
+"kn" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"ko" = (/obj/structure/cryofeed{dir = 1},/turf/simulated/wall/rdshull,/area/vr/powered)
"kp" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/spline/fancy,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/yellow,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"kq" = (/obj/machinery/chemical_dispenser/ert/specialops,/obj/structure/table/marble{color = "grey"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
@@ -388,12 +539,15 @@
"ks" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"kt" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"ku" = (/turf/simulated/floor/cult,/area/vr/outdoors/powered/cult)
+"kv" = (/obj/effect/floor_decal/rust,/mob/living/simple_mob/animal/giant_spider/lurker,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"kw" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"kx" = (/obj/machinery/door/window/brigdoor/eastright{req_access = null; dir = 4},/obj/machinery/door/window/brigdoor/eastright{req_access = null; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"ky" = (/obj/structure/salvageable/console_os{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/whiteship)
"kz" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"kA" = (/obj/structure/table/darkglass,/obj/item/weapon/scepter,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"kB" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
"kC" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/deluxe/full,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"kD" = (/obj/structure/curtain/open/privacy,/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"kE" = (/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"kF" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"kG" = (/turf/simulated/floor/wood/alt/panel/broken{temperature = 311},/area/vr/powered/rocks)
@@ -401,13 +555,16 @@
"kI" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"kJ" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"kK" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"kL" = (/obj/machinery/computer/operating{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"kM" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/devilledegg,/turf/simulated/floor/cult,/area/vr/powered/cult)
"kN" = (/obj/structure/cryofeed{dir = 2},/obj/machinery/light/small/emergency,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered)
+"kO" = (/obj/structure/table/alien/blue,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/item/device/defib_kit/compact/combat/loaded,/obj/item/device/defib_kit/compact/combat/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"kP" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoron,/obj/fiftyspawner/osmium,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
"kQ" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered/cult)
"kR" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/bodyscanner,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"kS" = (/turf/unsimulated/wall,/area/vr/powered/material)
"kT" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"kU" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"kV" = (/obj/structure/railing,/obj/effect/step_trigger/teleporter/bridge/north_to_south,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"kW" = (/obj/structure/flora/lily1,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"kY" = (/obj/machinery/vending/wardrobe/medidrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
@@ -421,6 +578,7 @@
"lg" = (/obj/effect/catwalk_plated/white,/turf/simulated/floor/wmarble,/area/vr/powered/cult)
"lh" = (/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"li" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/scorpion_cooked,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"lj" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/lighter{pixel_x = -6},/obj/random/cigarettes{pixel_y = 0; pixel_x = 5},/turf/simulated/floor/wood,/area/vr/powered/bar)
"lk" = (/obj/structure/flora/lily3,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"ll" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/generator/nuclear,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion/rigged,/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
"lm" = (/obj/structure/outcrop/gold,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
@@ -428,17 +586,26 @@
"lo" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/space,/area/vr/powered)
"lp" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"lq" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"lr" = (/obj/item/modular_computer/console/preset/civilian{pixel_y = 0; dir = 8},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"ls" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"lt" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"lu" = (/obj/structure/bed/alien,/obj/structure/curtain/open/privacy,/obj/item/weapon/bedsheet/medical,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"lv" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"lw" = (/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
+"lx" = (/obj/structure/table/alien/blue,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"ly" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"lz" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/surgicalapron,/obj/item/clothing/gloves/sterile,/obj/item/clothing/mask/surgical,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"lA" = (/turf/simulated/floor/holofloor/carpet,/area/vr/powered/cult)
"lB" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"lC" = (/obj/structure/prop/rock/small/alt,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
"lD" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"lE" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"lF" = (/obj/structure/table/reinforced,/obj/item/device/radio/phone,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"lG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"lH" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"lI" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/obj/effect/floor_decal/techfloor{dir = 6},/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"lJ" = (/obj/structure/prop/rock/small/water,/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
+"lK" = (/obj/structure/morgue,/turf/simulated/floor/plating,/area/vr/powered/vet)
"lL" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/piratedouble,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"lM" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/vr/powered)
"lN" = (/obj/structure/flora/pottedplant/bamboo{pixel_y = 12},/obj/structure/table/bench/wooden,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered)
@@ -447,8 +614,12 @@
"lQ" = (/obj/structure/table/glass,/obj/item/weapon/towel,/obj/item/weapon/towel{color = "#FFD700"; name = "gold towel"},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered)
"lR" = (/obj/structure/fence,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"lS" = (/obj/structure/table/standard,/obj/random/cigarettes,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"lT" = (/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"lU" = (/turf/simulated/floor/water/beach/corner{temperature = 311},/area/vr/outdoors/powered)
+"lV" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"lW" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"lX" = (/obj/effect/floor_decal/corner/red/diagonal,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"lY" = (/obj/structure/salvageable/data_os{name = "broken money printer"},/obj/random/cash/huge,/obj/random/cash/huge,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"lZ" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"ma" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"mb" = (/turf/simulated/floor/water/deep{temperature = 293.15},/area/vr/outdoors/powered)
@@ -456,24 +627,37 @@
"md" = (/obj/machinery/feeder,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"me" = (/obj/item/ammo_casing/a145,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"mf" = (/obj/machinery/vending/fishing,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"mg" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered/shop)
"mh" = (/obj/effect/decal/cleanable/blood/gibs,/obj/structure/table/marble,/obj/item/organ/internal/intestine/unathi,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/reagent_containers/food/snacks/bearmeat,/obj/item/weapon/reagent_containers/food/snacks/bearmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat,/turf/simulated/floor,/area/vr/powered)
"mi" = (/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
+"mj" = (/obj/structure/bed/chair/sofa/right/brown{pixel_y = 0; dir = 1},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"mk" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib2_flesh"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"ml" = (/obj/effect/blocker,/turf/simulated/floor/airless,/area/space)
"mm" = (/obj/structure/table/bench/marble,/obj/structure/flora/pottedplant/bamboo{pixel_y = 7},/obj/structure/window/reinforced/polarized{id = "h-master"},/turf/simulated/floor/wood,/area/vr/powered)
+"mn" = (/mob/living/simple_mob/animal/giant_spider/electric,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"mo" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/vr/powered)
+"mp" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION: 4th WALL BREAKS"},/turf/unsimulated/wall,/area/vr/outdoors/powered)
"mq" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"mr" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/vr/powered)
+"ms" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/stairs{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"mt" = (/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
+"mu" = (/obj/random/junk,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"mv" = (/turf/simulated/wall/wood,/area/vr/powered)
"mw" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
+"mx" = (/obj/structure/prop/machine/alien_tank,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"my" = (/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"mz" = (/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"mA" = (/obj/structure/table/survival_pod,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
+"mB" = (/obj/effect/floor_decal/rust,/obj/item/weapon/bone/arm{pixel_x = -9},/obj/item/instrument/trombone/spectral,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"mC" = (/obj/machinery/vending/medical{req_access = null; req_log_access = null; dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"mD" = (/obj/machinery/media/jukebox/casinojukebox,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"mE" = (/obj/effect/overlay/palmtree_r,/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"mF" = (/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor.dmi'; icon_state = "dispenser"; name = "Drug-Dispenser"; req_access = list(777); pixel_y = -4},/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/soporific,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/soporific,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/soporific,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/cyanide,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/cyanide,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/cyanide,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/healing_nanites,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/healing_nanites,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/healing_nanites,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/pain,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/pain,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/pain,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/stimm,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/stimm,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/stimm,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/psilocybin,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/psilocybin,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/psilocybin,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/serotrotium,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/serotrotium,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/serotrotium,/obj/item/device/reagent_scanner/adv,/obj/item/device/reagent_scanner/adv,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/obj/structure/table/alien/blue,/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"mG" = (/obj/structure/table/glass,/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/vr/powered)
"mH" = (/obj/structure/cliff/automatic{dir = 5},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
+"mI" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"mJ" = (/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
+"mK" = (/obj/effect/decal/remains/human,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"mL" = (/turf/simulated/wall/solidrock,/area/vr/powered/rocks)
"mM" = (/obj/structure/bed/chair/wood/wings{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"mN" = (/obj/machinery/recharger/wallcharger{pixel_y = 24},/turf/simulated/floor/cult,/area/vr/powered/cult)
@@ -481,42 +665,66 @@
"mP" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"mQ" = (/obj/machinery/door/airlock{id_tag = "VR4"; name = "VR Beachhouse 4"},/turf/simulated/floor/wood,/area/vr/powered)
"mR" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
+"mS" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/shop)
"mT" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"mU" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"mV" = (/obj/structure/table/rack/shelf,/obj/item/weapon/reagent_containers/chem_disp_cartridge/coffee,/obj/item/weapon/reagent_containers/chem_disp_cartridge/coffee,/turf/simulated/floor/plating,/area/vr/powered/cafe)
+"mW" = (/turf/simulated/floor/plating,/area/vr/powered/cafe)
"mX" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/neutral,/area/vr/powered)
"mY" = (/obj/machinery/suit_cycler/refit_only,/turf/simulated/floor/cult,/area/vr/powered/cult)
"mZ" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/jcloset,/obj/item/weapon/mop,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"na" = (/turf/simulated/floor/tiled/techmaint,/area/vr/powered/dungeon)
"nb" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/redgrid,/area/vr/powered)
"nc" = (/obj/structure/salvageable/server,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"nd" = (/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 2; pixel_y = 8},/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"ne" = (/obj/structure/fence/corner{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"nf" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"ng" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/effect/decal/remains/robot,/obj/item/toy/plushie/borgplushie/medihound,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"nh" = (/obj/structure/prop/machine/tgmc_console1/starts_on,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"ni" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
+"nj" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"nk" = (/obj/structure/bed/chair/bay/comfy/red{dir = 4},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"nl" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/obj/structure/cult/pylon{pixel_y = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"nm" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/grey,/turf/simulated/floor/cult,/area/vr/powered/cult)
"nn" = (/obj/machinery/media/jukebox,/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
+"no" = (/obj/structure/loot_pile/surface/alien/engineering,/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"np" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 1},/turf/space,/area/space)
+"nq" = (/obj/machinery/computer/operating{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"nr" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/weapon/storage/belt/utility/full/multitool{pixel_y = 6},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"ns" = (/obj/machinery/button/remote/blast_door{id = "vrgunshop"; name = "Shutters Button"; pixel_x = -26},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"nt" = (/turf/simulated/wall/wood,/area/vr/outdoors/powered)
"nu" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
+"nv" = (/obj/structure/flora/tree/bigtree,/turf/simulated/floor/outdoors/grass/heavy{temperature = 293.15},/area/vr/outdoors/powered)
+"nw" = (/turf/simulated/wall/thull,/area/vr/powered/dungeon)
+"nx" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/bed/chair/sofa/right/black,/turf/simulated/floor/wood,/area/vr/powered/shop)
+"ny" = (/obj/machinery/vending/loadout/accessory{prices = list(/obj/item/clothing/accessory=0,/obj/item/clothing/accessory/armband/med/color=0,/obj/item/clothing/accessory/asymmetric=0,/obj/item/clothing/accessory/asymmetric/purple=0,/obj/item/clothing/accessory/asymmetric/green=0,/obj/item/clothing/accessory/bracelet=0,/obj/item/clothing/accessory/bracelet/material=0,/obj/item/clothing/accessory/bracelet/friendship=0,/obj/item/clothing/accessory/chaps=0,/obj/item/clothing/accessory/chaps/black=0,/obj/item/weapon/storage/briefcase/clutch=0,/obj/item/clothing/accessory/collar=0,/obj/item/clothing/accessory/collar/bell=0,/obj/item/clothing/accessory/collar/spike=0,/obj/item/clothing/accessory/collar/pink=0,/obj/item/clothing/accessory/collar/holo=0,/obj/item/clothing/accessory/collar/shock=0,/obj/item/weapon/storage/belt/fannypack=0,/obj/item/weapon/storage/belt/fannypack/white=0,/obj/item/clothing/accessory/fullcape=0,/obj/item/clothing/accessory/halfcape=0,/obj/item/clothing/accessory/hawaiian=0,/obj/item/clothing/accessory/hawaiian/blue=0,/obj/item/clothing/accessory/hawaiian/pink=0,/obj/item/clothing/accessory/hawaiian/red=0,/obj/item/clothing/accessory/hawaiian/yellow=0,/obj/item/clothing/accessory/tropical=0,/obj/item/clothing/accessory/tropical/green=0,/obj/item/clothing/accessory/tropical/pink=0,/obj/item/clothing/accessory/tropical/blue=0,/obj/item/clothing/accessory/locket=0,/obj/item/weapon/storage/backpack/purse=0,/obj/item/clothing/accessory/sash=0,/obj/item/clothing/accessory/scarf=5,/obj/item/clothing/accessory/scarf/red=0,/obj/item/clothing/accessory/scarf/darkblue=0,/obj/item/clothing/accessory/scarf/purple=0,/obj/item/clothing/accessory/scarf/yellow=100,/obj/item/clothing/accessory/scarf/orange=0,/obj/item/clothing/accessory/scarf/lightblue=0,/obj/item/clothing/accessory/scarf/white=0,/obj/item/clothing/accessory/scarf/black=0,/obj/item/clothing/accessory/scarf/zebra=0,/obj/item/clothing/accessory/scarf/christmas=0,/obj/item/clothing/accessory/scarf/stripedred=0,/obj/item/clothing/accessory/scarf/stripedgreen=0,/obj/item/clothing/accessory/scarf/stripedblue=0,/obj/item/clothing/accessory/jacket=0,/obj/item/clothing/accessory/jacket/checkered=0,/obj/item/clothing/accessory/jacket/burgundy=0,/obj/item/clothing/accessory/jacket/navy=0,/obj/item/clothing/accessory/jacket/charcoal=0,/obj/item/clothing/accessory/vest=0,/obj/item/clothing/accessory/sweater=0,/obj/item/clothing/accessory/sweater/pink=0,/obj/item/clothing/accessory/sweater/mint=0,/obj/item/clothing/accessory/sweater/blue=0,/obj/item/clothing/accessory/sweater/heart=0,/obj/item/clothing/accessory/sweater/nt=5,/obj/item/clothing/accessory/sweater/keyhole=0,/obj/item/clothing/accessory/sweater/winterneck=0,/obj/item/clothing/accessory/sweater/uglyxmas=5,/obj/item/clothing/accessory/sweater/flowersweater=0,/obj/item/clothing/accessory/sweater/redneck=0,/obj/item/clothing/accessory/tie=0,/obj/item/clothing/accessory/tie/horrible=0,/obj/item/clothing/accessory/tie/white=0,/obj/item/clothing/accessory/tie/navy=0,/obj/item/clothing/accessory/tie/yellow=0,/obj/item/clothing/accessory/tie/darkgreen=0,/obj/item/clothing/accessory/tie/black=0,/obj/item/clothing/accessory/tie/red_long=0,/obj/item/clothing/accessory/tie/red_clip=0,/obj/item/clothing/accessory/tie/blue_long=0,/obj/item/clothing/accessory/tie/blue_clip=0,/obj/item/clothing/accessory/tie/red=0,/obj/item/clothing/accessory/wcoat=0,/obj/item/clothing/accessory/wcoat/red=0,/obj/item/clothing/accessory/wcoat/grey=0,/obj/item/clothing/accessory/wcoat/brown=0,/obj/item/clothing/accessory/wcoat/gentleman=0,/obj/item/clothing/accessory/wcoat/swvest=0,/obj/item/clothing/accessory/wcoat/swvest/blue=0,/obj/item/clothing/accessory/wcoat/swvest/red=0,/obj/item/weapon/storage/wallet=0,/obj/item/weapon/storage/wallet/poly=0,/obj/item/weapon/storage/wallet/womens=0,/obj/item/weapon/lipstick=0,/obj/item/weapon/lipstick/purple=0,/obj/item/weapon/lipstick/jade=0,/obj/item/weapon/lipstick/black=0,/obj/item/clothing/ears/earmuffs=0,/obj/item/clothing/ears/earmuffs/headphones=0,/obj/item/clothing/ears/earring/stud=0,/obj/item/clothing/ears/earring/dangle=0,/obj/item/clothing/gloves/ring/mariner=0,/obj/item/clothing/gloves/ring/engagement=0,/obj/item/clothing/gloves/ring/seal/signet=0,/obj/item/clothing/gloves/ring/seal/mason=0,/obj/item/clothing/gloves/ring/material/plastic=0,/obj/item/clothing/gloves/ring/material/steel=0,/obj/item/clothing/gloves/ring/material/gold=100,/obj/item/clothing/glasses/eyepatch=0,/obj/item/clothing/glasses/gglasses=0,/obj/item/clothing/glasses/regular/hipster=0,/obj/item/clothing/glasses/rimless=0,/obj/item/clothing/glasses/thin=0,/obj/item/clothing/glasses/monocle=0,/obj/item/clothing/glasses/goggles=0,/obj/item/clothing/glasses/fluff/spiffygogs=0,/obj/item/clothing/glasses/fakesunglasses=0,/obj/item/clothing/glasses/fakesunglasses/aviator=0,/obj/item/clothing/mask/bandana/blue=0,/obj/item/clothing/mask/bandana/gold=0,/obj/item/clothing/mask/bandana/green=0,/obj/item/clothing/mask/bandana/red=0,/obj/item/clothing/mask/surgical=0,/obj/item/clothing/accessory/pride/bi=0,/obj/item/clothing/accessory/pride/trans=0,/obj/item/clothing/accessory/pride/ace=0,/obj/item/clothing/accessory/pride/enby=0,/obj/item/clothing/accessory/pride/pan=0,/obj/item/clothing/accessory/pride/lesbian=0,/obj/item/clothing/accessory/pride/intersex=0,/obj/item/clothing/accessory/pride/vore=0)},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"nz" = (/obj/structure/cliff/automatic{dir = 10},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"nA" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
"nB" = (/obj/structure/bed/chair/wood/wings{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/cult)
"nC" = (/turf/space,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"nD" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
+"nE" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/fancy/cigar/havana,/obj/item/weapon/storage/fancy/cigar/havana,/turf/simulated/floor/tiled,/area/vr/powered/constore)
"nF" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered/cult)
"nG" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"nH" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/walllocker/emerglocker/north,/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"nI" = (/obj/machinery/vending/wardrobe/chefdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"nJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/vr/powered/shop)
"nK" = (/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"nL" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"nM" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"nN" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/shoes/sandal,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"nO" = (/obj/structure/fence/corner,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"nP" = (/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"nQ" = (/obj/mecha/working/hoverpod/shuttlecraft{dir = 8},/turf/space,/area/space)
"nR" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/airless,/area/vr/powered)
+"nS" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/cargo,/turf/simulated/floor/wood,/area/vr/powered/shop)
"nT" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gibdown1_flesh"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"nU" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bed/chair/bay/comfy/black{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"nV" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
+"nW" = (/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"nX" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small/emergency{dir = 8},/obj/structure/sign/atmos/air{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
-"nZ" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"nY" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"nZ" = (/obj/machinery/light{layer = 3},/obj/machinery/gear_painter,/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"oa" = (/obj/structure/cliff/automatic/corner{dir = 10},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"ob" = (/obj/structure/table/wooden_reinforced,/obj/structure/flora/pottedplant/smallcactus{pixel_y = 13},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"oc" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
@@ -527,15 +735,25 @@
"oh" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoron,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
"oi" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor,/area/vr/powered)
"oj" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
-"ol" = (/obj/effect/simple_portal/linked{portal_id = 69; name = "Fast Travel to Beachhouses"},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"ok" = (/turf/simulated/shuttle/floor/black,/area/vr/powered/dungeon)
+"ol" = (/turf/simulated/floor/plating,/area/vr/outdoors/powered)
"om" = (/obj/machinery/vending/cola,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered)
+"on" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"oo" = (/obj/machinery/vending/tool{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"op" = (/obj/structure/table/standard,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"oq" = (/obj/structure/window/reinforced,/turf/simulated/floor/wood,/area/vr/powered)
+"or" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/beartrap/hunting{anchored = 1; deployed = 1; icon_state = "beartrap1"},/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"os" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/sciship)
+"ot" = (/obj/effect/floor_decal/corner/red/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"ou" = (/obj/structure/salvageable/console_broken_os{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"ov" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/space,/area/vr/powered)
"ow" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"ox" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"oy" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
+"oz" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"oA" = (/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/wood,/area/vr/powered/shop)
"oB" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/revolver,/obj/item/weapon/gun/projectile/revolver,/obj/item/weapon/gun/projectile/revolver,/obj/item/weapon/gun/projectile/revolver,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"oC" = (/turf/simulated/wall/r_wall,/area/vr/powered/nuke)
"oD" = (/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered)
"oE" = (/turf/simulated/floor/water/beach{dir = 10; temperature = 311; outdoors = 0},/area/vr/outdoors/powered)
"oF" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
@@ -544,30 +762,50 @@
"oI" = (/turf/unsimulated/wall/seperator,/area/vr/outdoors/powered)
"oJ" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
"oK" = (/obj/item/weapon/telecube/precursor,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"oL" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"oM" = (/obj/structure/table/bench/marble,/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered)
+"oN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/dip/salsa,/obj/item/weapon/reagent_containers/food/snacks/chipplate{pixel_y = -11},/turf/simulated/floor/wood,/area/vr/powered/bar)
"oO" = (/obj/structure/salvageable/bliss,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"oP" = (/turf/simulated/floor/water/pool{temperature = 293.15; outdoors = 1},/area/vr/outdoors/powered)
"oQ" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/neutral,/area/vr/powered)
"oR" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/floodlight,/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"oS" = (/obj/machinery/vending/phoronresearch,/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"oT" = (/obj/structure/medical_stand/anesthetic,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"oU" = (/obj/structure/table/marble,/obj/item/weapon/storage/firstaid/bonemed{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/bonemed,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"oV" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"oW" = (/obj/effect/decal/remains/xeno,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"oX" = (/obj/structure/table/rack/shelf/steel,/obj/random/action_figure{pixel_x = 4; pixel_y = -5},/obj/random/action_figure{pixel_y = 5; pixel_x = -5},/obj/random/action_figure{pixel_y = -5; pixel_x = -5},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"oY" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"oZ" = (/obj/machinery/light{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/random/cigarettes,/obj/random/cigarettes,/obj/random/cigarettes,/turf/simulated/floor/tiled,/area/vr/powered/constore)
+"pa" = (/obj/structure/cliff/automatic{dir = 5},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
+"pb" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
+"pc" = (/obj/effect/floor_decal/rust,/obj/item/weapon/bone/ribs{pixel_y = -8; pixel_x = -5},/obj/item/weapon/bone{pixel_y = 7},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"pd" = (/mob/living/simple_mob/construct/harvester{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"pe" = (/obj/machinery/door/window/brigdoor/westright{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
+"pf" = (/obj/item/trash/bowl,/obj/item/weapon/corncob,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"pg" = (/turf/simulated/floor/lava,/area/vr/powered/cult)
"ph" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"pi" = (/obj/structure/table/steel,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"pj" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
-"pl" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/melee/energy/sword,/obj/item/weapon/melee/energy/sword,/obj/fiftyspawner/durasteel,/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
+"pk" = (/obj/structure/table/glass,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"pl" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/melee/energy/sword,/obj/item/weapon/melee/energy/sword,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/durasteel,/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
"pm" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"pn" = (/obj/machinery/sleeper/survival_pod,/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"po" = (/obj/structure/cliff/automatic/corner{dir = 6},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
+"pp" = (/turf/simulated/wall/wood,/area/vr/powered/cafe)
+"pq" = (/obj/structure/salvageable/data_os{name = "broken money printer"},/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/cash/huge,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"pr" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"ps" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"pt" = (/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/wood,/area/vr/powered/cult)
"pu" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/structure/table/rack/shelf/steel,/obj/item/clothing/head/cowboy,/obj/item/clothing/glasses/fakesunglasses/aviator,/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
+"pv" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/vr/powered/bar)
"pw" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"px" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/marauder/seraph,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
+"py" = (/obj/machinery/light/small{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"pz" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"pA" = (/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"pB" = (/obj/structure/table/alien/blue,/obj/machinery/chemical_dispenser/ert/specialops{pixel_y = 7},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
+"pC" = (/obj/machinery/computer/operating{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"pD" = (/obj/machinery/vending/wardrobe/detdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"pE" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/dip/salsa{pixel_y = 9},/obj/item/weapon/reagent_containers/food/snacks/sharkmeatdip{pixel_y = 0; pixel_x = -3},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"pF" = (/obj/structure/railing{dir = 8},/obj/structure/flora/rocks2,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
@@ -580,14 +818,17 @@
"pM" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/structure/sign/department/eng{pixel_x = 32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"pN" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
"pO" = (/obj/machinery/door/airlock/glass_centcom{name = "Port Wing Engine"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
-"pP" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"pP" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"pQ" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"pR" = (/obj/effect/map_effect/portal/master/side_b{dir = 4; portal_id = "vrdungeon".},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
+"pS" = (/obj/structure/closet/secure_closet/bar,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/turf/simulated/floor/wood,/area/vr/powered/bar)
"pT" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"pU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/airless,/area/vr/powered)
"pV" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"pW" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"pX" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"pY" = (/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/wood,/area/vr/powered/cult)
+"pZ" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"qa" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
"qb" = (/obj/machinery/door/airlock/angled_tgmc/wide/security,/turf/simulated/shuttle/plating,/area/vr/powered)
"qc" = (/obj/structure/salvageable/implant_container_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
@@ -600,7 +841,9 @@
"qj" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/reinforced,/area/vr/powered/bluebase)
"qk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/weapon/cell/hyper{pixel_y = -2; pixel_x = -4},/obj/item/weapon/cell/hyper{pixel_y = 2},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"ql" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/shull,/area/vr/powered)
-"qo" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"qm" = (/obj/machinery/door/airlock/medical{req_one_access = null},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"qn" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"qo" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/storage/box/monkeycubes/farwacubes,/obj/item/weapon/storage/box/monkeycubes/sobakacubes,/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/obj/item/weapon/storage/box/monkeycubes/neaeracubes,/obj/item/weapon/storage/box/monkeycubes/sarucubes,/obj/item/weapon/storage/box/monkeycubes,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"qp" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult,/area/vr/powered/cult)
"qq" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"qr" = (/obj/machinery/door/window/northright{name = "Server Room"; req_access = null},/obj/machinery/door/window/southleft{name = "Server Room"; req_access = null},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
@@ -609,8 +852,10 @@
"qu" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/roburgerbig,/turf/simulated/floor/cult,/area/vr/powered/cult)
"qv" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/fossil/skull/horned{anchored = 1; pixel_x = -1},/obj/effect/catwalk_plated/white,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/lava,/area/vr/powered/cult)
"qw" = (/obj/machinery/vending/deluxe_boozeomat,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"qx" = (/obj/structure/table/alien/blue,/obj/item/weapon/surgical/circular_saw/alien,/obj/item/weapon/surgical/scalpel/alien{pixel_y = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"qy" = (/obj/structure/table/steel_reinforced,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"qz" = (/turf/simulated/floor/plating,/area/vr/powered/material)
+"qA" = (/obj/structure/bed/chair/comfy/brown{dir = 1; pixel_y = 0},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"qB" = (/mob/living/simple_mob/construct/harvester{dir = 1; ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"qC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/shuttle/wall,/area/vr/powered/space/whiteship)
"qD" = (/mob/living/simple_mob/animal/passive/fish/rockfish,/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/powered/rocks)
@@ -620,13 +865,15 @@
"qH" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered)
"qI" = (/obj/structure/table/marble,/obj/item/weapon/storage/firstaid/bonemed{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/bonemed,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"qJ" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic,/turf/simulated/shuttle/plating,/area/vr/powered)
+"qK" = (/obj/random/trash,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/powered/rocks)
"qL" = (/obj/item/weapon/material/fishing_rod/modern/cheap,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered)
+"qM" = (/mob/living/simple_mob/vore/alienanimals/catslug/custom/spaceslug/deathslug,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"qN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/vr/powered)
"qO" = (/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"qP" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 1},/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/blue,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"qQ" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/glasses/square{pixel_y = -2},/obj/item/weapon/storage/box/glass_extras/sticks{pixel_y = 4},/obj/item/weapon/storage/box/glass_extras/straws{pixel_y = 7},/obj/item/weapon/packageWrap,/obj/structure/curtain/open/bed,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/turf/simulated/floor/tiled/white,/area/vr/powered)
"qR" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
-"qS" = (/obj/machinery/pointdefense,/turf/simulated/floor/airless,/area/space)
+"qS" = (/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/space)
"qT" = (/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"qU" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"qV" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
@@ -635,7 +882,9 @@
"qY" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"qZ" = (/obj/machinery/vending/snack,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered)
"ra" = (/obj/structure/shuttle/engine/router,/turf/simulated/floor/airless,/area/vr/powered/space/sciship)
+"rb" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"rc" = (/obj/machinery/light,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"rd" = (/obj/effect/floor_decal/arrow{dir = 4},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"re" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"rf" = (/mob/living/simple_mob/animal/passive/bird/goldcrest,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"rg" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
@@ -653,19 +902,27 @@
"rs" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/outdoors/powered)
"rt" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{dir = 4},/turf/simulated/shuttle/plating,/area/vr/powered)
"ru" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
+"rv" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/wood,/area/vr/powered/bar)
"rw" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/table/reinforced,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"rx" = (/obj/structure/closet{name = "physicist's wardrobe"},/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/glasses/regular,/obj/item/clothing/glasses/regular,/obj/item/clothing/glasses/regular,/obj/item/clothing/glasses/regular,/obj/item/clothing/accessory/tie,/obj/item/clothing/accessory/tie,/obj/item/clothing/accessory/tie,/obj/item/clothing/accessory/tie,/obj/item/clothing/under/sl_suit,/obj/item/clothing/under/sl_suit,/obj/item/clothing/under/sl_suit,/obj/item/clothing/under/sl_suit,/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
"ry" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"rz" = (/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/cult)
+"rA" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
"rB" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"rC" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"rD" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"rE" = (/obj/effect/blocker,/turf/unsimulated/wall/seperator,/area/space)
"rF" = (/obj/machinery/gibber/autogibber{emagged = 1},/turf/simulated/floor,/area/vr/powered)
+"rG" = (/obj/structure/table/rack/shelf/steel,/obj/random/grenade/box,/turf/simulated/floor/wood,/area/vr/powered/shop)
"rH" = (/obj/item/weapon/storage/backpack/dufflebag/emt,/turf/space,/area/space)
"rI" = (/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"rJ" = (/obj/random/trash,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"rK" = (/obj/structure/bed/double/padded,/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/item/weapon/bedsheet/rainbowdouble,/turf/simulated/floor/carpet/turcarpet,/area/vr/powered/space/whiteship)
"rL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"rM" = (/obj/structure/bonfire/permanent,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/food/snacks/sliceable/sharkchunk,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"rN" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sharkmeatcooked,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"rO" = (/obj/structure/salvageable/console_os{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"rP" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/fancy/cigar/cohiba,/obj/item/weapon/storage/fancy/cigar/cohiba,/turf/simulated/floor/tiled,/area/vr/powered/constore)
"rQ" = (/obj/item/weapon/flame/candle/everburn,/obj/structure/table/bench/wooden,/turf/simulated/floor/plating,/area/vr/powered/material)
"rR" = (/obj/machinery/door/blast/regular,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"rS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
@@ -673,34 +930,52 @@
"rU" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"rV" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib3"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"rW" = (/obj/item/weapon/material/twohanded/baseballbat/gold,/obj/item/clothing/gloves/ring/material/gold,/obj/fiftyspawner/gold,/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"rX" = (/turf/simulated/wall/r_wall,/area/vr/powered/shop)
"rY" = (/mob/living/simple_mob/construct/juggernaut/behemoth{dir = 1; ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"rZ" = (/obj/structure/prop/rock/waterflat,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"sa" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"sb" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/chainsaw,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor,/area/vr/powered)
"sc" = (/obj/item/weapon/material/fishing_net,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
+"sd" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/poi,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"se" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "estrella"; name = "interior access button"; pixel_y = 26},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"sf" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"sg" = (/obj/structure/lattice,/turf/space,/area/space)
+"sh" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/obj/effect/decal/remains,/obj/effect/decal/cleanable/blood,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"si" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"sj" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
"sk" = (/obj/structure/salvageable/data_os{name = "broken money printer"},/obj/item/weapon/spacecash/ewallet{worth = 69000},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"sl" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "estrella_sensor"; pixel_y = -28},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"sm" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"sn" = (/obj/structure/fence/end{dir = 8},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"so" = (/obj/structure/bed/psych,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"sp" = (/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"sq" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"sr" = (/obj/structure/table/steel,/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
"ss" = (/obj/item/weapon/reagent_containers/food/snacks/sliceable/monkfishremains,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
+"st" = (/obj/structure/table/rack/shelf,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"su" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/bar)
+"sv" = (/obj/structure/simple_door/wood,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"sw" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"sx" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"sy" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
+"sz" = (/obj/machinery/light{layer = 3},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"sA" = (/obj/structure/prop/rock/small/water,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
+"sB" = (/turf/simulated/shuttle/floor/black,/area/vr/outdoors/powered)
"sC" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/turf/simulated/floor/wood,/area/vr/powered)
+"sD" = (/obj/item/tape/police,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"sE" = (/obj/random/cash/huge,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
+"sF" = (/obj/structure/table/alien/blue,/obj/item/weapon/surgical/scalpel/ripper,/obj/item/weapon/surgical/scalpel/manager,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"sG" = (/obj/machinery/vending/wardrobe/hydrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"sH" = (/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/blood/gibs/xeno,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"sI" = (/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"sJ" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"sK" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/airless,/area/vr/powered)
"sL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"sM" = (/obj/structure/table/steel,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"sN" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"sO" = (/turf/simulated/floor/wood,/area/vr/powered/cult)
"sP" = (/obj/structure/bed/chair/wood/wings{dir = 4},/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"sQ" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"sR" = (/obj/effect/rune,/obj/effect/step_trigger/message{message = "Place your key here to seal your faith. . ."; once = 0},/turf/simulated/floor/bronze,/area/vr/powered/cult)
"sS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"sT" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/lasercannon,/obj/item/weapon/gun/energy/lasercannon,/obj/item/weapon/gun/energy/lasercannon,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
@@ -709,14 +984,23 @@
"sW" = (/obj/machinery/vending/medical{req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"sX" = (/obj/structure/cult/pylon{pixel_y = 4},/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"sY" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"sZ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"ta" = (/obj/structure/fans,/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"tb" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 4},/obj/item/device/flash,/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"tc" = (/obj/machinery/light/poi{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/dungeon)
+"td" = (/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
+"te" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"tf" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/lobstercooked,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"tg" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/dip/guac,/turf/simulated/floor/wood,/area/vr/powered/bar)
"th" = (/turf/simulated/floor/water/beach/corner{dir = 8; temperature = 311},/area/vr/outdoors/powered)
+"ti" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/under/pants/camo,/obj/item/clothing/under/pants/camo,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"tj" = (/obj/machinery/gear_dispenser/suit/ert{req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"tk" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"tl" = (/obj/structure/table/woodentable,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"tm" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/flora/pottedplant/fern{pixel_y = 12},/obj/structure/table/bench/wooden,/turf/simulated/floor/wood,/area/vr/powered)
"tn" = (/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"to" = (/mob/living/simple_mob/animal/passive/fish/salmon,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
+"tp" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/vr/powered/shop)
"tq" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"tr" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"ts" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/space,/area/space)
@@ -724,28 +1008,39 @@
"tu" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"tv" = (/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"tw" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered/cult)
+"tx" = (/obj/machinery/light/small{dir = 4},/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"ty" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"tz" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"tA" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/sword/katana,/obj/item/clothing/head/fedora,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"tB" = (/obj/screen/alert/highpressure,/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
-"tC" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/obj/item/weapon/storage/box/monkeycubes/sobakacubes,/obj/item/weapon/storage/box/monkeycubes/farwacubes,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"tC" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"tD" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"tE" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"tF" = (/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"tG" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/bacon_and_eggs,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"tH" = (/obj/random/junk,/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
"tI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/fireaxecabinet{pixel_x = 32},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"tJ" = (/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered)
"tK" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"tL" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"tM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"tN" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/grenade/confetti/party_ball,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"tO" = (/obj/structure/table/rack/shelf,/obj/item/weapon/gun/projectile/silenced,/obj/item/weapon/gun/projectile/silenced,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"tP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/vr/powered/space/whiteship)
"tQ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"tR" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/clean,/obj/random/maintenance/morestuff,/turf/simulated/floor/wood,/area/vr/powered/shop)
"tS" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"tT" = (/obj/structure/flora/bboulder2,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"tU" = (/obj/machinery/vending/robotics{emagged = 1; req_access = null},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"tV" = (/obj/item/stack/material/gold,/obj/item/clothing/ears/earring/stud/gold,/obj/item/weapon/coin/diamond,/obj/item/stack/material/diamond,/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"tW" = (/obj/structure/railing/grey,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
+"tX" = (/obj/machinery/power/emitter/antique,/obj/structure/cable/green,/obj/effect/decal/warning_stripes,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"tY" = (/obj/structure/holohoop{dir = 1},/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"tZ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table/reinforced,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"ua" = (/obj/structure/cult/pylon,/turf/simulated/floor/wood,/area/vr/powered/cult)
"ub" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"uc" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
+"ud" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"ue" = (/obj/machinery/gear_dispenser/suit/standard,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"uf" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/extinguisher{pixel_x = 8; pixel_y = 1},/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/medical/lite,/obj/random/medical/lite,/obj/structure/mopbucket{pixel_x = -8; pixel_y = -4},/obj/item/weapon/mop,/obj/item/device/multitool,/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/obj/random/unidentified_medicine,/obj/random/unidentified_medicine,/obj/random/unidentified_medicine,/turf/simulated/floor/tiled,/area/vr/powered)
"ug" = (/obj/structure/prop/machine/nt_pod,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
@@ -761,15 +1056,25 @@
"uq" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"ur" = (/obj/machinery/button/remote/airlock{id = "VR2"; name = "Bolt Control"; pixel_x = 30; specialfunctions = 4},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
"us" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"ut" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"uu" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/titanium,/area/vr/powered/dungeon)
"uv" = (/mob/living/simple_mob/construct/harvester{dir = 1; ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered/cult)
"uw" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
"ux" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
-"uB" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/green,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"uy" = (/obj/structure/railing/grey{pixel_y = 0; dir = 8},/obj/structure/prop/statue/pillar,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
+"uz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"uA" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"uB" = (/obj/machinery/power/terminal{dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"uC" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/dungeon)
"uD" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
+"uE" = (/obj/structure/simple_door/wood,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"uF" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"uG" = (/obj/structure/table/steel_reinforced,/obj/fiftyspawner/uranium,/turf/simulated/floor/airless,/area/vr/powered)
"uH" = (/turf/simulated/floor/gorefloor,/area/vr/powered/cult)
"uI" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"uJ" = (/obj/structure/salvageable/data_os{name = "broken money printer"},/obj/random/cash/huge,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"uK" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
+"uL" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"uM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/engineering,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/item/weapon/tank/phoron,/obj/item/weapon/tank/phoron,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/device/multitool,/obj/item/device/geiger,/obj/item/clothing/glasses/goggles,/obj/item/clothing/glasses/goggles,/obj/item/device/t_scanner,/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"uN" = (/obj/structure/coatrack,/obj/machinery/button/windowtint{id = "h-living"; pixel_x = -27},/turf/simulated/floor/wood,/area/vr/powered)
"uO" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
@@ -778,32 +1083,51 @@
"uR" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/floor/cult,/area/vr/powered/cult)
"uS" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"uT" = (/obj/item/frame/apc,/obj/machinery/light_switch{pixel_x = 11; pixel_y = 22},/obj/random/junk,/turf/simulated/floor,/area/vr/powered)
+"uU" = (/obj/structure/bed/chair/wood{dir = 4; pixel_y = 0},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"uV" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
+"uW" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
+"uX" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper{desc = ""; info = "So I heard of some fancy thing called 'blockchains' that allegadly can give you allot of money. I should look into it"; name = "note"},/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"uY" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/mob/living/simple_mob/animal/passive/dog/corgi/Lisa{name = "Shepiffany"},/obj/structure/dogbed,/obj/machinery/light/poi{dir = 8},/obj/machinery/button/remote/airlock{dir = 4; id = "kalipsobolt"; name = "Bridge Lock Down"; pixel_x = -28; specialfunctions = 4},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/space/sciship)
"uZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber/huge,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"va" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/sidewalk/side{icon_state = "sidewalk"; movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
"vb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"vc" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"vd" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/plating,/area/vr/powered/material)
"ve" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"vf" = (/obj/machinery/power/emitter/antique,/obj/structure/cable/green,/obj/effect/decal/warning_stripes,/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"vg" = (/obj/item/device/kit/paint/gygax/darkgygax,/obj/item/device/kit/paint/gygax/recitence,/obj/item/device/kit/paint/durand,/obj/item/device/kit/paint/durand/phazon,/obj/item/device/kit/paint/durand/seraph,/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
+"vh" = (/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"vi" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
"vj" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"vk" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"vl" = (/turf/simulated/floor/flock{color = "grey"},/area/vr/powered/cult)
"vm" = (/obj/structure/table/marble{color = "grey"},/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
+"vn" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"vo" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"vp" = (/obj/structure/table/alien/blue,/obj/item/weapon/surgical/bonegel,/obj/item/weapon/surgical/bone_clamp/alien,/obj/machinery/light/poi{dir = 1},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"vq" = (/turf/simulated/wall/phoron,/area/vr/powered/cult)
"vr" = (/obj/structure/table/marble,/obj/item/weapon/material/sharpeningkit,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/white,/area/vr/powered)
+"vs" = (/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"vt" = (/obj/structure/flora/tree/jungle,/turf/unsimulated/wall,/area/vr/outdoors/powered)
"vu" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/sol,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"vv" = (/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/powered)
"vw" = (/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered/cult)
"vx" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered/lava)
+"vy" = (/turf/simulated/floor/weird_things/dark,/area/vr/powered/rocks)
"vz" = (/obj/item/weapon/reagent_containers/glass/rag,/obj/item/clothing/gloves/ring/engagement,/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered)
"vA" = (/obj/structure/prop/fake_ai{name = "k@1iPs0"},/obj/structure/sign/department/commander{pixel_y = -32},/turf/simulated/floor/greengrid/nitrogen,/area/vr/powered/space/sciship)
+"vB" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"vC" = (/obj/structure/table/rack/shelf,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/small/packet/coffee{pixel_x = 9; pixel_y = 6},/obj/item/weapon/reagent_containers/food/condiment/small/packet/coffee{pixel_x = 9; pixel_y = -9},/obj/item/weapon/reagent_containers/food/condiment/small/packet/coffee{pixel_x = 9; pixel_y = -1},/turf/simulated/floor/plating,/area/vr/powered/cafe)
+"vD" = (/mob/living/simple_mob/vore/aggressive/rat,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"vE" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"vF" = (/obj/effect/decal/cleanable/blood,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"vG" = (/obj/machinery/light{dir = 8},/obj/structure/table/gamblingtable,/turf/simulated/floor/wood,/area/vr/powered/bar)
"vH" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/plating,/area/vr/powered/space/whiteship)
"vI" = (/obj/machinery/chemical_dispenser/ert/specialops,/obj/structure/table/marble{color = "grey"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"vJ" = (/turf/unsimulated/wall,/area/space)
+"vK" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/reagent_containers/food/drinks/coffee{pixel_y = 6; pixel_x = 5},/obj/item/weapon/reagent_containers/food/snacks/soydope,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"vL" = (/obj/structure/cliff/automatic{dir = 9},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
+"vM" = (/obj/item/weapon/beach_ball/holoball,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"vN" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/plating,/area/vr/powered/material)
"vO" = (/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"vP" = (/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
@@ -815,54 +1139,73 @@
"vV" = (/turf/simulated/shuttle/floor/white,/area/vr/powered/cult)
"vW" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "mfloor2"},/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "metroid_gib1"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"vX" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/mechfactory)
+"vY" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"vZ" = (/obj/structure/table,/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"wa" = (/obj/machinery/light/floortube/flicker{pixel_y = -2},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"wb" = (/obj/item/weapon/digestion_remains/ribcage,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"wc" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/purple{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"wd" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"we" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"wf" = (/mob/living/simple_mob/animal/passive/raccoon_ch,/turf/simulated/floor/tiled/white,/area/vr/powered)
"wg" = (/turf/simulated/wall/shull,/area/vr/powered)
"wh" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
+"wi" = (/obj/machinery/door/airlock{name = "Gun Store"},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"wj" = (/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"wk" = (/obj/structure/shuttle/engine/heater,/turf/simulated/wall/shull,/area/vr/powered)
"wl" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"wm" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/phazon,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
"wn" = (/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/modular/carbine,/obj/item/weapon/gun/energy/pummeler,/obj/item/weapon/gun/energy/taser,/obj/machinery/light,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
-"wo" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/gear_dispenser/suit/ert{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
-"wp" = (/obj/machinery/vending/loadout/clothing,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"wo" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/gear_dispenser/suit/ert{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"wp" = (/obj/machinery/vending/loadout/clothing{prices = list(/obj/item/clothing/under/bathrobe=0,/obj/item/clothing/under/dress/black_corset=0,/obj/item/clothing/under/blazer=0,/obj/item/clothing/under/blazer/skirt=0,/obj/item/clothing/under/cheongsam=0,/obj/item/clothing/under/cheongsam/red=0,/obj/item/clothing/under/cheongsam/blue=0,/obj/item/clothing/under/cheongsam/black=0,/obj/item/clothing/under/cheongsam/darkred=0,/obj/item/clothing/under/cheongsam/green=0,/obj/item/clothing/under/cheongsam/purple=0,/obj/item/clothing/under/cheongsam/darkblue=0,/obj/item/clothing/under/croptop=0,/obj/item/clothing/under/croptop/red=0,/obj/item/clothing/under/croptop/grey=0,/obj/item/clothing/under/cuttop=0,/obj/item/clothing/under/cuttop/red=0,/obj/item/clothing/under/suit_jacket/female/skirt=0,/obj/item/clothing/under/dress/dress_fire=0,/obj/item/clothing/under/dress/flamenco=0,/obj/item/clothing/under/dress/flower_dress=0,/obj/item/clothing/under/fluff/gnshorts=0,/obj/item/clothing/under/color=0,/obj/item/clothing/under/color/aqua=0,/obj/item/clothing/under/color/black=0,/obj/item/clothing/under/color/blackf=0,/obj/item/clothing/under/color/blackjumpskirt=0,/obj/item/clothing/under/color/blue=0,/obj/item/clothing/under/color/brown=0,/obj/item/clothing/under/color/darkblue=0,/obj/item/clothing/under/color/darkred=0,/obj/item/clothing/under/color/green=0,/obj/item/clothing/under/color/grey=0,/obj/item/clothing/under/color/lightblue=0,/obj/item/clothing/under/color/lightbrown=0,/obj/item/clothing/under/color/lightgreen=0,/obj/item/clothing/under/color/lightpurple=0,/obj/item/clothing/under/color/lightred=0,/obj/item/clothing/under/color/orange=0,/obj/item/clothing/under/color/pink=0,/obj/item/clothing/under/color/prison=0,/obj/item/clothing/under/color/ranger=0,/obj/item/clothing/under/color/red=0,/obj/item/clothing/under/color/white=0,/obj/item/clothing/under/color/yellow=0,/obj/item/clothing/under/color/yellowgreen=0,/obj/item/clothing/under/corp/aether=0,/obj/item/clothing/under/corp/focal=0,/obj/item/clothing/under/corp/hephaestus=0,/obj/item/clothing/under/corp/wardt=0,/obj/item/clothing/under/kilt=0,/obj/item/clothing/under/fluff/latexmaid=0,/obj/item/clothing/under/dress/lilacdress=0,/obj/item/clothing/under/dress/white2=0,/obj/item/clothing/under/dress/white4=0,/obj/item/clothing/under/dress/maid=0,/obj/item/clothing/under/dress/maid/sexy=0,/obj/item/clothing/under/dress/maid/janitor=0,/obj/item/clothing/under/moderncoat=0,/obj/item/clothing/under/permit=0,/obj/item/clothing/under/oldwoman=0,/obj/item/clothing/under/frontier=0,/obj/item/clothing/under/mbill=0,/obj/item/clothing/under/pants/baggy=0,/obj/item/clothing/under/pants/baggy/classicjeans=0,/obj/item/clothing/under/pants/baggy/mustangjeans=0,/obj/item/clothing/under/pants/baggy/blackjeans=0,/obj/item/clothing/under/pants/baggy/greyjeans=0,/obj/item/clothing/under/pants/baggy/youngfolksjeans=0,/obj/item/clothing/under/pants/baggy/white=0,/obj/item/clothing/under/pants/baggy/red=0,/obj/item/clothing/under/pants/baggy/black=0,/obj/item/clothing/under/pants/baggy/tan=0,/obj/item/clothing/under/pants/baggy/track=0,/obj/item/clothing/under/pants/baggy/khaki=0,/obj/item/clothing/under/pants/baggy/camo=0,/obj/item/clothing/under/pants/utility=0,/obj/item/clothing/under/pants/utility/orange=0,/obj/item/clothing/under/pants/utility/blue=0,/obj/item/clothing/under/pants/utility/white=0,/obj/item/clothing/under/pants/utility/red=0,/obj/item/clothing/under/pants/chaps=0,/obj/item/clothing/under/pants/chaps/black=0,/obj/item/clothing/under/pants/track=0,/obj/item/clothing/under/pants/track/red=0,/obj/item/clothing/under/pants/track/white=0,/obj/item/clothing/under/pants/track/green=0,/obj/item/clothing/under/pants/track/blue=0,/obj/item/clothing/under/pants/yogapants=0,/obj/item/clothing/under/ascetic=0,/obj/item/clothing/under/dress/white3=0,/obj/item/clothing/under/skirt/pleated=0,/obj/item/clothing/under/dress/darkred=0,/obj/item/clothing/under/dress/redeveninggown=0,/obj/item/clothing/under/dress/red_swept_dress=0,/obj/item/clothing/under/dress/sailordress=0,/obj/item/clothing/under/dress/sari=0,/obj/item/clothing/under/dress/sari/green=0,/obj/item/clothing/under/qipao=0,/obj/item/clothing/under/qipao/red=0,/obj/item/clothing/under/qipao/white=0,/obj/item/clothing/under/shorts/red=0,/obj/item/clothing/under/shorts/green=0,/obj/item/clothing/under/shorts/blue=0,/obj/item/clothing/under/shorts/black=0,/obj/item/clothing/under/shorts/grey=0,/obj/item/clothing/under/shorts/white=0,/obj/item/clothing/under/shorts/jeans=0,/obj/item/clothing/under/shorts/jeans=0,/obj/item/clothing/under/shorts/jeans/classic=0,/obj/item/clothing/under/shorts/jeans/mustang=0,/obj/item/clothing/under/shorts/jeans/youngfolks=0,/obj/item/clothing/under/shorts/jeans/black=0,/obj/item/clothing/under/shorts/jeans/grey=0,/obj/item/clothing/under/shorts/khaki=0,/obj/item/clothing/under/skirt/loincloth=0,/obj/item/clothing/under/skirt/khaki=0,/obj/item/clothing/under/skirt/blue=0,/obj/item/clothing/under/skirt/red=0,/obj/item/clothing/under/skirt/denim=0,/obj/item/clothing/under/skirt/pleated=0,/obj/item/clothing/under/skirt/outfit/plaid_blue=0,/obj/item/clothing/under/skirt/outfit/plaid_red=0,/obj/item/clothing/under/skirt/outfit/plaid_purple=0,/obj/item/clothing/under/overalls/sleek=0,/obj/item/clothing/under/sl_suit=0,/obj/item/clothing/under/gentlesuit=0,/obj/item/clothing/under/gentlesuit/skirt=0,/obj/item/clothing/under/suit_jacket=0,/obj/item/clothing/under/suit_jacket/really_black/skirt=0,/obj/item/clothing/under/suit_jacket/really_black=0,/obj/item/clothing/under/suit_jacket/female/skirt=0,/obj/item/clothing/under/suit_jacket/female=0,/obj/item/clothing/under/suit_jacket/red=0,/obj/item/clothing/under/suit_jacket/red/skirt=0,/obj/item/clothing/under/suit_jacket/charcoal=0,/obj/item/clothing/under/suit_jacket/charcoal/skirt=0,/obj/item/clothing/under/suit_jacket/navy=0,/obj/item/clothing/under/suit_jacket/navy/skirt=0,/obj/item/clothing/under/suit_jacket/burgundy=0,/obj/item/clothing/under/suit_jacket/burgundy/skirt=0,/obj/item/clothing/under/suit_jacket/checkered=0,/obj/item/clothing/under/suit_jacket/checkered/skirt=0,/obj/item/clothing/under/suit_jacket/tan=0,/obj/item/clothing/under/suit_jacket/tan/skirt=0,/obj/item/clothing/under/scratch=0,/obj/item/clothing/under/scratch/skirt=0,/obj/item/clothing/under/sundress=0,/obj/item/clothing/under/sundress_white=0,/obj/item/clothing/under/rank/psych/turtleneck/sweater=0,/obj/item/weapon/storage/box/fluff/swimsuit=0,/obj/item/weapon/storage/box/fluff/swimsuit/blue=0,/obj/item/weapon/storage/box/fluff/swimsuit/purple=0,/obj/item/weapon/storage/box/fluff/swimsuit/green=0,/obj/item/weapon/storage/box/fluff/swimsuit/red=0,/obj/item/weapon/storage/box/fluff/swimsuit/white=0,/obj/item/weapon/storage/box/fluff/swimsuit/earth=0,/obj/item/weapon/storage/box/fluff/swimsuit/engineering=0,/obj/item/weapon/storage/box/fluff/swimsuit/science=0,/obj/item/weapon/storage/box/fluff/swimsuit/security=0,/obj/item/weapon/storage/box/fluff/swimsuit/medical=0,/obj/item/weapon/storage/box/fluff/swimsuit/cowbikini=0,/obj/item/clothing/under/utility=0,/obj/item/clothing/under/utility/grey=0,/obj/item/clothing/under/utility/blue=0,/obj/item/clothing/under/fluff/v_nanovest=0,/obj/item/clothing/under/dress/westernbustle=0,/obj/item/clothing/under/wedding/bride_white=0,/obj/item/weapon/storage/backpack=0,/obj/item/weapon/storage/backpack/messenger=0,/obj/item/weapon/storage/backpack/satchel=0,/obj/item/clothing/under/tropical=0,/obj/item/clothing/under/tropical/green=0,/obj/item/clothing/under/tropical/pink=0,/obj/item/clothing/under/tropical/blue=0)},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"wq" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/blast/regular/open{id = "stargazer_blast"; name = "window blast shield"},/obj/item/weapon/material/shard/plastitaniumglass,/turf/simulated/shuttle/plating,/area/vr/powered/dungeon)
"wr" = (/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"ws" = (/mob/living/simple_mob/metroid,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"wt" = (/obj/structure/flora/pottedplant/fern,/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/vr/powered/art)
+"wu" = (/mob/living/simple_mob/otie/cotie/chubby,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"wv" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"ww" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"wx" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"wy" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"wz" = (/obj/structure/bed/chair/bay/chair/padded/blue{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"wA" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
+"wB" = (/obj/structure/table/hardwoodtable,/obj/random/drinkbottle,/turf/simulated/floor/wood,/area/vr/powered/shop)
"wC" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
"wD" = (/obj/structure/simple_door/wood,/obj/structure/fans/tiny,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"wE" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/vr/powered)
"wF" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/redgrid,/area/vr/powered)
+"wG" = (/obj/machinery/door/airlock/alien{req_one_access = null},/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"wH" = (/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/redgrid,/area/vr/powered)
+"wI" = (/obj/machinery/button/remote/blast_door{id = "vrsewers1"; pixel_x = -22; pixel_y = -7; dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"wJ" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/obj/fiftyspawner/durasteel,/turf/simulated/floor/plating,/area/vr/powered/material)
"wK" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
-"wL" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"wL" = (/obj/machinery/vending/loadout/costume{prices = list(/obj/item/clothing/suit/storage/hooded/costume/carp=0,/obj/item/clothing/suit/storage/hooded/costume/carp=0,/obj/item/clothing/suit/chickensuit=0,/obj/item/clothing/head/chicken=0,/obj/item/clothing/head/helmet/gladiator=0,/obj/item/clothing/under/gladiator=0,/obj/item/clothing/suit/storage/toggle/labcoat/mad=0,/obj/item/clothing/under/suit_jacket/green=0,/obj/item/clothing/glasses/gglasses=0,/obj/item/clothing/head/flatcap=0,/obj/item/clothing/shoes/boots/jackboots=0,/obj/item/clothing/under/schoolgirl=0,/obj/item/clothing/head/kitty=0,/obj/item/clothing/glasses/sunglasses/blindfold=0,/obj/item/clothing/head/beret=0,/obj/item/clothing/under/skirt=0,/obj/item/clothing/under/suit_jacket=0,/obj/item/clothing/head/that=0,/obj/item/clothing/accessory/wcoat=0,/obj/item/clothing/under/scratch=0,/obj/item/clothing/shoes/white=0,/obj/item/clothing/gloves/white=0,/obj/item/clothing/under/kilt=0,/obj/item/clothing/glasses/monocle=0,/obj/item/clothing/under/sl_suit=0,/obj/item/clothing/mask/fakemoustache=0,/obj/item/weapon/cane=0,/obj/item/clothing/head/bowler=0,/obj/item/clothing/head/plaguedoctorhat=0,/obj/item/clothing/suit/bio_suit/plaguedoctorsuit=0,/obj/item/clothing/mask/gas/plaguedoctor/fluff=0,/obj/item/clothing/under/owl=0,/obj/item/clothing/mask/gas/owl_mask=0,/obj/item/clothing/under/waiter=0,/obj/item/clothing/suit/storage/apron=0,/obj/item/clothing/under/pirate=0,/obj/item/clothing/head/pirate=0,/obj/item/clothing/suit/pirate=0,/obj/item/clothing/glasses/eyepatch=0,/obj/item/clothing/head/ushanka=0,/obj/item/clothing/under/soviet=0,/obj/item/clothing/suit/imperium_monk=0,/obj/item/clothing/suit/holidaypriest=0,/obj/item/clothing/head/witchwig=0,/obj/item/clothing/under/sundress=0,/obj/item/weapon/staff/broom=0,/obj/item/clothing/suit/wizrobe/fake=0,/obj/item/clothing/head/wizard/fake=0,/obj/item/weapon/staff=0,/obj/item/clothing/mask/gas/sexyclown=0,/obj/item/clothing/under/sexyclown=0,/obj/item/clothing/mask/gas/sexymime=0,/obj/item/clothing/under/sexymime=0,/obj/item/clothing/suit/storage/hooded/knight_costume=0,/obj/item/clothing/suit/storage/hooded/knight_costume/galahad=0,/obj/item/clothing/suit/storage/hooded/knight_costume/lancelot=0,/obj/item/clothing/suit/storage/hooded/knight_costume/robin=0,/obj/item/clothing/suit/armor/combat/crusader_costume=0,/obj/item/clothing/suit/armor/combat/crusader_costume/bedevere=0,/obj/item/clothing/head/helmet/combat/crusader_costume=0,/obj/item/clothing/head/helmet/combat/bedevere_costume=0,/obj/item/clothing/gloves/combat/knight_costume=0,/obj/item/clothing/gloves/combat/knight_costume/brown=0,/obj/item/clothing/shoes/knight_costume=0,/obj/item/clothing/shoes/knight_costume/black=0,/obj/item/clothing/suit/storage/hooded/foodcostume/hotdog=0,/obj/item/clothing/suit/storage/hooded/foodcostume/turnip=0)},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"wM" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/obj/item/weapon/storage/box/monkeycubes/stokcubes,/obj/item/weapon/storage/box/monkeycubes/sparracubes,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"wN" = (/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
"wO" = (/turf/simulated/floor/water/beach/corner{temperature = 293.15},/area/vr/outdoors/powered)
"wP" = (/obj/machinery/light{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase)
"wQ" = (/mob/living/simple_mob/humanoid/merc/melee/sword/space,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
+"wR" = (/turf/simulated/floor/wood,/area/vr/powered/shop)
"wS" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"wT" = (/obj/machinery/door/airlock/maintenance/common,/obj/item/tape/engineering,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
"wU" = (/obj/structure/railing,/obj/effect/decal/remains,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered/lava)
"wV" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/curtain/open/shower/engineering,/obj/machinery/shower{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled/freezer,/area/vr/powered)
"wW" = (/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/effect/decal/remains/deer,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"wX" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"wY" = (/mob/living/simple_mob/animal/passive/pillbug,/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered)
"wZ" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"xa" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"xb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/simple_door/wood,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"xc" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/mineral/sif,/area/vr/powered/rocks)
+"xd" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/door/airlock/glass_medical{req_one_access = null},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"xe" = (/obj/random/maintenance/engineering,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"xf" = (/obj/item/trash/bowl,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"xg" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
"xh" = (/turf/unsimulated/wall/seperator,/area/vr/powered/rocks)
"xi" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/plasteel,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
"xj" = (/obj/structure/sign/science{pixel_y = 32},/turf/space,/area/space)
-"xk" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"xk" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"xl" = (/obj/structure/table/bench/wooden,/obj/structure/flora/pottedplant/shoot{pixel_y = 9},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"xm" = (/obj/effect/floor_decal/stairs{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"xn" = (/obj/structure/cryofeed,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered)
"xo" = (/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
"xp" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
@@ -871,17 +1214,21 @@
"xs" = (/mob/living/simple_mob/animal/passive/fish/measelshark,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"xt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"xu" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/implanter/sizecontrol,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/marble,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/rutile,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/toy/character/wizard,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker/unidentified,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker/unidentified,/obj/item/weapon/fluff/squeezetoy,/obj/item/weapon/fluff/zekewatch,/obj/item/weapon/fluff/fidgetspinner/red,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"xv" = (/obj/structure/closet/secure_closet/medical1{req_access = null},/obj/item/weapon/storage/quickdraw/syringe_case,/obj/item/weapon/storage/quickdraw/syringe_case,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"xw" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/gun/projectile/shotgun/pump/slug,/obj/item/weapon/gun/projectile/shotgun/pump/slug,/obj/item/weapon/gun/projectile/shotgun/pump/slug,/obj/item/weapon/gun/projectile/shotgun/pump/slug,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"xx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered/space/whiteship)
-"xy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"xy" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"xz" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
-"xA" = (/obj/structure/flora/tree/jungle,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
-"xB" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"xA" = (/turf/simulated/wall/solidrock,/area/vr/powered/dungeon)
+"xB" = (/obj/machinery/power/smes/buildable/hybrid,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"xC" = (/obj/machinery/door/airlock/multi_tile/metal/mait{icon_state = "door_locked"; id_tag = "kalipso_hatch"; name = "Cargo Hold"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/obj/structure/fans/tiny,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
"xD" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/vr/powered/space/mechfactory)
"xE" = (/obj/item/weapon/material/knife/machete,/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/knife/machete,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase)
+"xF" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"xG" = (/obj/structure/table/alien/blue,/obj/item/weapon/surgical/hemostat/alien,/obj/item/weapon/surgical/cautery/alien{pixel_y = -6},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"xH" = (/obj/item/weapon/coin/gold,/obj/item/weapon/ore/diamond,/obj/item/stack/material/diamond,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"xI" = (/mob/living/simple_mob/animal/passive/lizard,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"xJ" = (/mob/living/simple_mob/animal/giant_spider/tunneler,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"xK" = (/obj/machinery/vending/snlvend,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"xL" = (/obj/machinery/door/window/brigdoor/eastleft{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
"xM" = (/obj/item/seeds/random,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/wooden_reinforced,/obj/item/weapon/pen,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/vr/powered)
@@ -889,8 +1236,11 @@
"xO" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/red{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"xP" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/monkeysdelight,/turf/simulated/floor/cult,/area/vr/powered/cult)
"xQ" = (/turf/simulated/shuttle/wall,/area/vr/powered/space/whiteship)
-"xS" = (/obj/effect/catwalk_plated/dark,/obj/effect/catwalk_plated/dark,/turf/space,/area/vr/powered)
+"xR" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/reagent_containers/pill/happy{pixel_y = 6; pixel_x = 7},/obj/item/weapon/reagent_containers/pill/diet{pixel_y = 2; pixel_x = 4},/obj/item/weapon/reagent_containers/food/condiment/soysauce,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"xS" = (/turf/simulated/wall/r_concrete,/area/vr/powered/dungeon)
"xT" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/space/sciship)
+"xU" = (/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"xV" = (/obj/effect/simple_portal/linked{portal_id = 69; name = "Fast Travel to Beachhouses"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"xW" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/obj/machinery/light{dir = 4},/turf/simulated/floor/reinforced,/area/vr/powered/bluebase)
"xX" = (/obj/effect/floor_decal/plaque{pixel_y = -32},/obj/effect/step_trigger/message{message = "Example text"; once = 0},/turf/simulated/floor/bronze,/area/vr/powered/cult)
"xY" = (/obj/structure/fuel_port{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
@@ -898,35 +1248,48 @@
"ya" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/vr/powered)
"yb" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/salvageable/console_broken_os,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"yc" = (/mob/living/simple_mob/animal/passive/raccoon_ch,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"yd" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"ye" = (/obj/machinery/light{dir = 1},/obj/machinery/chemical_dispenser/bar_soft/full,/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/bar)
"yf" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"yg" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
+"yh" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 5},/obj/random/cigarettes,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"yi" = (/obj/structure/table/glass,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"yj" = (/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/vr/powered/dungeon)
"yk" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"yl" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"ym" = (/obj/machinery/vending/wardrobe/lawdrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"yn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"yo" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/vr/powered)
"yp" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"yq" = (/turf/simulated/floor/carpet/bcarpet,/area/vr/powered/cult)
+"yr" = (/obj/structure/bed/alien,/obj/structure/curtain/open/privacy,/obj/item/weapon/bedsheet/medical,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"ys" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"yt" = (/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/white,/area/vr/powered/cult)
"yu" = (/mob/living/simple_mob/animal/passive/fish/koi,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"yv" = (/obj/item/weapon/phone,/obj/structure/table/bench/wooden,/obj/machinery/button/windowtint{id = "h-master"; pixel_y = -29},/turf/simulated/floor/wood,/area/vr/powered)
-"yw" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
+"yw" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/card/emag,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"yx" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"yy" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"yz" = (/turf/simulated/floor/water/beach{temperature = 311; outdoors = 0},/area/vr/outdoors/powered)
+"yA" = (/obj/machinery/light,/obj/machinery/vending/loadout/costume{prices = list(/obj/item/clothing/suit/storage/hooded/costume/carp=0,/obj/item/clothing/suit/storage/hooded/costume/carp=0,/obj/item/clothing/suit/chickensuit=0,/obj/item/clothing/head/chicken=0,/obj/item/clothing/head/helmet/gladiator=0,/obj/item/clothing/under/gladiator=0,/obj/item/clothing/suit/storage/toggle/labcoat/mad=0,/obj/item/clothing/under/suit_jacket/green=0,/obj/item/clothing/glasses/gglasses=0,/obj/item/clothing/head/flatcap=0,/obj/item/clothing/shoes/boots/jackboots=0,/obj/item/clothing/under/schoolgirl=0,/obj/item/clothing/head/kitty=0,/obj/item/clothing/glasses/sunglasses/blindfold=0,/obj/item/clothing/head/beret=0,/obj/item/clothing/under/skirt=0,/obj/item/clothing/under/suit_jacket=0,/obj/item/clothing/head/that=0,/obj/item/clothing/accessory/wcoat=0,/obj/item/clothing/under/scratch=0,/obj/item/clothing/shoes/white=0,/obj/item/clothing/gloves/white=0,/obj/item/clothing/under/kilt=0,/obj/item/clothing/glasses/monocle=0,/obj/item/clothing/under/sl_suit=0,/obj/item/clothing/mask/fakemoustache=0,/obj/item/weapon/cane=0,/obj/item/clothing/head/bowler=0,/obj/item/clothing/head/plaguedoctorhat=0,/obj/item/clothing/suit/bio_suit/plaguedoctorsuit=0,/obj/item/clothing/mask/gas/plaguedoctor/fluff=0,/obj/item/clothing/under/owl=0,/obj/item/clothing/mask/gas/owl_mask=0,/obj/item/clothing/under/waiter=0,/obj/item/clothing/suit/storage/apron=0,/obj/item/clothing/under/pirate=0,/obj/item/clothing/head/pirate=0,/obj/item/clothing/suit/pirate=0,/obj/item/clothing/glasses/eyepatch=0,/obj/item/clothing/head/ushanka=0,/obj/item/clothing/under/soviet=0,/obj/item/clothing/suit/imperium_monk=0,/obj/item/clothing/suit/holidaypriest=0,/obj/item/clothing/head/witchwig=0,/obj/item/clothing/under/sundress=0,/obj/item/weapon/staff/broom=0,/obj/item/clothing/suit/wizrobe/fake=0,/obj/item/clothing/head/wizard/fake=0,/obj/item/weapon/staff=0,/obj/item/clothing/mask/gas/sexyclown=0,/obj/item/clothing/under/sexyclown=0,/obj/item/clothing/mask/gas/sexymime=0,/obj/item/clothing/under/sexymime=0,/obj/item/clothing/suit/storage/hooded/knight_costume=0,/obj/item/clothing/suit/storage/hooded/knight_costume/galahad=0,/obj/item/clothing/suit/storage/hooded/knight_costume/lancelot=0,/obj/item/clothing/suit/storage/hooded/knight_costume/robin=0,/obj/item/clothing/suit/armor/combat/crusader_costume=0,/obj/item/clothing/suit/armor/combat/crusader_costume/bedevere=0,/obj/item/clothing/head/helmet/combat/crusader_costume=0,/obj/item/clothing/head/helmet/combat/bedevere_costume=0,/obj/item/clothing/gloves/combat/knight_costume=0,/obj/item/clothing/gloves/combat/knight_costume/brown=0,/obj/item/clothing/shoes/knight_costume=0,/obj/item/clothing/shoes/knight_costume/black=0,/obj/item/clothing/suit/storage/hooded/foodcostume/hotdog=0,/obj/item/clothing/suit/storage/hooded/foodcostume/turnip=0)},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"yB" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"yC" = (/turf/simulated/wall/r_wall,/area/vr/powered/redbase)
"yD" = (/obj/machinery/chem_master,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
-"yF" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"yE" = (/obj/structure/table/alien/blue,/obj/item/weapon/storage/belt/medical/alien,/obj/item/weapon/storage/belt/medical/alien{pixel_y = 6},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
+"yF" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"yG" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"yH" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/neutral,/area/vr/powered)
"yI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"yJ" = (/obj/structure/table/marble,/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/bar)
"yK" = (/mob/living/simple_mob/construct/wraith{ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered/cult)
"yL" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"yM" = (/obj/item/weapon/miscdisc,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"yN" = (/obj/machinery/floor_light{anchored = 1},/turf/simulated/floor/wood,/area/vr/powered/bar)
"yO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/pirate,/turf/simulated/floor/wood,/area/vr/powered)
"yP" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/sciship)
"yQ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"yR" = (/obj/structure/salvageable/server,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
-"yS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
+"yS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/obj/item/weapon/reagent_containers/food/snacks/sliceable/sharkchunk,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
"yT" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
"yU" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"yV" = (/obj/structure/table/steel_reinforced,/obj/item/device/mmi/inert/ai_remote,/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
@@ -935,47 +1298,67 @@
"yY" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"yZ" = (/obj/item/weapon/storage/box/wormcan/sickly,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered)
"za" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/corner{dir = 5},/obj/structure/sign/electricshock{pixel_y = 32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"zb" = (/obj/machinery/door/airlock/glass{name = "VR Main Spawn"},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"zc" = (/obj/machinery/power/shield_generator/charged,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"zd" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/food/snacks/sliceable/chocolatecake,/turf/simulated/floor/cult,/area/vr/powered/cult)
"ze" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"zf" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
+"zg" = (/obj/item/weapon/flamethrower/full,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"zh" = (/obj/structure/prop/machine/tgmc_console4/starts_on,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"zi" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"zj" = (/obj/structure/table/standard,/obj/item/weapon/surgical/FixOVein{pixel_y = 0; pixel_x = 5},/obj/item/weapon/surgical/bonegel{pixel_x = -5; pixel_y = 2},/obj/item/weapon/surgical/bonesetter{pixel_x = 2},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"zk" = (/obj/machinery/door/airlock/glass_medical{req_one_access = null},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"zl" = (/obj/machinery/smartfridge/secure/medbay{req_one_access = null},/turf/simulated/wall/titanium,/area/vr/powered/vet)
"zm" = (/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/machinery/light/poi,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"zn" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/bmarble,/area/vr/powered/cult)
"zo" = (/obj/item/weapon/gun/projectile/heavysniper,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"zp" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/armory)
"zq" = (/obj/structure/bed/chair/comfy/red{pixel_y = 0; dir = 4},/obj/structure/plushie/ian{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/material)
"zr" = (/obj/structure/table/steel_reinforced,/obj/fiftyspawner/phoronglass,/turf/simulated/floor/airless,/area/vr/powered)
+"zs" = (/obj/structure/simple_door/wood,/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
"zt" = (/obj/item/weapon/airlock_electronics,/obj/item/weapon/airlock_electronics,/obj/item/weapon/cell/high,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"zu" = (/obj/effect/map_effect/portal/line/side_a{dir = 8},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/rocks)
"zv" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/space,/area/space)
+"zw" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
+"zx" = (/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
"zy" = (/obj/structure/table/marble,/obj/structure/window/phoronreinforced,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/purple,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"zz" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"zA" = (/obj/mecha/combat/fighter/gunpod/recon{dir = 4},/turf/space,/area/space)
+"zB" = (/obj/structure/table/alien/blue,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"zC" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"zD" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"zE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"zF" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"zG" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/powered)
"zH" = (/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
-"zI" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"zI" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"zJ" = (/obj/structure/closet/cabinet,/obj/item/weapon/storage/wallet/random,/obj/item/weapon/towel/random,/obj/item/weapon/melee/umbrella/random,/obj/random/ammo,/obj/random/cigarettes,/obj/random/contraband,/obj/random/junk,/obj/random/maintenance/security,/turf/simulated/floor/wood,/area/vr/powered)
+"zK" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"zL" = (/obj/machinery/vending/donksoft{req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"zM" = (/obj/machinery/chem_master,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"zN" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/white,/area/vr/powered)
"zO" = (/obj/structure/salvageable/computer,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"zP" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"zQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/acid{pixel_y = 30},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"zR" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"zS" = (/turf/simulated/floor/tiled/freezer,/area/vr/powered)
"zT" = (/turf/simulated/floor/flock{temperature = 311},/area/vr/powered/rocks)
"zU" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/airless,/area/vr/powered)
"zV" = (/obj/fiftyspawner/rods,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"zW" = (/obj/structure/loot_pile/surface/alien/engineering,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"zX" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/airless,/area/vr/powered)
"zY" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"zZ" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/donut{pixel_x = 3; pixel_y = -4},/obj/item/weapon/reagent_containers/food/condiment/sugar{pixel_x = 6; pixel_y = 2},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Aa" = (/obj/structure/railing/grey{dir = 1},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/lava,/area/vr/outdoors/powered/cult)
"Ab" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/airless,/area/vr/powered)
"Ac" = (/obj/structure/sign/science{pixel_y = -32},/turf/space,/area/space)
+"Ad" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"Ae" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Af" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"Ag" = (/turf/simulated/wall/titanium,/area/vr/powered/dungeon)
+"Ah" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/wood,/area/vr/powered/bar)
"Ai" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/sign/department/drones{pixel_y = 32},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp,/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp,/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill,/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill,/obj/item/mecha_parts/mecha_equipment/tool/cable_layer,/obj/item/mecha_parts/mecha_equipment/tool/cable_layer,/obj/item/mecha_parts/mecha_equipment/speedboost,/obj/item/mecha_parts/mecha_equipment/speedboost,/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/component/hull/durable,/obj/item/mecha_parts/component/hull/durable,/obj/item/mecha_parts/component/armor/alien,/obj/item/mecha_parts/component/armor/lightweight,/obj/item/mecha_parts/component/armor/marshal/reinforced,/obj/item/mecha_parts/component/armor/marshal,/obj/item/mecha_parts/component/armor/military,/obj/item/mecha_parts/component/armor/military/marauder,/obj/item/mecha_parts/mecha_equipment/runningboard,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/omni_shield,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"Aj" = (/obj/structure/barricade,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/vr/powered/dungeon)
"Ak" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 1},/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/brown,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Al" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/toolbox/syndicate/powertools,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"Am" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
@@ -987,42 +1370,56 @@
"As" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoron,/obj/fiftyspawner/osmium,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
"At" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Au" = (/obj/machinery/door/airlock/maintenance/int,/obj/structure/fans/hardlight,/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
+"Av" = (/turf/simulated/wall/r_wall,/area/vr/powered/gunshop)
"Aw" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"Ax" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered/cult)
"Ay" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/salvageable/computer_os,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"Az" = (/obj/machinery/door/window/brigdoor/eastright{req_access = null; dir = 2},/obj/machinery/door/window/brigdoor/eastleft{req_access = null; dir = 1},/obj/machinery/door/window/brigdoor/eastright{req_access = null; dir = 2},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"AA" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
"AB" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/greengrid/nitrogen,/area/vr/powered/space/sciship)
"AC" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/turf/simulated/floor/water/beach{dir = 4; temperature = 311},/area/vr/outdoors/powered)
"AD" = (/obj/effect/catwalk_plated/dark,/obj/machinery/shipsensors,/turf/simulated/floor/airless,/area/vr/powered/space/sciship)
+"AE" = (/obj/structure/sign/poster{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/shop)
"AF" = (/obj/machinery/door/airlock/glass_centcom{name = "RnD and Fabrication"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
+"AG" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"AH" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"AI" = (/obj/item/device/kit/paint/ripley/death,/obj/item/device/kit/paint/ripley/flames_blue,/obj/item/device/kit/paint/ripley/flames_red,/obj/item/device/kit/paint/ripley,/obj/structure/table/rack/shelf/steel,/obj/machinery/button/remote/airlock{desiredstate = 1; dir = 1; id = "kalipso_hatch"; name = "Rear Hatch Control"; pixel_y = -29; specialfunctions = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
"AJ" = (/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"AK" = (/obj/machinery/transhuman/autoresleever{respawn = 0; vore_respawn = 0; equip_body = 1; name = "VR Ghost Cafe Spawn"; desc = "Clicking on this as a ghost will spawn you in as a NPC exclusive to the VR world loaded into the station."; ghost_spawns = 1},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"AL" = (/obj/structure/table/bench/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"AM" = (/obj/effect/floor_decal/rust,/obj/random/obstruction,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"AN" = (/obj/structure/bed/chair/wood/wings{dir = 1},/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/cult,/area/vr/powered/cult)
"AO" = (/obj/structure/prop/machine/tgmc_console3/starts_on,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"AP" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/obj/structure/sink{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"AQ" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"AR" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
"AS" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"AT" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"AU" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/iron,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"AW" = (/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered)
"AX" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
+"AY" = (/obj/structure/sign/redcross{icon_state = "bluecross2"; pixel_y = -31},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"AZ" = (/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/obj/item/trash/chipbasket{pixel_y = 5},/turf/simulated/floor/wood,/area/vr/powered/bar)
"Ba" = (/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"Bb" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = -24},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/ionrifle,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"Bc" = (/obj/item/weapon/bone/leg,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"Bd" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"Be" = (/obj/structure/sign/deck1,/turf/simulated/wall/skipjack,/area/vr/powered/space/sciship)
"Bf" = (/obj/machinery/door/airlock{id_tag = "VR2"; name = "VR Beachhouse 2"},/turf/simulated/floor/wood,/area/vr/powered)
+"Bg" = (/obj/structure/table/alien/blue,/obj/item/weapon/bluespace_harpoon,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Bh" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/unsimulated/wall/seperator,/area/vr/powered/rocks)
"Bi" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/stack/material/gold,/obj/item/clothing/gloves/ring/material/gold,/obj/item/clothing/ears/earring/stud/diamond,/obj/item/weapon/pickaxe/gold,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"Bj" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"Bk" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/vr/powered/bar)
"Bl" = (/mob/living/simple_mob/construct/wraith{dir = 1; ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Bm" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"Bn" = (/obj/item/weapon/pack/cardemon,/turf/simulated/floor/wood,/area/vr/powered)
-"Bo" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"Bo" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/loadout/overwear{prices = list(/obj/item/clothing/suit/storage/apron=0,/obj/item/clothing/suit/storage/flannel/aqua=0,/obj/item/clothing/suit/storage/toggle/bomber=0,/obj/item/clothing/suit/storage/bomber/alt=0,/obj/item/clothing/suit/storage/flannel/brown=0,/obj/item/clothing/suit/storage/toggle/cardigan=0,/obj/item/clothing/accessory/poncho/roles/cloak/custom=0,/obj/item/clothing/suit/storage/duster=0,/obj/item/clothing/suit/storage/toggle/denim_jacket=0,/obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen=0,/obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless=0,/obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless=0,/obj/item/clothing/suit/storage/fluff/gntop=0,/obj/item/clothing/suit/greatcoat=0,/obj/item/clothing/suit/storage/flannel=0,/obj/item/clothing/suit/storage/greyjacket=0,/obj/item/clothing/suit/storage/hazardvest=0,/obj/item/clothing/suit/storage/toggle/hoodie/black=0,/obj/item/clothing/suit/storage/toggle/hoodie/red=0,/obj/item/clothing/suit/storage/toggle/hoodie/blue=0,/obj/item/clothing/suit/storage/toggle/hoodie/green=0,/obj/item/clothing/suit/storage/toggle/hoodie/orange=0,/obj/item/clothing/suit/storage/toggle/hoodie/yellow=0,/obj/item/clothing/suit/storage/toggle/hoodie/cti=0,/obj/item/clothing/suit/storage/toggle/hoodie/mu=0,/obj/item/clothing/suit/storage/toggle/hoodie/nt=0,/obj/item/clothing/suit/storage/toggle/hoodie/smw=0,/obj/item/clothing/suit/storage/toggle/hoodie/nrti=0,/obj/item/clothing/suit/storage/fluff/jacket/field=0,/obj/item/clothing/suit/storage/fluff/jacket/air_cavalry=0,/obj/item/clothing/suit/storage/fluff/jacket/air_force=0,/obj/item/clothing/suit/storage/fluff/jacket/navy=0,/obj/item/clothing/suit/storage/fluff/jacket/special_forces=0,/obj/item/clothing/suit/kamishimo=0,/obj/item/clothing/suit/kimono=0,/obj/item/clothing/suit/storage/toggle/labcoat=0,/obj/item/clothing/suit/storage/toggle/labcoat/blue=0,/obj/item/clothing/suit/storage/toggle/labcoat/blue_edge=0,/obj/item/clothing/suit/storage/toggle/labcoat/green=0,/obj/item/clothing/suit/storage/toggle/labcoat/orange=0,/obj/item/clothing/suit/storage/toggle/labcoat/pink=0,/obj/item/clothing/suit/storage/toggle/labcoat/red=0,/obj/item/clothing/suit/storage/toggle/labcoat/yellow=0,/obj/item/clothing/suit/storage/toggle/labcoat/old=0,/obj/item/clothing/suit/leathercoat=0,/obj/item/clothing/suit/storage/toggle/leather_jacket=0,/obj/item/clothing/suit/storage/leather_jacket_alt=0,/obj/item/clothing/suit/storage/toggle/brown_jacket=0,/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen=0,/obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen=0,/obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless=0,/obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless=0,/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless=0,/obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless=0,/obj/item/clothing/suit/storage/miljacket=0,/obj/item/clothing/suit/storage/miljacket/alt=0,/obj/item/clothing/suit/storage/miljacket/green=0,/obj/item/clothing/suit/storage/apron/overalls=0,/obj/item/clothing/suit/storage/toggle/peacoat=0,/obj/item/clothing/accessory/poncho=0,/obj/item/clothing/accessory/poncho/green=0,/obj/item/clothing/accessory/poncho/red=0,/obj/item/clothing/accessory/poncho/purple=0,/obj/item/clothing/accessory/poncho/blue=0,/obj/item/clothing/suit/jacket/puffer=0,/obj/item/clothing/suit/jacket/puffer/vest=0,/obj/item/clothing/suit/storage/flannel/red=0,/obj/item/clothing/suit/unathi/robe=0,/obj/item/clothing/suit/storage/toggle/internalaffairs=0,/obj/item/clothing/suit/storage/toggle/lawyer/bluejacket=0,/obj/item/clothing/suit/storage/toggle/lawyer/purpjacket=0,/obj/item/clothing/suit/suspenders=0,/obj/item/clothing/suit/storage/toggle/track=0,/obj/item/clothing/suit/storage/toggle/track/blue=0,/obj/item/clothing/suit/storage/toggle/track/green=0,/obj/item/clothing/suit/storage/toggle/track/red=0,/obj/item/clothing/suit/storage/toggle/track/white=0,/obj/item/clothing/suit/storage/trench=0,/obj/item/clothing/suit/storage/trench/grey=0,/obj/item/clothing/suit/varsity=0,/obj/item/clothing/suit/varsity/red=0,/obj/item/clothing/suit/varsity/purple=0,/obj/item/clothing/suit/varsity/green=0,/obj/item/clothing/suit/varsity/blue=0,/obj/item/clothing/suit/varsity/brown=0,/obj/item/clothing/suit/storage/hooded/wintercoat=0,/obj/item/clothing/suit/storage/hooded/wintercoat/aformal=0,/obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey=0,/obj/item/clothing/suit/storage/puffyred=0,/obj/item/clothing/suit/storage/puffypurple=0,/obj/item/clothing/suit/storage/puffyblue=0)},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"Bp" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"Bq" = (/obj/item/weapon/material/twohanded/sledgehammer/mjollnir,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Br" = (/obj/machinery/disperser/middle{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/effect/catwalk_plated/dark,/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/floor/airless,/area/vr/powered/space/sciship)
+"Bs" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"Bt" = (/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/vr/powered)
"Bu" = (/obj/structure/cliff/automatic/corner,/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"Bv" = (/obj/structure/prop/statue/lion,/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/powered/rocks)
@@ -1030,14 +1427,20 @@
"Bx" = (/obj/structure/table/steel_reinforced,/obj/item/ammo_magazine/rpd,/obj/item/ammo_magazine/rpd,/obj/item/ammo_magazine/rpd,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered/cult)
"By" = (/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"Bz" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/whiteship)
+"BA" = (/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"BB" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"BC" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"BD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/hosdouble,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
"BE" = (/obj/structure/table/rack/shelf/steel,/obj/item/stolenpackage,/obj/random/contraband/nofail,/obj/random/contraband/nofail,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"BF" = (/obj/structure/bed/chair/oldsofa/right{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor/wood,/area/vr/powered/cult)
+"BG" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/vr/powered/constore)
"BH" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sausage/battered,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"BI" = (/obj/structure/ledge{dir = 4},/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"BJ" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25},/obj/structure/table/reinforced,/obj/item/weapon/storage/quickdraw/syringe_case,/obj/item/weapon/storage/quickdraw/syringe_case,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"BK" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"BL" = (/obj/structure/prop/rock/small,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
+"BM" = (/obj/structure/table/standard,/obj/random/plushie,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"BN" = (/obj/structure/cliff/automatic,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"BO" = (/obj/effect/catwalk_plated/white,/turf/space,/area/space)
"BP" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"BQ" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/cans/root_beer,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
@@ -1045,15 +1448,20 @@
"BS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered/cult)
"BT" = (/obj/structure/salvageable/console_broken_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"BU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
-"BV" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"BV" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"BW" = (/obj/machinery/replicator/clothing,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"BX" = (/obj/structure/prop/rock/round,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
"BY" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"BZ" = (/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
+"Ca" = (/obj/structure/loot_pile/surface/alien/engineering,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Cb" = (/obj/machinery/door/airlock/angled_tgmc/wide/security{dir = 4},/obj/structure/fans/hardlight/colorable{color = "red"},/turf/simulated/shuttle/plating,/area/vr/powered)
"Cc" = (/obj/structure/table/darkglass,/obj/item/weapon/technomancer_catalog/universal,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"Cd" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"Ce" = (/obj/effect/decal/cleanable/fruit_smudge,/turf/simulated/floor/wood,/area/vr/powered/shop)
"Cf" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
+"Cg" = (/obj/structure/sign/warning/lethal_turrets{name = "\improper SNIPER"},/turf/simulated/wall/r_concrete,/area/vr/powered/dungeon)
"Ch" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Ci" = (/obj/machinery/vending/wallmed1/public{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Cj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/meter,/turf/simulated/floor/airless,/area/vr/powered)
"Ck" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "estrella_pump"},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"Cl" = (/obj/machinery/access_button{master_tag = null; pixel_y = 27; req_one_access = null},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/door/airlock/hatch,/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
@@ -1063,15 +1471,21 @@
"Cp" = (/obj/structure/table/glass,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
"Cq" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"Cr" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
+"Cs" = (/obj/structure/closet/l3closet/virology,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Ct" = (/obj/machinery/holoplant,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"Cu" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/bar)
"Cv" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Cw" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/optable,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"Cx" = (/obj/structure/table/rack/shelf,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/weapon/tool/wirecutters,/obj/item/weapon/tool/wirecutters,/turf/simulated/floor/wood,/area/vr/powered/art)
"Cy" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/atmos/phoron{pixel_x = 32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"Cz" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/clothing/mask/bandana/gold,/obj/item/weapon/coin/diamond,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"CA" = (/obj/structure/bed/chair/oldsofa/right,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/cult)
+"CB" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/stasis_cage,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"CC" = (/obj/item/weapon/pack/cardemon,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
+"CD" = (/obj/structure/bed/chair/wood{dir = 2; pixel_y = 0},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"CE" = (/obj/structure/prop/rock/small/wateralt,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"CF" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
+"CG" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"CH" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/bonemed{pixel_y = 1},/obj/item/weapon/storage/firstaid/clotting{pixel_y = -3},/obj/machinery/recharger/wallcharger{pixel_x = 34},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"CI" = (/obj/structure/cult/pylon,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"CJ" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/airless,/area/vr/powered)
@@ -1079,46 +1493,71 @@
"CL" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Scrubber to Waste"},/turf/simulated/floor/airless,/area/vr/powered)
"CM" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"CN" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"CO" = (/mob/living/simple_mob/animal/giant_spider/hunter,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"CP" = (/obj/structure/bed/chair/oldsofa,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/cult)
"CQ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"CR" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"CS" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
"CT" = (/obj/structure/closet/walllocker_double/hydrant/north,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"CU" = (/obj/structure/simple_door/wood,/turf/simulated/floor/plating,/area/vr/powered/cafe)
+"CV" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"CW" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building1)
"CX" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"CY" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 2},/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"CZ" = (/turf/simulated/wall/sandstone,/area/vr/powered)
"Da" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"Db" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/spellburger,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Dc" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"Dd" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"De" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
+"Df" = (/obj/structure/table/woodentable,/obj/random/cigarettes,/turf/simulated/floor/wood,/area/vr/powered/bar)
"Dg" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"Dh" = (/obj/structure/table/marble,/obj/item/weapon/material/knife/plastic,/turf/simulated/floor,/area/vr/powered)
+"Di" = (/obj/effect/decal/remains/xeno,/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/decal/cleanable/blood/gibs/xeno,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"Dj" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Animal Hospital"},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"Dk" = (/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/obj/item/toy/plushie/susred,/turf/simulated/floor/wood,/area/vr/powered/cult)
+"Dl" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered/vet)
"Dm" = (/mob/living/simple_mob/animal/passive/bird/parrot/kea,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Dn" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Do" = (/obj/structure/salvageable/machine{name = "Life Support Console"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"Dp" = (/obj/structure/table/rack/shelf,/obj/item/weapon/reagent_containers/food/condiment/ketchup{pixel_y = 0; pixel_x = -7},/obj/item/weapon/reagent_containers/food/condiment/mustard{pixel_x = -2},/obj/item/weapon/reagent_containers/food/condiment/hotsauce{pixel_x = 2},/turf/simulated/floor/plating,/area/vr/powered/cafe)
"Dq" = (/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"Dr" = (/obj/structure/table/fancyblack,/obj/item/trash/plate,/obj/item/organ/internal/heart,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/wood,/area/vr/powered/cult)
+"Ds" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Dt" = (/obj/structure/bed/chair/oldsofa/left,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/cult)
"Du" = (/obj/machinery/chemical_dispenser/ert/specialops{pixel_y = 7},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Dv" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
"Dw" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"Dx" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/outdoors/powered)
"Dy" = (/obj/structure/table/marble,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"Dz" = (/mob/living/simple_mob/animal/giant_spider,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"DA" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
"DB" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered/cult)
"DC" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"DD" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered)
+"DE" = (/obj/structure/table/glass,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"DF" = (/obj/structure/table/rack/shelf,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"DG" = (/obj/machinery/light/poi,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
+"DH" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"DI" = (/obj/structure/bed/chair/office/dark{dir = 2},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"DJ" = (/obj/machinery/gear_dispenser/suit/commonwealth,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"DK" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/purple,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
+"DL" = (/obj/structure/table/standard,/obj/item/weapon/surgical/hemostat{pixel_y = 0; pixel_x = -4},/obj/item/weapon/surgical/retractor,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"DM" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/pancakes{pixel_y = -2; pixel_x = 3},/turf/simulated/floor/wood,/area/vr/powered/bar)
"DN" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"DO" = (/obj/item/clothing/accessory/collar/spike,/obj/structure/table/steel_reinforced,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"DP" = (/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
+"DQ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"DR" = (/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
"DS" = (/obj/structure/cult/talisman,/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
"DT" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/airless,/area/vr/powered)
+"DU" = (/obj/structure/table/rack/shelf,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"DV" = (/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
+"DW" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/vr/powered/dungeon)
"DX" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/storage/firstaid/adv{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/adv,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"DY" = (/turf/simulated/shuttle/wall/no_join{base_state = "orange"; icon = 'icons/turf/shuttle_orange.dmi'; icon_state = "orange"},/area/vr/powered/space/whiteship)
"DZ" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"Ea" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"Eb" = (/obj/machinery/door/blast/multi_tile/four_tile_hor_sec,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/cult)
"Ec" = (/obj/machinery/vending/snix,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"Ed" = (/obj/effect/overlay/palmtree_r,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
@@ -1127,44 +1566,68 @@
"Eg" = (/obj/structure/railing,/obj/effect/step_trigger/teleporter/bridge/north_to_south,/turf/simulated/floor/water/beach{dir = 4; temperature = 311},/area/vr/outdoors/powered)
"Eh" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/obj/structure/sign/department/shield{pixel_x = 32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"Ei" = (/obj/structure/railing{dir = 1},/obj/effect/decal/remains,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered/lava)
+"Ej" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/button/ignition{id = "cutiemulcher"; pixel_x = -22; pixel_y = -5},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Ek" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
-"Em" = (/obj/effect/catwalk_plated/dark,/obj/effect/catwalk_plated/dark,/turf/space,/area/space)
+"El" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"Em" = (/obj/structure/table/rack/shelf,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/bulletproof,/obj/item/clothing/head/helmet/bulletproof,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
+"En" = (/obj/machinery/syndicate_beacon/virgo,/turf/simulated/floor/snow,/area/vr/outdoors/powered)
"Eo" = (/turf/simulated/floor/carpet/purcarpet,/area/vr/powered/cult)
"Ep" = (/obj/structure/closet,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"Eq" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Er" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Es" = (/turf/simulated/wall/r_wall,/area/vr/powered/bar)
"Et" = (/obj/structure/curtain/open,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"Eu" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"Ev" = (/obj/structure/table/alien/blue,/obj/item/weapon/surgical/scalpel/ripper,/obj/item/weapon/surgical/scalpel/manager,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"Ew" = (/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
+"Ex" = (/obj/machinery/light/small{dir = 8},/obj/structure/bed/chair/bay/comfy/black{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"Ey" = (/obj/structure/table/alien/blue,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/FixOVein/alien{pixel_y = -2},/obj/item/weapon/surgical/surgicaldrill/alien{pixel_x = 3; pixel_y = 7},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"Ez" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"EA" = (/obj/machinery/vending/engineering{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"EB" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/sign/department/drones{pixel_y = 32},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"EC" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/whiteship)
"ED" = (/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"EE" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/turf/simulated/floor/airless,/area/vr/powered)
+"EF" = (/obj/structure/railing/grey{pixel_y = 0; dir = 8},/obj/structure/railing/grey,/obj/structure/prop/statue/pillar,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
"EG" = (/obj/item/weapon/material/fishing_net,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered)
"EH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband/nofail,/obj/fiftyspawner/steel,/obj/fiftyspawner/phoronrglass,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"EI" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/shoes/magboots/adv,/obj/item/clothing/shoes/magboots/adv,/obj/item/clothing/shoes/magboots/adv,/obj/item/clothing/shoes/magboots/adv,/turf/simulated/floor/cult,/area/vr/powered/cult)
"EJ" = (/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
+"EK" = (/obj/machinery/chemical_dispenser/bar_alc/full,/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"EL" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"EM" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"EN" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"EO" = (/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
+"EP" = (/obj/structure/fence/corner{dir = 10},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"EQ" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/syndicate/powertools,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"ER" = (/turf/simulated/mineral/ignore_oregen,/area/vr/powered/dungeon)
+"ES" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/vr/powered/constore)
+"ET" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire,/obj/item/device/denecrotizer/medical,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"EU" = (/obj/machinery/light{dir = 8},/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
"EV" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/whiteship)
+"EW" = (/obj/item/weapon/beartrap/hunting{anchored = 1; deployed = 1; icon_state = "beartrap1"},/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
+"EX" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"EY" = (/obj/machinery/shuttle_sensor,/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered/space/whiteship)
"EZ" = (/obj/structure/showcase/sign{name = "WARNING: OSHA VIOLATIONS"; desc = "Don't Fall."},/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered/lava)
+"Fa" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/rocks)
"Fb" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Fc" = (/obj/structure/sign/science{pixel_x = 32},/turf/space,/area/space)
"Fd" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"Fe" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Ff" = (/turf/simulated/floor/water/beach{temperature = 293.15},/area/vr/outdoors/powered)
+"Fg" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"Fh" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib3"},/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "remainsposi"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"Fi" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"Fj" = (/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/plastic,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"Fk" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"Fl" = (/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"Fm" = (/obj/structure/fence/door/opened,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Fn" = (/obj/structure/table/marble,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"Fo" = (/obj/machinery/vending/medical{dir = 8; emagged = 1; pixel_x = -6; req_access = list(777)},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"Fp" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/cargo,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"Fq" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"Fr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/bench/standard,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"Fs" = (/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Ft" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Fu" = (/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"Fv" = (/obj/machinery/door/blast/multi_tile/four_tile_ver_sec,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
@@ -1172,24 +1635,37 @@
"Fx" = (/obj/effect/gateway,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"Fy" = (/obj/machinery/light{layer = 3},/obj/structure/table/steel_reinforced,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"Fz" = (/turf/unsimulated/wall/seperator,/area/vr/outdoors/powered/cult)
+"FA" = (/mob/living/simple_mob/animal/giant_spider,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"FB" = (/obj/structure/prop/machine/alien_tank/starts_broken,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"FC" = (/mob/living/simple_mob/vore/rabbit/killer,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"FD" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"FE" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel,/turf/simulated/shuttle/plating,/area/vr/powered)
+"FF" = (/obj/machinery/light,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"FG" = (/obj/machinery/gear_dispenser/suit/autolok,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
-"FH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"FH" = (/obj/machinery/sparker{id = "cutiemulcher"; pixel_x = -22},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"FI" = (/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"FJ" = (/obj/structure/flora/tree/jungle,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"FK" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"FL" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp/green{pixel_y = 2},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"FM" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"FN" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"FO" = (/obj/structure/closet/cabinet,/obj/random/multiple,/obj/random/multiple,/obj/random/multiple,/obj/random/multiple,/obj/random/multiple,/obj/random/toy,/obj/random/toy,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/wood,/area/vr/powered)
+"FP" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/box/freezer,/obj/item/weapon/storage/box/freezer,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"FQ" = (/obj/structure/table/marble{color = "grey"},/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"FR" = (/obj/random/maintenance/security,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"FS" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"FT" = (/obj/effect/floor_decal/techfloor/corner,/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"FU" = (/obj/structure/table/standard,/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
"FV" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"FW" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"FX" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/hyper,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"FY" = (/mob/living/simple_mob/vore/alienanimals/teppi,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"FZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/structure/table/rack/shelf/steel,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"Ga" = (/turf/simulated/floor/tiled,/area/vr/powered/constore)
"Gb" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered)
+"Gc" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"Gd" = (/obj/machinery/vending/deluxe_dinner,/obj/machinery/light/small,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"Ge" = (/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"Gf" = (/obj/structure/shuttle/engine/router,/turf/simulated/shuttle/wall,/area/vr/powered/space/whiteship)
"Gg" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/shuttle/engine/heater{dir = 8},/turf/simulated/floor/airless,/area/vr/powered)
"Gh" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "estrella_side_hatch"; locked = 1; req_access = null; req_one_access = null},/obj/machinery/button/remote/airlock{dir = 8; id = "estrella_side_hatch"; name = "Side Hatch Control"; pixel_x = -27; specialfunctions = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/obj/structure/fans/tiny,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
@@ -1197,24 +1673,33 @@
"Gj" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
"Gk" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"Gl" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange/corner{dir = 8},/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"Gm" = (/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
"Gn" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/blue,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"Go" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/ribplate,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Gp" = (/obj/structure/railing,/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered/lava)
+"Gq" = (/obj/structure/prop/alien/computer,/obj/structure/prop/alien/computer,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Gr" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"Gs" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/vr/powered)
+"Gt" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/item/pizzabox/old,/obj/item/clothing/head/soft/red,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"Gu" = (/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Gv" = (/obj/machinery/door/window/brigdoor/westleft{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Gw" = (/obj/structure/flora/ausbushes/sunnybush,/turf/unsimulated/wall,/area/vr/outdoors/powered)
"Gx" = (/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"Gy" = (/obj/structure/table/rack/shelf/steel,/obj/effect/decal/cleanable/blood/gibs/xeno,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Gz" = (/obj/structure/table/marble,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/vr/powered)
"GA" = (/turf/simulated/wall/cult,/area/vr/powered/cult)
"GB" = (/obj/item/device/tape,/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered)
+"GC" = (/obj/machinery/light{dir = 4},/obj/structure/bed/padded,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"GD" = (/obj/structure/table/darkglass,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"GE" = (/obj/structure/table/reinforced,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"GF" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
"GG" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"GH" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"GI" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"GJ" = (/obj/fiftyspawner/titanium,/obj/item/stack/cable_coil/silver,/turf/simulated/floor/plating,/area/vr/powered/vet)
"GK" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/space/sciship)
"GL" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"GM" = (/obj/structure/table/rack/shelf/steel,/obj/random/action_figure{pixel_y = -3},/obj/item/glass_jar,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"GN" = (/obj/structure/sign/ironhammer,/turf/simulated/wall/skipjack,/area/vr/powered/space/sciship)
"GO" = (/turf/simulated/wall/skipjack,/area/vr/powered/space/mechfactory)
"GP" = (/turf/simulated/mineral/sif,/area/vr/powered/rocks)
@@ -1224,10 +1709,13 @@
"GT" = (/obj/machinery/button/remote/airlock{id = "VR1"; name = "Bolt Control"; pixel_x = 30; specialfunctions = 4},/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
"GU" = (/obj/machinery/smartfridge/survival_pod{name = "food storage"},/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/tocino,/obj/item/weapon/reagent_containers/food/snacks/tocino,/obj/item/weapon/reagent_containers/food/snacks/tocino,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"GV" = (/obj/structure/flora/lily2,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
+"GW" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/wood,/area/vr/powered/bar)
+"GX" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"GY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"GZ" = (/obj/effect/decal/remains,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered/lava)
"Ha" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building1)
"Hb" = (/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/structure/table/rack/shelf/steel,/obj/item/trash/rkibble{pixel_x = 8},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
+"Hc" = (/obj/item/toy/cat_toy,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Hd" = (/obj/structure/closet/walllocker_double/hydrant/east,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"He" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Hf" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/wood,/area/vr/powered/cult)
@@ -1239,46 +1727,78 @@
"Hl" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 5},/obj/item/device/soulstone{pixel_y = 9; pixel_x = 5},/obj/item/device/soulstone{pixel_y = 9; pixel_x = -2},/obj/item/device/soulstone{pixel_y = 3; pixel_x = 5},/obj/item/device/soulstone{pixel_y = 4; pixel_x = -2},/obj/item/device/soulstone{pixel_y = -3; pixel_x = 5},/obj/item/device/soulstone{pixel_y = -3; pixel_x = -3},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Hm" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"Hn" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
-"Ho" = (/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/space)
+"Ho" = (/obj/effect/map_effect/portal/line/side_b{dir = 4},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
"Hp" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"Hq" = (/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/under/color/prison,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/shoes/orange,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/under/fluff/latexmaid,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor.dmi'; icon_state = "dispenser"; name = "Garmentier"; req_access = list(777); pixel_y = 0},/obj/item/clothing/head/headband/maid,/obj/item/clothing/head/headband/maid,/obj/item/clothing/head/headband/maid,/obj/item/clothing/head/headband/maid,/obj/item/clothing/head/headband/maid,/obj/effect/floor_decal/techfloor{dir = 10},/obj/machinery/light/poi,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"Hr" = (/obj/random/cash/huge,/obj/random/cash/huge,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"Hs" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full{pixel_y = 5},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"Ht" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery{pixel_y = 0; pixel_x = 2},/obj/item/weapon/surgical/surgicaldrill,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"Hu" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"Hv" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/plating,/area/vr/powered/material)
"Hw" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/gun/projectile/automatic/serdy/rpd,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered/cult)
"Hx" = (/obj/machinery/vending/wardrobe/janidrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"Hy" = (/obj/machinery/light{layer = 3},/obj/structure/table/marble,/obj/item/weapon/storage/box/glasses/coffeecup{pixel_x = -6; pixel_y = 1},/obj/item/weapon/storage/box/glasses/square{pixel_x = 9; pixel_y = 1},/obj/item/weapon/storage/box/glasses/coffeemug{pixel_x = -6; pixel_y = 12},/obj/item/weapon/storage/box/buns{pixel_x = 9; pixel_y = 12},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Hz" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
+"HA" = (/obj/structure/railing/grey{pixel_y = 0; dir = 1},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
+"HB" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; dir = 4; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/obj/effect/floor_decal/techfloor{dir = 10},/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/tracking,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/implantcase/chem,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/obj/item/weapon/disk/nifsoft/compliance,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
+"HC" = (/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"HD" = (/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/cult,/area/vr/powered/cult)
"HE" = (/obj/structure/table/rack,/obj/item/weapon/makeover,/obj/structure/curtain/open/bed,/obj/item/clothing/under/swimsuit/fluff/penelope,/turf/simulated/floor/wood,/area/vr/powered)
"HF" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"HG" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"HH" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"HI" = (/obj/structure/closet/secure_closet/engineering_welding{req_access = null},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"HJ" = (/turf/simulated/floor/wood,/area/vr/powered)
+"HK" = (/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -1; pixel_y = 17},/obj/item/weapon/reagent_containers/food/condiment/carton/flour{pixel_x = -5; pixel_y = -2},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"HL" = (/obj/machinery/light{dir = 4; light_color = "#DDFFD3"},/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
+"HM" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/wormcan,/obj/item/weapon/storage/box/wormcan{pixel_y = 0; pixel_x = 5},/obj/item/weapon/storage/box/wormcan/deluxe{pixel_y = -1; pixel_x = -6},/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"HN" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"HO" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"HP" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/item/clothing/head/helmet/combat/USDF,/obj/item/clothing/head/helmet/combat/USDF,/obj/item/clothing/suit/armor/combat/USDF,/obj/item/clothing/suit/armor/combat/USDF,/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"HQ" = (/obj/machinery/bodyscanner,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"HR" = (/obj/item/weapon/bone/skull,/obj/effect/decal/cleanable/blood,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"HS" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"HT" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"HU" = (/obj/structure/outcrop/uranium,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"HV" = (/obj/effect/decal/remains/xeno,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"HW" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = 6},/obj/item/weapon/reagent_containers/glass/beaker/noreact{pixel_x = -6},/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"HX" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"HY" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"HZ" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/vr/powered/armory)
+"Ia" = (/obj/structure/table/reinforced,/obj/item/clothing/head/fishing,/obj/structure/window/reinforced{health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/gunshop)
+"Ib" = (/turf/simulated/floor/outdoors/grass/heavy{temperature = 293.15},/area/vr/outdoors/powered)
+"Ic" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
+"Id" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"Ie" = (/obj/structure/bed/chair/oldsofa/corner{dir = 4},/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered)
"If" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"Ig" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"Ih" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"Ii" = (/obj/structure/table/alien/blue,/obj/item/clothing/head/helmet/alien/tank,/obj/item/clothing/suit/armor/alien/tank,/obj/item/clothing/suit/armor/alien,/obj/item/clothing/head/helmet/alien,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Ij" = (/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered/cult)
"Ik" = (/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
+"Il" = (/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = -7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = 7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid,/obj/structure/table/alien/blue,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"Im" = (/mob/living/simple_mob/animal/giant_spider/tunneler,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"In" = (/obj/machinery/vending/giftvendor,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"Io" = (/obj/structure/easel,/obj/item/canvas/twentythree_nineteen,/turf/simulated/floor/wood,/area/vr/powered/art)
"Ip" = (/obj/vehicle/boat{dir = 8},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"Iq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Ir" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Is" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/cult,/area/vr/powered/cult)
"It" = (/turf/simulated/wall/wood,/area/vr/powered/rocks)
"Iu" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
+"Iv" = (/turf/simulated/wall/r_wall,/area/vr/powered/dungeon)
"Iw" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"Ix" = (/obj/machinery/vending/loadout{prices = list(/obj/item/clothing/gloves/evening=0,/obj/item/clothing/gloves/fingerless=0,/obj/item/clothing/gloves/black=0,/obj/item/clothing/gloves/blue=0,/obj/item/clothing/gloves/brown=0,/obj/item/clothing/gloves/color=0,/obj/item/clothing/gloves/green=0,/obj/item/clothing/gloves/grey=0,/obj/item/clothing/gloves/sterile/latex=0,/obj/item/clothing/gloves/light_brown=0,/obj/item/clothing/gloves/sterile/nitrile=0,/obj/item/clothing/gloves/orange=0,/obj/item/clothing/gloves/purple=0,/obj/item/clothing/gloves/red=0,/obj/item/clothing/gloves/fluff/siren=0,/obj/item/clothing/gloves/white=0,/obj/item/clothing/gloves/duty=0,/obj/item/clothing/shoes/athletic=0,/obj/item/clothing/shoes/boots/fluff/siren=0,/obj/item/clothing/shoes/slippers=0,/obj/item/clothing/shoes/boots/cowboy/classic=0,/obj/item/clothing/shoes/boots/cowboy=0,/obj/item/clothing/shoes/boots/duty=0,/obj/item/clothing/shoes/flats/white/color=0,/obj/item/clothing/shoes/flipflop=0,/obj/item/clothing/shoes/heels=0,/obj/item/clothing/shoes/hitops/black=0,/obj/item/clothing/shoes/hitops/blue=0,/obj/item/clothing/shoes/hitops/green=0,/obj/item/clothing/shoes/hitops/orange=0,/obj/item/clothing/shoes/hitops/purple=0,/obj/item/clothing/shoes/hitops/red=0,/obj/item/clothing/shoes/flats/white/color=0,/obj/item/clothing/shoes/hitops/yellow=0,/obj/item/clothing/shoes/boots/jackboots=0,/obj/item/clothing/shoes/boots/jungle=0,/obj/item/clothing/shoes/black/cuffs=0,/obj/item/clothing/shoes/black/cuffs/blue=0,/obj/item/clothing/shoes/black/cuffs/red=0,/obj/item/clothing/shoes/sandal=0,/obj/item/clothing/shoes/black=0,/obj/item/clothing/shoes/blue=0,/obj/item/clothing/shoes/brown=0,/obj/item/clothing/shoes/laceup=0,/obj/item/clothing/shoes/green=0,/obj/item/clothing/shoes/laceup/brown=0,/obj/item/clothing/shoes/orange=0,/obj/item/clothing/shoes/purple=0,/obj/item/clothing/shoes/red=0,/obj/item/clothing/shoes/white=0,/obj/item/clothing/shoes/yellow=0,/obj/item/clothing/shoes/skater=0,/obj/item/clothing/shoes/boots/cowboy/snakeskin=0,/obj/item/clothing/shoes/boots/jackboots/toeless=0,/obj/item/clothing/shoes/boots/workboots/toeless=0,/obj/item/clothing/shoes/boots/winter=0,/obj/item/clothing/shoes/boots/workboots=0,/obj/item/clothing/shoes/footwraps=0,/obj/item/clothing/shoes/sneakerspurple=0,/obj/item/clothing/shoes/sneakersblue=0,/obj/item/clothing/shoes/sneakersred=0)},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Iy" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"Iz" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"IA" = (/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
+"IB" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/morestuff,/turf/simulated/floor/wood,/area/vr/powered/shop)
"IC" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/machinery/shower{pixel_y = 20},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/vr/powered/space/whiteship)
+"ID" = (/obj/machinery/door/blast/shutters{dir = 2; id = "vrsewers1"},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"IE" = (/obj/structure/bed/chair/oldsofa/left,/turf/simulated/floor/wood,/area/vr/powered)
+"IF" = (/obj/structure/simple_door/wood,/turf/simulated/floor/carpet,/area/vr/powered/art)
+"IG" = (/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"IH" = (/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"II" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"IJ" = (/obj/structure/salvageable/console_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"IK" = (/obj/structure/prop/rock/flat,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
@@ -1287,76 +1807,102 @@
"IN" = (/obj/structure/sink,/turf/simulated/floor/wood,/area/vr/powered)
"IO" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/gygax/old,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
"IP" = (/turf/simulated/wall/sandstonediamond,/area/vr/outdoors/powered)
+"IQ" = (/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/vr/powered/shop)
"IR" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/smallbould,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"IS" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"IT" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"IU" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/storage/firstaid/combat{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/combat,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"IV" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_inner"; locked = 1; name = "Internal Access"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"IW" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"IX" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
-"IZ" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes/sarucubes,/obj/item/weapon/storage/box/monkeycubes/neaeracubes,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
+"IY" = (/obj/structure/salvageable/data_os,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"IZ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Ja" = (/obj/structure/sign/kiddieplaque{name = "Kalipso: Modular fabrication shuttle"; pixel_x = 32},/turf/space,/area/space)
"Jb" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"Jc" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Jd" = (/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"Je" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/vr/powered/shop)
"Jf" = (/obj/machinery/floorlayer,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"Jg" = (/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/bar)
"Jh" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"Ji" = (/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"Jj" = (/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered)
"Jk" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/storage/firstaid/combat{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/combat,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"Jl" = (/obj/machinery/light{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Jm" = (/obj/effect/landmark/virtual_reality{name = "Beach"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"Jn" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"Jo" = (/obj/item/weapon/pickaxe,/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/locked/phasegun,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"Jp" = (/turf/simulated/floor/water/beach{dir = 5; temperature = 311},/area/vr/outdoors/powered)
-"Jq" = (/obj/machinery/vending/loadout/accessory,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"Jq" = (/obj/machinery/vending/loadout/accessory{prices = list(/obj/item/clothing/accessory=0,/obj/item/clothing/accessory/armband/med/color=0,/obj/item/clothing/accessory/asymmetric=0,/obj/item/clothing/accessory/asymmetric/purple=0,/obj/item/clothing/accessory/asymmetric/green=0,/obj/item/clothing/accessory/bracelet=0,/obj/item/clothing/accessory/bracelet/material=0,/obj/item/clothing/accessory/bracelet/friendship=0,/obj/item/clothing/accessory/chaps=0,/obj/item/clothing/accessory/chaps/black=0,/obj/item/weapon/storage/briefcase/clutch=0,/obj/item/clothing/accessory/collar=0,/obj/item/clothing/accessory/collar/bell=0,/obj/item/clothing/accessory/collar/spike=0,/obj/item/clothing/accessory/collar/pink=0,/obj/item/clothing/accessory/collar/holo=0,/obj/item/clothing/accessory/collar/shock=0,/obj/item/weapon/storage/belt/fannypack=0,/obj/item/weapon/storage/belt/fannypack/white=0,/obj/item/clothing/accessory/fullcape=0,/obj/item/clothing/accessory/halfcape=0,/obj/item/clothing/accessory/hawaiian=0,/obj/item/clothing/accessory/hawaiian/blue=0,/obj/item/clothing/accessory/hawaiian/pink=0,/obj/item/clothing/accessory/hawaiian/red=0,/obj/item/clothing/accessory/hawaiian/yellow=0,/obj/item/clothing/accessory/tropical=0,/obj/item/clothing/accessory/tropical/green=0,/obj/item/clothing/accessory/tropical/pink=0,/obj/item/clothing/accessory/tropical/blue=0,/obj/item/clothing/accessory/locket=0,/obj/item/weapon/storage/backpack/purse=0,/obj/item/clothing/accessory/sash=0,/obj/item/clothing/accessory/scarf=5,/obj/item/clothing/accessory/scarf/red=0,/obj/item/clothing/accessory/scarf/darkblue=0,/obj/item/clothing/accessory/scarf/purple=0,/obj/item/clothing/accessory/scarf/yellow=100,/obj/item/clothing/accessory/scarf/orange=0,/obj/item/clothing/accessory/scarf/lightblue=0,/obj/item/clothing/accessory/scarf/white=0,/obj/item/clothing/accessory/scarf/black=0,/obj/item/clothing/accessory/scarf/zebra=0,/obj/item/clothing/accessory/scarf/christmas=0,/obj/item/clothing/accessory/scarf/stripedred=0,/obj/item/clothing/accessory/scarf/stripedgreen=0,/obj/item/clothing/accessory/scarf/stripedblue=0,/obj/item/clothing/accessory/jacket=0,/obj/item/clothing/accessory/jacket/checkered=0,/obj/item/clothing/accessory/jacket/burgundy=0,/obj/item/clothing/accessory/jacket/navy=0,/obj/item/clothing/accessory/jacket/charcoal=0,/obj/item/clothing/accessory/vest=0,/obj/item/clothing/accessory/sweater=0,/obj/item/clothing/accessory/sweater/pink=0,/obj/item/clothing/accessory/sweater/mint=0,/obj/item/clothing/accessory/sweater/blue=0,/obj/item/clothing/accessory/sweater/heart=0,/obj/item/clothing/accessory/sweater/nt=5,/obj/item/clothing/accessory/sweater/keyhole=0,/obj/item/clothing/accessory/sweater/winterneck=0,/obj/item/clothing/accessory/sweater/uglyxmas=5,/obj/item/clothing/accessory/sweater/flowersweater=0,/obj/item/clothing/accessory/sweater/redneck=0,/obj/item/clothing/accessory/tie=0,/obj/item/clothing/accessory/tie/horrible=0,/obj/item/clothing/accessory/tie/white=0,/obj/item/clothing/accessory/tie/navy=0,/obj/item/clothing/accessory/tie/yellow=0,/obj/item/clothing/accessory/tie/darkgreen=0,/obj/item/clothing/accessory/tie/black=0,/obj/item/clothing/accessory/tie/red_long=0,/obj/item/clothing/accessory/tie/red_clip=0,/obj/item/clothing/accessory/tie/blue_long=0,/obj/item/clothing/accessory/tie/blue_clip=0,/obj/item/clothing/accessory/tie/red=0,/obj/item/clothing/accessory/wcoat=0,/obj/item/clothing/accessory/wcoat/red=0,/obj/item/clothing/accessory/wcoat/grey=0,/obj/item/clothing/accessory/wcoat/brown=0,/obj/item/clothing/accessory/wcoat/gentleman=0,/obj/item/clothing/accessory/wcoat/swvest=0,/obj/item/clothing/accessory/wcoat/swvest/blue=0,/obj/item/clothing/accessory/wcoat/swvest/red=0,/obj/item/weapon/storage/wallet=0,/obj/item/weapon/storage/wallet/poly=0,/obj/item/weapon/storage/wallet/womens=0,/obj/item/weapon/lipstick=0,/obj/item/weapon/lipstick/purple=0,/obj/item/weapon/lipstick/jade=0,/obj/item/weapon/lipstick/black=0,/obj/item/clothing/ears/earmuffs=0,/obj/item/clothing/ears/earmuffs/headphones=0,/obj/item/clothing/ears/earring/stud=0,/obj/item/clothing/ears/earring/dangle=0,/obj/item/clothing/gloves/ring/mariner=0,/obj/item/clothing/gloves/ring/engagement=0,/obj/item/clothing/gloves/ring/seal/signet=0,/obj/item/clothing/gloves/ring/seal/mason=0,/obj/item/clothing/gloves/ring/material/plastic=0,/obj/item/clothing/gloves/ring/material/steel=0,/obj/item/clothing/gloves/ring/material/gold=100,/obj/item/clothing/glasses/eyepatch=0,/obj/item/clothing/glasses/gglasses=0,/obj/item/clothing/glasses/regular/hipster=0,/obj/item/clothing/glasses/rimless=0,/obj/item/clothing/glasses/thin=0,/obj/item/clothing/glasses/monocle=0,/obj/item/clothing/glasses/goggles=0,/obj/item/clothing/glasses/fluff/spiffygogs=0,/obj/item/clothing/glasses/fakesunglasses=0,/obj/item/clothing/glasses/fakesunglasses/aviator=0,/obj/item/clothing/mask/bandana/blue=0,/obj/item/clothing/mask/bandana/gold=0,/obj/item/clothing/mask/bandana/green=0,/obj/item/clothing/mask/bandana/red=0,/obj/item/clothing/mask/surgical=0,/obj/item/clothing/accessory/pride/bi=0,/obj/item/clothing/accessory/pride/trans=0,/obj/item/clothing/accessory/pride/ace=0,/obj/item/clothing/accessory/pride/enby=0,/obj/item/clothing/accessory/pride/pan=0,/obj/item/clothing/accessory/pride/lesbian=0,/obj/item/clothing/accessory/pride/intersex=0,/obj/item/clothing/accessory/pride/vore=0)},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"Jr" = (/obj/structure/cryofeed{dir = 4},/turf/simulated/wall/rdshull,/area/vr/powered)
"Js" = (/obj/effect/landmark/virtual_reality{name = "Construction Site"},/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
"Jt" = (/obj/machinery/door/airlock{id_tag = "VR1"; name = "VR Beachhouse 1"},/turf/simulated/floor/wood,/area/vr/powered)
+"Ju" = (/mob/living/simple_mob/humanoid/merc/ranged/sniper{special_attack_max_range = 15},/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
+"Jv" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"Jw" = (/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"Jx" = (/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Jy" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
"Jz" = (/obj/structure/flora/tree/jungle,/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"JA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"JB" = (/turf/unsimulated/wall,/area/vr/powered/cult)
"JC" = (/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"JD" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
"JE" = (/obj/machinery/gear_dispenser/suit/aether,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"JF" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/phoron{amount = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
+"JG" = (/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"JH" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"JI" = (/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/obj/structure/fans/tiny,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
"JJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"JK" = (/obj/structure/sign/signnew/danger,/turf/simulated/wall/r_concrete,/area/vr/powered/dungeon)
"JL" = (/obj/structure/shuttle/window,/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"JM" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain,/obj/item/weapon/pen/chameleon,/obj/item/device/gps/advanced/science,/obj/machinery/button/remote/blast_door{id = "estrella_blast"; name = "remote blast shielding control"; pixel_x = -1; pixel_y = -26},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"JN" = (/turf/simulated/wall/r_wall,/area/vr/powered/armory)
+"JO" = (/obj/effect/decal/cleanable/blood/gibs/xeno/body,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"JP" = (/obj/machinery/light{dir = 8},/obj/machinery/floor_light{anchored = 1},/turf/simulated/floor/wood,/area/vr/powered/bar)
"JQ" = (/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"JR" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"JS" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/armor/alien,/obj/item/mecha_parts/mecha_equipment/crisis_drone/rad,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,/turf/simulated/floor/airless,/area/space)
"JT" = (/turf/simulated/floor/airless,/area/vr/powered/space/sciship)
"JU" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/plating,/area/vr/powered/material)
"JV" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"JW" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel{pixel_y = 11},/obj/item/weapon/surgical/circular_saw/cyborg,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"JX" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/vr/powered)
"JY" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron/cold,/obj/effect/floor_decal/techfloor/orange/corner,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"JZ" = (/obj/structure/lattice,/obj/effect/blocker,/turf/space,/area/space)
"Ka" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/mechfactory)
-"Kb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"Kb" = (/obj/random/trash,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"Kc" = (/obj/structure/plushie/ian{dir = 4},/turf/simulated/floor/gorefloor2,/area/vr/outdoors/powered/cult)
"Kd" = (/obj/structure/simple_door/flock,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"Ke" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/airless,/area/vr/powered)
"Kf" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/conspawn)
+"Kg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/smallbould,/turf/simulated/floor/outdoors/grass/heavy{temperature = 293.15},/area/vr/outdoors/powered)
"Kh" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/floor/airless,/area/vr/outdoors/powered)
"Ki" = (/obj/structure/prop/rock/watersharp,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
+"Kj" = (/obj/structure/table/alien/blue,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/retractor/alien,/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"Kk" = (/obj/effect/floor_decal/techfloor{dir = 8},/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"Kl" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/vr/powered)
"Km" = (/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
"Kn" = (/obj/structure/table/reinforced,/obj/item/device/gps/advanced/science,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"Ko" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
-"Kp" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"Kp" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"Kq" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"Kr" = (/obj/structure/prop/rock/sharp,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
"Ks" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/sunnybush,/turf/unsimulated/wall,/area/vr/outdoors/powered)
+"Kt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/pcarrier,/obj/item/clothing/suit/armor/pcarrier,/obj/item/clothing/suit/armor/pcarrier,/obj/item/clothing/suit/armor/pcarrier,/obj/item/clothing/suit/armor/pcarrier,/obj/item/clothing/suit/armor/pcarrier,/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe,/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe,/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe,/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe,/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe,/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Ku" = (/obj/structure/table/fancyblack,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered)
+"Kv" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/effect/decal/remains,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
+"Kw" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/obj/item/weapon/lipstick/random,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"Kx" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Ky" = (/obj/machinery/door/blast/multi_tile/four_tile_hor_sec{icon_state = "open"; opacity = 0; autoclose = 0; density = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/cult)
"Kz" = (/obj/structure/flora/bboulder1,/obj/structure/flora/bboulder1,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"KA" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/armor/military,/obj/item/mecha_parts/component/gas/reinforced,/obj/item/mecha_parts/mecha_equipment/omni_shield,/obj/item/mecha_parts/mecha_equipment/tool/jetpack,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/turf/simulated/floor/airless,/area/space)
+"KB" = (/turf/simulated/wall/r_wall,/area/vr/outdoors/powered)
+"KC" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/obj/structure/simple_door/wood,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"KD" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/durasteel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"KE" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"KF" = (/obj/structure/cliff/automatic,/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"KG" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
+"KH" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"KI" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"KJ" = (/obj/structure/flora/log1,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"KK" = (/obj/machinery/vending/fishing,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
@@ -1365,6 +1911,7 @@
"KN" = (/obj/machinery/computer/operating{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"KO" = (/obj/structure/closet/walllocker_double/hydrant/east,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"KP" = (/obj/machinery/power/thermoregulator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"KQ" = (/obj/structure/table/woodentable,/obj/item/stack/cable_coil{pixel_y = -1},/obj/item/stack/cable_coil{pixel_y = 2},/obj/item/stack/cable_coil{pixel_y = 5},/turf/simulated/floor/wood,/area/vr/powered/art)
"KR" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
"KS" = (/obj/structure/window/reinforced/survival_pod,/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/mechfactory)
"KT" = (/obj/item/seeds/random,/obj/item/seeds/random,/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/vr/powered)
@@ -1378,6 +1925,10 @@
"Lb" = (/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"Lc" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"Ld" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/closet/walllocker/emerglocker/west,/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
+"Le" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/dungeon)
+"Lf" = (/mob/living/simple_mob/vore/aggressive/lizardman,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"Lg" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"Lh" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered/dungeon)
"Li" = (/mob/living/simple_mob/construct/wraith{dir = 1; ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"Lj" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
"Lk" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
@@ -1395,9 +1946,16 @@
"Lw" = (/mob/living/simple_mob/construct/wraith{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"Lx" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 1},/obj/mecha/combat/durand/old,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"Ly" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/obj/structure/fuel_port{pixel_x = 30},/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"Lz" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/mob/living/simple_mob/vore/aggressive/rat,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
+"LA" = (/obj/item/weapon/weldingtool/largetank,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
+"LB" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
+"LC" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/wmarble,/area/vr/powered/motel)
+"LD" = (/obj/structure/simple_door/wood,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/powered/constore)
"LE" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"LF" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
+"LG" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered/cafe)
"LH" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/machinery/reagentgrinder,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"LI" = (/obj/item/weapon/storage/bag/trash,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"LJ" = (/obj/effect/catwalk_plated/dark,/turf/space,/area/space)
"LK" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/airless,/area/vr/powered)
"LL" = (/obj/machinery/artifact_scanpad,/obj/effect/simple_portal/linked,/obj/effect/map_effect/interval/effect_emitter/sparks,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/mechfactory)
@@ -1407,7 +1965,12 @@
"LP" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"LQ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"LR" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"LS" = (/obj/structure/table/woodentable,/obj/item/weapon/paper/pamphlet,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"LT" = (/obj/machinery/door/airlock/maintenance/medical{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"LU" = (/obj/structure/prop/machine/alien_tank,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"LV" = (/obj/structure/fence/door/opened{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"LW" = (/obj/item/weapon/material/shard/plastitaniumglass,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"LX" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"LY" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"LZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered/conspawn)
"Ma" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/wood,/area/vr/powered/cult)
@@ -1417,10 +1980,17 @@
"Me" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/spline/fancy,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/orange,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Mf" = (/obj/item/weapon/storage/backpack/holding,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Mg" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
+"Mh" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"Mi" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"Mj" = (/turf/simulated/wall/r_wall,/area/vr/powered/constore)
+"Mk" = (/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/vr/powered/dungeon)
+"Ml" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"Mm" = (/turf/unsimulated/wall,/area/vr/powered/dungeon)
"Mn" = (/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/vr/powered/cult)
"Mo" = (/obj/structure/table/marble,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
+"Mp" = (/obj/structure/barricade,/obj/item/tape/police,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"Mq" = (/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/vr/powered)
-"Mr" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"Mr" = (/obj/effect/decal/remains/xeno,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Ms" = (/obj/structure/salvageable/computer,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"Mt" = (/obj/fiftyspawner/uranium,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/machinery/power/port_gen/pacman/super,/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"Mu" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
@@ -1429,16 +1999,26 @@
"Mx" = (/obj/structure/cryofeed{dir = 2},/turf/simulated/wall/rdshull,/area/vr/powered)
"My" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"Mz" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/plasteel{amount = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
+"MA" = (/obj/item/weapon/gun/projectile/automatic/serdy/hunter,/obj/item/ammo_magazine/m762svd,/obj/item/ammo_magazine/m762svd,/obj/item/ammo_magazine/m762svd,/obj/item/ammo_magazine/m762svd,/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"MB" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/powered)
+"MC" = (/obj/effect/simple_portal/linked{portal_id = 70; name = "Fast Travel to Construct"},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"MD" = (/obj/structure/fence/end{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
+"ME" = (/obj/machinery/door/airlock/glass_medical{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered/vet)
"MF" = (/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"MG" = (/obj/item/weapon/spacecash/ewallet{worth = 69000},/obj/structure/table/steel,/obj/item/weapon/spacecash/ewallet{worth = 69000},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"MH" = (/turf/simulated/floor/plating,/area/vr/powered/vendor)
"MI" = (/turf/unsimulated/wall,/area/vr/outdoors/powered)
"MJ" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/obj/structure/table/darkglass,/obj/item/clothing/head/wizard/fake/realistic,/obj/item/weapon/technomancer_core/universal,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
+"MK" = (/obj/machinery/holosign/bar{id = "baropenrp"},/turf/simulated/wall/r_wall,/area/vr/powered/bar)
"ML" = (/obj/structure/cult/talisman,/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"MM" = (/obj/structure/flora/pottedplant/fern,/turf/simulated/floor/wood,/area/vr/powered/art)
+"MN" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"MO" = (/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/prop/statue/phoron{pixel_y = 0; pixel_x = 16},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"MP" = (/obj/item/toy/plushie/susred,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"MQ" = (/mob/living/simple_mob/animal/passive/lizard,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"MR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/fiftyspawner/plasteel,/turf/simulated/floor,/area/vr/powered)
+"MS" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/flora/pottedplant/orientaltree,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
+"MT" = (/obj/structure/table/rack/shelf,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/turf/simulated/floor/wood,/area/vr/powered/art)
"MU" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"MV" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"MW" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
@@ -1448,9 +2028,11 @@
"Na" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/flora/pottedplant/unusual,/obj/structure/table/bench/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"Nb" = (/obj/structure/flora/ausbushes/palebush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Nc" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"Nd" = (/obj/structure/railing/grey{pixel_y = 0; dir = 8},/obj/structure/bed/chair/sofa/bench/marble{pixel_y = 0; dir = 4},/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"Ne" = (/obj/structure/bed/alien,/obj/structure/curtain/open/privacy,/obj/item/weapon/bedsheet/medical,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"Nf" = (/obj/structure/table/marble,/obj/item/weapon/material/knife/hook,/turf/simulated/floor,/area/vr/powered)
"Ng" = (/turf/simulated/mineral/alt{temperature = 293.15},/area/vr/outdoors/powered/cult)
+"Nh" = (/turf/simulated/wall/r_wall,/area/vr/powered/motel)
"Ni" = (/obj/machinery/vending/engivend{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
"Nj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"Nk" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31},/turf/simulated/floor/plating,/area/vr/powered/material)
@@ -1460,26 +2042,41 @@
"No" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Np" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"Nq" = (/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/outdoors/powered)
+"Nr" = (/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Ns" = (/obj/machinery/vending/wardrobe/robodrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"Nt" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/odysseus/murdysseus,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
"Nu" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/closet/walllocker_double/hydrant/east,/obj/structure/closet/walllocker/emerglocker/south,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
-"Ny" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
+"Nv" = (/mob/living/simple_mob/animal/giant_spider/lurker,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"Nw" = (/obj/machinery/light/bigfloorlamp{light_range = 10},/turf/simulated/floor/outdoors/sidewalk/slab{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"Nx" = (/obj/structure/table/marble,/obj/structure/sink/countertop{dir = 2; pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"Ny" = (/obj/machinery/power/smes/buildable/hybrid,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"Nz" = (/obj/machinery/disperser/front{dir = 1},/turf/simulated/floor/airless,/area/vr/powered/space/sciship)
+"NA" = (/obj/machinery/light/poi,/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"NB" = (/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"NC" = (/obj/structure/table/marble,/obj/item/weapon/storage/firstaid/clotting{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/clotting,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"ND" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/turf/simulated/floor/cult,/area/vr/powered/cult)
"NE" = (/obj/structure/table/fancyblack,/obj/item/weapon/bikehorn/tinytether{pixel_y = 5; pixel_x = 2},/obj/item/weapon/bikehorn/tinytether{pixel_y = 11; pixel_x = 8},/obj/item/weapon/paperplane{dir = 4; pixel_y = 2; pixel_x = -9},/turf/simulated/floor/wood,/area/vr/powered/cult)
"NF" = (/obj/structure/salvageable/machine,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"NG" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/vr/powered/space/whiteship)
+"NH" = (/obj/effect/decal/remains,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
+"NI" = (/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"NJ" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/vr/powered)
+"NK" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/cookie{pixel_y = 3},/obj/item/weapon/reagent_containers/food/snacks/cookie{pixel_y = 6},/obj/machinery/light{dir = 1},/obj/item/weapon/reagent_containers/food/snacks/cookie{pixel_y = 3},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"NL" = (/obj/structure/cliff/automatic/corner{dir = 9},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
+"NM" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = -5},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 7},/obj/item/weapon/pen/multi{pixel_x = -6; pixel_y = 1},/turf/simulated/floor/wood,/area/vr/powered/art)
"NN" = (/obj/structure/flora/smallbould,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"NO" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"NP" = (/obj/effect/floor_decal/corner/red/diagonal,/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"NQ" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gibup1_flesh"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"NR" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"NS" = (/mob/living/simple_mob/construct/juggernaut/behemoth{ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"NT" = (/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
"NU" = (/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"NV" = (/obj/machinery/door/airlock/angled_tgmc/wide/medical,/turf/simulated/shuttle/plating,/area/vr/powered)
"NW" = (/obj/structure/salvageable/server,/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
+"NX" = (/obj/machinery/vending/wallmed1/public{pixel_y = 32},/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"NY" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/adv{pixel_y = 5},/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"NZ" = (/turf/simulated/floor/plating,/area/vr/powered/vet)
"Oa" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/random/junk,/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
"Ob" = (/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"Oc" = (/obj/random/mob/fish,/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/powered/rocks)
@@ -1494,80 +2091,117 @@
"Ol" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/whiteship)
"Om" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"On" = (/mob/living/simple_mob/construct/harvester{ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
+"Oo" = (/turf/unsimulated/wall/dark,/area/vr/powered/rocks)
"Op" = (/obj/item/weapon/coin/gold,/obj/item/stack/material/gold,/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"Oq" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Or" = (/turf/simulated/wall/r_wall,/area/vr/powered/bluebase)
"Os" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"Ot" = (/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/structure/table/marble,/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"Ou" = (/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered)
+"Ov" = (/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/wood,/area/vr/powered/shop)
"Ow" = (/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered/rocks)
+"Ox" = (/turf/simulated/floor/snow,/area/vr/outdoors/powered)
"Oy" = (/turf/simulated/floor/airless,/area/vr/powered)
"Oz" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"OA" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"OB" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"OC" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/diamond,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"OD" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"OE" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult,/area/vr/powered/cult)
"OF" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/accessory/poncho/red,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"OG" = (/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"OH" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/uranium,/obj/item/stack/material/phoron{amount = 5; pixel_x = -1; pixel_y = -3},/obj/item/stack/material/gold{amount = 5},/obj/item/stack/material/diamond,/obj/item/stack/material/silver{amount = 5; pixel_x = 2; pixel_y = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"OI" = (/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"OJ" = (/obj/effect/floor_decal/rust,/obj/item/weapon/bone/arm{pixel_x = 9},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"OK" = (/mob/living/simple_mob/construct/wraith{ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered/cult)
"OL" = (/obj/item/weapon/storage/belt/soulstone/full,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"OM" = (/obj/structure/railing/grey{pixel_y = 0; dir = 4},/obj/structure/prop/statue/pillar,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
"ON" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
+"OO" = (/obj/item/weapon/stool/padded{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/bar)
"OP" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/shuttle/plating,/area/vr/powered/cult)
"OQ" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"OR" = (/obj/fiftyspawner/gold,/obj/item/weapon/coin/diamond,/obj/item/instrument/violin/golden,/turf/simulated/floor/flock,/area/vr/powered/rocks)
+"OS" = (/obj/effect/wingrille_spawn/reinforced_phoron,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"OT" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "mgibbl1"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"OU" = (/obj/item/weapon/bedsheet/piratedouble,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/vr/powered/space/mechfactory)
"OV" = (/obj/machinery/vending/wardrobe/scidrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"OW" = (/obj/vehicle/boat/dragon/sifwood{dir = 8},/obj/structure/lattice,/turf/space,/area/space)
"OX" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"OY" = (/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"OZ" = (/mob/living/simple_mob/animal/giant_spider/tunneler/fast,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"Pa" = (/obj/machinery/autolathe{hacked = 1; name = "military autolathe"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"Pb" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"Pc" = (/obj/effect/simple_portal/linked,/obj/effect/floor_decal/spline/fancy{icon_state = "spline_fancy_full"},/turf/simulated/floor/lava/harmless,/area/vr/powered/cult)
"Pd" = (/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"Pe" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
"Pf" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Pg" = (/obj/structure/table/hardwoodtable,/obj/random/maintenance/morestuff,/turf/simulated/floor/wood,/area/vr/powered/shop)
"Ph" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"Pi" = (/turf/simulated/wall,/area/vr/powered/bar)
+"Pj" = (/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Pk" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"Pl" = (/obj/machinery/vending/security{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"Pm" = (/obj/machinery/chemical_analyzer,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"Pn" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
"Po" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"Pp" = (/obj/structure/fence/corner{dir = 2},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Pq" = (/obj/machinery/door/airlock/angled_tgmc/wide/dropship2,/turf/simulated/shuttle/plating,/area/vr/powered)
+"Pr" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"Ps" = (/obj/machinery/disperser/front{dir = 1},/turf/space,/area/space)
"Pt" = (/turf/simulated/floor/airless,/area/vr/outdoors/powered)
+"Pu" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/research,/turf/simulated/floor/wood,/area/vr/powered/shop)
+"Pv" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/vr/powered/art)
"Pw" = (/turf/simulated/shuttle/floor/darkred,/area/vr/powered/space/sciship)
+"Px" = (/obj/machinery/chem_master,/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"Py" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"Pz" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"PA" = (/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
+"PB" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered/dungeon)
+"PC" = (/obj/structure/bed/chair/office/dark{pixel_y = 0; dir = 4},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"PD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
+"PE" = (/obj/structure/simple_door/wood,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
"PF" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
"PG" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"PH" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 9},/obj/item/weapon/book/tome/imbued{pixel_y = 9},/obj/item/weapon/book/tome/imbued{pixel_y = 6},/obj/item/weapon/book/tome/imbued{pixel_y = 3},/obj/item/weapon/book/tome/imbued{pixel_y = 0},/obj/item/weapon/book/tome/imbued{pixel_y = 0},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"PI" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/obj/effect/decal/cleanable/blood,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"PJ" = (/obj/item/clothing/accessory/fluff/zeta_blackwell_1,/turf/simulated/floor/cult,/area/vr/powered/cult)
"PK" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/airless,/area/vr/powered)
+"PL" = (/obj/machinery/light/small,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
+"PM" = (/obj/structure/table/darkglass,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"PN" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
"PO" = (/obj/structure/bed/chair/oldsofa{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor/wood,/area/vr/powered/cult)
"PP" = (/obj/effect/landmark/virtual_reality{name = "Abandoned Mech Factory"},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"PQ" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/cosmos,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
"PR" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
"PS" = (/obj/structure/closet/emcloset,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
"PT" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/mechfactory)
"PU" = (/obj/structure/sign/department/rnd{pixel_y = 32},/obj/structure/table/steel_reinforced,/turf/simulated/shuttle/floor/yellow,/area/vr/powered/space/sciship)
"PV" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/freezer,/area/vr/powered)
+"PW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 8},/obj/structure/table/bench/steel,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"PX" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"PY" = (/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
"PZ" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/mineral/sif,/area/vr/outdoors/powered)
-"Qa" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"Qa" = (/turf/simulated/wall/titanium,/area/vr/powered/vet)
+"Qb" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/table/standard,/obj/item/clothing/accessory/stethoscope,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"Qc" = (/obj/effect/overlay/palmtree_l,/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"Qd" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/airless,/area/vr/powered)
"Qe" = (/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
+"Qf" = (/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/rocks)
"Qg" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
+"Qh" = (/obj/machinery/chemical_dispenser/bar_soft/full{pixel_y = 8; dir = 2},/obj/structure/table/marble,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Qi" = (/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/cult)
"Qj" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"Qk" = (/obj/structure/closet,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
+"Ql" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/material/knife/machete/deluxe,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"Qm" = (/turf/simulated/floor/water{temperature = 293.15},/area/vr/outdoors/powered)
"Qn" = (/obj/structure/table/darkglass,/obj/item/device/defib_kit/loaded,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
+"Qo" = (/turf/simulated/floor/wood,/area/vr/powered/art)
"Qp" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"Qq" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/vr/powered)
+"Qr" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Qs" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
+"Qt" = (/obj/machinery/light{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/material/fishing_rod/modern/built,/obj/machinery/door/window/southright{req_one_access = list(150)},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/gunshop)
+"Qu" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"Qv" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Qw" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"Qx" = (/turf/simulated/floor/tiled/techfloor,/area/vr/powered/cult)
@@ -1576,15 +2210,22 @@
"QA" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/mining,/obj/structure/sign/department/shield{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"QB" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
"QC" = (/obj/structure/table/bench/marble,/obj/structure/flora/pottedplant/dead{pixel_y = 7},/obj/structure/window/reinforced/polarized{id = "h-master"},/turf/simulated/floor/wood,/area/vr/powered)
+"QD" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/bioregen,/obj/item/weapon/autopsy_scanner,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"QE" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"QF" = (/obj/machinery/door/airlock/alien{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"QG" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered)
+"QH" = (/obj/structure/simple_door/wood,/obj/item/tape/police,/obj/structure/barricade,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
+"QI" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/red,/turf/simulated/floor/carpet/blue,/area/vr/powered/motel)
"QJ" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/item/clothing/under/pants/track,/obj/item/clothing/head/ushanka,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"QK" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"QL" = (/obj/structure/cliff/automatic{dir = 4},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"QM" = (/turf/simulated/shuttle/wall/flock,/area/vr/powered/rocks)
"QN" = (/obj/structure/flora/rocks2,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"QO" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/twohanded/fireaxe,/obj/item/weapon/material/twohanded/fireaxe,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"QP" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
-"QQ" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/manned{faction = "syndicate"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
+"QQ" = (/obj/machinery/vending/loadout/overwear{prices = list(/obj/item/clothing/suit/storage/apron=0,/obj/item/clothing/suit/storage/flannel/aqua=0,/obj/item/clothing/suit/storage/toggle/bomber=0,/obj/item/clothing/suit/storage/bomber/alt=0,/obj/item/clothing/suit/storage/flannel/brown=0,/obj/item/clothing/suit/storage/toggle/cardigan=0,/obj/item/clothing/accessory/poncho/roles/cloak/custom=0,/obj/item/clothing/suit/storage/duster=0,/obj/item/clothing/suit/storage/toggle/denim_jacket=0,/obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen=0,/obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless=0,/obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless=0,/obj/item/clothing/suit/storage/fluff/gntop=0,/obj/item/clothing/suit/greatcoat=0,/obj/item/clothing/suit/storage/flannel=0,/obj/item/clothing/suit/storage/greyjacket=0,/obj/item/clothing/suit/storage/hazardvest=0,/obj/item/clothing/suit/storage/toggle/hoodie/black=0,/obj/item/clothing/suit/storage/toggle/hoodie/red=0,/obj/item/clothing/suit/storage/toggle/hoodie/blue=0,/obj/item/clothing/suit/storage/toggle/hoodie/green=0,/obj/item/clothing/suit/storage/toggle/hoodie/orange=0,/obj/item/clothing/suit/storage/toggle/hoodie/yellow=0,/obj/item/clothing/suit/storage/toggle/hoodie/cti=0,/obj/item/clothing/suit/storage/toggle/hoodie/mu=0,/obj/item/clothing/suit/storage/toggle/hoodie/nt=0,/obj/item/clothing/suit/storage/toggle/hoodie/smw=0,/obj/item/clothing/suit/storage/toggle/hoodie/nrti=0,/obj/item/clothing/suit/storage/fluff/jacket/field=0,/obj/item/clothing/suit/storage/fluff/jacket/air_cavalry=0,/obj/item/clothing/suit/storage/fluff/jacket/air_force=0,/obj/item/clothing/suit/storage/fluff/jacket/navy=0,/obj/item/clothing/suit/storage/fluff/jacket/special_forces=0,/obj/item/clothing/suit/kamishimo=0,/obj/item/clothing/suit/kimono=0,/obj/item/clothing/suit/storage/toggle/labcoat=0,/obj/item/clothing/suit/storage/toggle/labcoat/blue=0,/obj/item/clothing/suit/storage/toggle/labcoat/blue_edge=0,/obj/item/clothing/suit/storage/toggle/labcoat/green=0,/obj/item/clothing/suit/storage/toggle/labcoat/orange=0,/obj/item/clothing/suit/storage/toggle/labcoat/pink=0,/obj/item/clothing/suit/storage/toggle/labcoat/red=0,/obj/item/clothing/suit/storage/toggle/labcoat/yellow=0,/obj/item/clothing/suit/storage/toggle/labcoat/old=0,/obj/item/clothing/suit/leathercoat=0,/obj/item/clothing/suit/storage/toggle/leather_jacket=0,/obj/item/clothing/suit/storage/leather_jacket_alt=0,/obj/item/clothing/suit/storage/toggle/brown_jacket=0,/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen=0,/obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen=0,/obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless=0,/obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless=0,/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless=0,/obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless=0,/obj/item/clothing/suit/storage/miljacket=0,/obj/item/clothing/suit/storage/miljacket/alt=0,/obj/item/clothing/suit/storage/miljacket/green=0,/obj/item/clothing/suit/storage/apron/overalls=0,/obj/item/clothing/suit/storage/toggle/peacoat=0,/obj/item/clothing/accessory/poncho=0,/obj/item/clothing/accessory/poncho/green=0,/obj/item/clothing/accessory/poncho/red=0,/obj/item/clothing/accessory/poncho/purple=0,/obj/item/clothing/accessory/poncho/blue=0,/obj/item/clothing/suit/jacket/puffer=0,/obj/item/clothing/suit/jacket/puffer/vest=0,/obj/item/clothing/suit/storage/flannel/red=0,/obj/item/clothing/suit/unathi/robe=0,/obj/item/clothing/suit/storage/toggle/internalaffairs=0,/obj/item/clothing/suit/storage/toggle/lawyer/bluejacket=0,/obj/item/clothing/suit/storage/toggle/lawyer/purpjacket=0,/obj/item/clothing/suit/suspenders=0,/obj/item/clothing/suit/storage/toggle/track=0,/obj/item/clothing/suit/storage/toggle/track/blue=0,/obj/item/clothing/suit/storage/toggle/track/green=0,/obj/item/clothing/suit/storage/toggle/track/red=0,/obj/item/clothing/suit/storage/toggle/track/white=0,/obj/item/clothing/suit/storage/trench=0,/obj/item/clothing/suit/storage/trench/grey=0,/obj/item/clothing/suit/varsity=0,/obj/item/clothing/suit/varsity/red=0,/obj/item/clothing/suit/varsity/purple=0,/obj/item/clothing/suit/varsity/green=0,/obj/item/clothing/suit/varsity/blue=0,/obj/item/clothing/suit/varsity/brown=0,/obj/item/clothing/suit/storage/hooded/wintercoat=0,/obj/item/clothing/suit/storage/hooded/wintercoat/aformal=0,/obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey=0,/obj/item/clothing/suit/storage/puffyred=0,/obj/item/clothing/suit/storage/puffypurple=0,/obj/item/clothing/suit/storage/puffyblue=0)},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"QR" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered)
+"QS" = (/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"QT" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "mfloor6"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"QU" = (/obj/structure/bed/chair/oldsofa{dir = 4},/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered)
"QV" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
@@ -1593,46 +2234,71 @@
"QY" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"QZ" = (/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"Ra" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Rb" = (/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/wood,/area/vr/powered/shop)
"Rc" = (/obj/machinery/light/small{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/cosmos,/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,/turf/simulated/floor/wood,/area/vr/powered)
+"Rd" = (/obj/structure/table/hardwoodtable,/obj/item/device/camera,/turf/simulated/floor/wood,/area/vr/powered/shop)
"Re" = (/obj/mecha/combat/fighter/gunpod/loaded{dir = 8},/turf/space,/area/space)
"Rf" = (/obj/item/weapon/storage/box/wormcan,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"Rg" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/closet/wardrobe/medic_white,/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"Rh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/huge,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
+"Ri" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/glasses/square{pixel_x = 9; pixel_y = 1},/obj/item/weapon/storage/box/glasses/rocks{pixel_y = 1; pixel_x = -6},/obj/item/weapon/storage/box/glasses/pint{pixel_y = 11; pixel_x = -6},/obj/item/weapon/storage/box/glasses/meta/metapint{pixel_y = 11; pixel_x = 9},/turf/simulated/floor/wood,/area/vr/powered/bar)
"Rj" = (/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered/cult)
"Rk" = (/turf/simulated/floor/tiled/white,/area/vr/powered)
+"Rl" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Rm" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"Rn" = (/mob/living/simple_mob/vore/alienanimals/catslug/custom/spaceslug/syndislug,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"Ro" = (/obj/effect/decal/remains/ribcage,/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"Rp" = (/obj/structure/table/glass,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"Rq" = (/obj/machinery/meter,/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/whiteship)
+"Rr" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/rust,/obj/item/weapon/bone/skull{pixel_y = -11; pixel_x = 5},/obj/item/clothing/head/that{pixel_y = -3; pixel_x = 6},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"Rs" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
+"Rt" = (/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = -6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 0},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -4; pixel_y = -5},/obj/item/paint_brush{pixel_x = -6; pixel_y = -1},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered/art)
"Ru" = (/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/vr/powered)
"Rv" = (/obj/mecha/combat/fighter/pinnace{dir = 8},/turf/space,/area/space)
"Rw" = (/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -30},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
+"Rx" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/closet/debug,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"Ry" = (/turf/simulated/shuttle/plating,/area/vr/powered)
"Rz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
+"RA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"RB" = (/obj/structure/closet,/obj/item/clothing/suit/storage/apron/white,/obj/item/clothing/suit/storage/apron/white,/turf/simulated/floor/plating,/area/vr/powered/cafe)
"RC" = (/obj/structure/cult/talisman,/turf/simulated/floor/wood,/area/vr/powered/cult)
"RD" = (/obj/item/weapon/stool/padded,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
"RE" = (/obj/structure/table/marble,/obj/item/clothing/suit/storage/apron/white,/turf/simulated/floor/tiled/white,/area/vr/powered)
"RF" = (/obj/effect/blocker,/turf/space,/area/space)
+"RG" = (/obj/structure/table/rack/shelf/steel,/obj/random/cigarettes,/obj/random/cigarettes,/obj/random/cigarettes,/turf/simulated/floor/tiled,/area/vr/powered/constore)
"RH" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/engivend{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"RI" = (/turf/simulated/floor/tiled,/area/vr/powered/vet)
"RJ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building1)
"RK" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/redgrid,/area/vr/powered)
+"RL" = (/obj/machinery/light/small{dir = 1},/mob/living/simple_mob/vore/aggressive/rat,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"RM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"RN" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
+"RO" = (/obj/structure/railing,/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"RP" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"RQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband/nofail,/turf/simulated/floor,/area/vr/powered)
"RR" = (/obj/structure/closet/walllocker_double/hydrant/east,/obj/random/contraband/nofail,/obj/random/contraband/nofail,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
"RS" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"RT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"RU" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"RV" = (/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
"RW" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"RX" = (/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
+"RY" = (/obj/effect/floor_decal/rust,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/button/remote/blast_door{id = "vrsewers1"; pixel_x = 23; pixel_y = -6},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"RZ" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/gas/reinforced,/obj/item/mecha_parts/mecha_equipment/hardpoint_actuator,/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/rigged,/obj/item/mecha_parts/mecha_equipment/wormhole_generator,/turf/simulated/floor/airless,/area/vr/powered/space/mechfactory)
+"Sa" = (/obj/structure/table/woodentable,/obj/item/device/camera,/turf/simulated/floor/wood,/area/vr/powered/art)
"Sb" = (/obj/structure/table/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"Sc" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
+"Sd" = (/obj/structure/railing/grey{pixel_y = 0; dir = 4},/obj/structure/bed/chair/sofa/bench/marble{pixel_y = 0; dir = 8},/turf/simulated/floor/concrete{outdoors = 0},/area/vr/outdoors/powered)
+"Se" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/reagent_containers/food/drinks/bottle/cola{pixel_y = 0; pixel_x = 5},/obj/item/weapon/reagent_containers/food/drinks/bottle/cola{pixel_y = 0; pixel_x = -9},/obj/item/weapon/reagent_containers/food/drinks/bottle/cola{pixel_y = 0; pixel_x = -2},/turf/simulated/floor/tiled,/area/vr/powered/constore)
"Sf" = (/obj/machinery/vending/wardrobe/genedrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"Sg" = (/obj/structure/easel,/obj/item/canvas/twentyfour_twentyfour,/turf/simulated/floor/wood,/area/vr/powered/art)
"Sh" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered)
+"Si" = (/obj/structure/table/alien/blue,/obj/item/weapon/reagent_containers/glass/beaker/noreact{pixel_x = -6},/obj/item/weapon/reagent_containers/glass/beaker/noreact,/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"Sj" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Sk" = (/obj/machinery/vending/wardrobe/cargodrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"Sl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/department/robo{pixel_y = 32},/obj/machinery/mecha_part_fabricator/pros{req_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
+"Sm" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"Sn" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/blood,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/dungeon)
"So" = (/obj/machinery/pointdefense,/turf/simulated/floor/airless,/area/vr/powered)
"Sp" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered/cult)
"Sq" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/airless,/area/vr/outdoors/powered)
@@ -1643,6 +2309,7 @@
"Sv" = (/obj/structure/sign/warning/fire,/turf/simulated/wall/cult,/area/vr/powered/cult)
"Sw" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"Sx" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"Sy" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/shop)
"Sz" = (/obj/machinery/gear_dispenser/suit/autolok,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"SA" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/item/device/defib_kit/loaded,/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
"SB" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/knife/machete,/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
@@ -1659,36 +2326,48 @@
"SN" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"SO" = (/obj/structure/table/fancyblack,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/turf/simulated/floor/wood,/area/vr/powered)
"SP" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/stack/material/durasteel{material = 50; amount = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/diamond{material = 15},/obj/item/stack/material/gold{material = 25},/obj/item/stack/material/lead{material = 25},/obj/item/stack/material/plastic{material = 50; amount = 50},/obj/item/stack/material/plastic{material = 50},/obj/item/stack/material/platinum{matter = 25},/obj/item/stack/material/silver{material = 25},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/uranium{material = 25},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/clothing/head/welding/demon,/obj/item/clothing/head/welding/knight,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/obj/item/weapon/cell/super,/obj/item/weapon/cell/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
+"SQ" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper/crumpled{pixel_y = -3; pixel_x = -4},/obj/item/weapon/reagent_containers/food/condiment/cornoil{pixel_y = 0; pixel_x = 5},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"SR" = (/obj/structure/sign/department/conference_room,/turf/simulated/wall/r_concrete,/area/vr/powered/dungeon)
"SS" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"ST" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/reishicup,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"SU" = (/obj/structure/table/rack/shelf/steel,/obj/random/contraband/nofail,/obj/random/contraband/nofail,/obj/random/maintenance/morestuff,/turf/simulated/floor/wood,/area/vr/powered/shop)
"SV" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"SW" = (/obj/item/weapon/fossil/skull,/turf/simulated/floor/cult,/area/vr/powered/cult)
"SX" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"SY" = (/obj/structure/prop/machine/green_egg,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"SZ" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_outer"; locked = 1; name = "External Access"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"Ta" = (/obj/effect/landmark/virtual_reality{name = "Sci Ship"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
+"Tb" = (/obj/structure/bed/roller,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Tc" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/cult)
"Td" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/wood,/area/vr/powered)
"Te" = (/turf/simulated/mineral/sif,/area/vr/outdoors/powered/lava)
"Tf" = (/obj/structure/toilet{pixel_y = 12},/turf/simulated/floor/tiled/freezer,/area/vr/powered/space/sciship)
+"Tg" = (/obj/machinery/light/small,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/rocks)
"Th" = (/obj/structure/window/reinforced/tinted/frosted{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered)
"Ti" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"Tj" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/floor/plating,/area/vr/powered/space/whiteship)
"Tk" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"Tl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/concrete{outdoors = 0},/area/vr/powered/dungeon)
"Tm" = (/obj/structure/fans/hardlight/colorable{color = "red"},/turf/space,/area/space)
+"Tn" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/mineral/ignore_oregen,/area/vr/powered/dungeon)
"To" = (/obj/structure/table/steel_reinforced,/obj/item/device/perfect_tele,/obj/item/device/perfect_tele,/obj/item/device/perfect_tele,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
"Tp" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chipplate{pixel_y = -7},/obj/item/weapon/reagent_containers/food/snacks/donerkebab{pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
"Tq" = (/obj/screen/alert/highpressure,/turf/space,/area/space)
+"Tr" = (/obj/structure/bed/chair/wood{dir = 1; pixel_y = 0},/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Ts" = (/turf/simulated/floor/carpet,/area/vr/powered/cult)
+"Tt" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
+"Tu" = (/obj/structure/table/woodentable,/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/turf/simulated/floor/wood,/area/vr/powered/bar)
"Tv" = (/obj/effect/catwalk_plated/dark,/turf/space,/area/vr/powered)
"Tw" = (/obj/structure/bed/double/padded,/turf/simulated/floor/wood/sif/broken,/area/vr/powered/space/mechfactory)
"Tx" = (/obj/effect/decal/remains/unathi,/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"Ty" = (/obj/structure/table/fancyblack,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/obj/random/cigarettes,/turf/simulated/floor/wood,/area/vr/powered)
+"Tz" = (/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"TA" = (/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1; temperature = 293.15},/area/vr/outdoors/powered)
"TB" = (/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/whiteship)
"TC" = (/obj/structure/table/darkglass,/obj/item/clothing/gloves/fluff/techpriestgloves,/obj/item/clothing/head/hood/techpriest,/obj/item/clothing/shoes/boots/jackboots/fluff/techpriestboots,/obj/item/clothing/under/fluff/techpriestunder,/obj/item/clothing/suit/storage/hooded/techpriest,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered/cult)
"TD" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"TE" = (/obj/structure/outcrop/phoron,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
+"TF" = (/obj/structure/table/alien/blue,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"TG" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"TH" = (/obj/item/weapon/coin/gold,/obj/item/clothing/ears/earring/dangle/gold,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"TI" = (/obj/machinery/mech_recharger,/obj/mecha/combat/gygax/old,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
@@ -1696,19 +2375,33 @@
"TK" = (/obj/structure/closet/cabinet,/obj/item/weapon/storage/wallet/random,/obj/item/weapon/towel/random,/obj/item/weapon/melee/umbrella/random,/obj/random/carp_plushie,/obj/random/curseditem,/obj/random/junk,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vr/powered)
"TL" = (/turf/simulated/wall/r_wall,/area/vr/powered/building2)
"TM" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"TN" = (/obj/structure/closet/crate/trashcart,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"TO" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"TP" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/snackplanet/moon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"TQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/holofloor/carpet,/area/vr/powered/cult)
+"TR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/sidewalk/side{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"TS" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"TT" = (/obj/structure/prop/rock/small/wateralt,/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/outdoors/powered)
+"TU" = (/obj/effect/simple_portal/linked{portal_id = 71; name = "Fast Travel to City"},/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"TV" = (/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered/lava)
"TW" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/jcloset,/obj/item/weapon/mop,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"TX" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/material/fishing_rod/modern/strong,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/gunshop)
+"TY" = (/obj/structure/reagent_dispensers/fueltank/barrel/two,/turf/simulated/floor/tiled,/area/vr/powered/nuke)
"TZ" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"Ua" = (/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/powered/dungeon)
+"Ub" = (/obj/machinery/light,/obj/item/weapon/beartrap/hunting{anchored = 1; deployed = 1; icon_state = "beartrap1"},/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
+"Uc" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
+"Ud" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/vr/powered/bar)
"Ue" = (/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"Uf" = (/obj/effect/simple_portal/linked{portal_id = 70; name = "Fast Travel to City"},/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
+"Ug" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Uh" = (/obj/structure/table/reinforced,/obj/item/weapon/stock_parts/scanning_module/adv{pixel_x = 5; pixel_y = 6},/obj/item/weapon/stock_parts/scanning_module/adv{pixel_x = 5; pixel_y = 6},/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/matter_bin/adv,/obj/item/weapon/stock_parts/matter_bin/adv,/obj/item/weapon/stock_parts/manipulator/hyper,/obj/item/weapon/stock_parts/manipulator/hyper,/obj/item/weapon/stock_parts/capacitor/adv,/obj/item/weapon/stock_parts/capacitor/adv,/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
+"Ui" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/table/alien/blue,/obj/item/device/healthanalyzer/phasic,/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"Uj" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/condimentbottles,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/structure/curtain/open/bed,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/tiled/white,/area/vr/powered)
"Uk" = (/obj/machinery/telecomms/allinone,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"Ul" = (/obj/effect/zone_divider,/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1; temperature = 293.15},/area/vr/outdoors/powered)
"Um" = (/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
+"Un" = (/obj/effect/floor_decal/rust,/obj/structure/simple_door/wood,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"Uo" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/sciship)
"Up" = (/obj/machinery/door/airlock/glass_centcom{name = "Starboard Cannon"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
"Uq" = (/obj/structure/table/steel_reinforced,/obj/item/device/bodysnatcher,/obj/item/device/bodysnatcher,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/building2)
@@ -1717,6 +2410,7 @@
"Ut" = (/obj/structure/table/marble,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered)
"Uu" = (/mob/living/simple_mob/vore/bigdragon,/obj/item/ammo_casing/a145,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
"Uv" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered/space/whiteship)
+"Uw" = (/obj/structure/barricade,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"Ux" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/poi{dir = 8},/obj/structure/closet/walllocker/emerglocker/west,/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
"Uy" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/vr/powered)
"Uz" = (/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered/cult)
@@ -1724,24 +2418,36 @@
"UB" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/durand/old,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/mechfactory)
"UC" = (/obj/effect/landmark/virtual_reality{name = "White Ship"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"UD" = (/obj/machinery/vending/tool{emagged = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"UE" = (/obj/machinery/light{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"UF" = (/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/outdoors/powered)
-"UG" = (/obj/machinery/power/smes/buildable/hybrid,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"UG" = (/obj/machinery/power/smes/buildable/hybrid,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
+"UH" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered/dungeon)
"UI" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/shuttle/plating,/area/vr/powered/space/whiteship)
"UJ" = (/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered/cult)
"UK" = (/turf/simulated/wall/r_wall,/area/vr/powered/vendor)
"UL" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/coin/diamond,/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered/space/whiteship)
+"UM" = (/mob/living/simple_mob/mobs_monsters/clowns/big/c_shift/chlown,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/vr/powered/dungeon)
+"UN" = (/obj/machinery/light/bigfloorlamp{light_range = 10},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"UO" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
+"UP" = (/obj/structure/table/hardwoodtable,/obj/random/contraband/nofail,/turf/simulated/floor/wood,/area/vr/powered/shop)
"UQ" = (/obj/structure/fence/corner{dir = 8},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"UR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"US" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
+"UT" = (/obj/structure/railing,/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
"UU" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
-"UW" = (/obj/structure/flora/ausbushes/ywflowers,/obj/effect/simple_portal/linked{portal_id = 69; name = "Fast Travel to Beachhouses"},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"UV" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"UW" = (/obj/structure/flora/ausbushes/ywflowers,/obj/effect/simple_portal/linked{portal_id = 69; name = "Fast Travel to Construct"},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"UX" = (/obj/structure/closet/cabinet,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/toolbox,/obj/random/toolbox,/turf/simulated/floor/wood,/area/vr/powered)
+"UY" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"UZ" = (/turf/simulated/floor/wood{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"Va" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"; density = 0; opacity = 0},/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"Vb" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
"Vc" = (/obj/effect/floor_decal/plaque{pixel_y = 32},/obj/effect/step_trigger/message{message = "Example text"; once = 0},/turf/simulated/floor/bronze,/area/vr/powered/cult)
+"Vd" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_y = -1; pixel_x = 9},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_y = -1; pixel_x = -6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_y = -1; pixel_x = -1},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_y = -1; pixel_x = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/vr/powered/constore)
+"Ve" = (/obj/structure/table/woodentable,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"Vf" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"Vg" = (/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"Vh" = (/turf/simulated/floor/carpet,/area/vr/powered/art)
"Vi" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Vj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/gear_dispenser/suit/autolok,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"Vk" = (/mob/living/simple_mob/construct/juggernaut/behemoth{dir = 1; ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
@@ -1750,6 +2456,8 @@
"Vn" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/cryofeed{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"Vo" = (/obj/structure/table/marble,/obj/item/weapon/fossil/skull{anchored = 1; pixel_y = -2},/obj/effect/catwalk_plated/dark,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/lava,/area/vr/powered/cult)
"Vp" = (/obj/machinery/recharge_station,/obj/machinery/door/window/survival_pod{opacity = 1},/turf/simulated/shuttle/floor/black,/area/vr/powered/cult)
+"Vq" = (/obj/item/trash/bowl,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
+"Vr" = (/obj/machinery/light,/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"Vs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/suspension_gen,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"Vt" = (/obj/structure/table/marble,/turf/simulated/floor/redgrid/off,/area/vr/powered/cult)
"Vu" = (/obj/machinery/vending/food,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered)
@@ -1757,13 +2465,21 @@
"Vw" = (/obj/machinery/disperser/middle{dir = 1},/turf/simulated/wall/rdshull,/area/vr/powered)
"Vx" = (/obj/structure/flora/lily2,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
"Vy" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
-"Vz" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/obj/machinery/recharger/wallcharger{pixel_x = 34},/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
+"Vz" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/shuttle/floor/darkred,/area/vr/powered/armory)
"VA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/material)
+"VB" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
+"VC" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/vore/aggressive/lizardman,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"VD" = (/obj/structure/table/rack,/obj/item/weapon/material/knife/ritual,/obj/structure/curtain/open/bed,/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/under/suit_jacket/navy,/obj/item/clothing/head/soft/solgov/veteranhat,/turf/simulated/floor/wood,/area/vr/powered)
+"VE" = (/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"VF" = (/obj/screen/alert/highpressure,/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered/space/whiteship)
+"VG" = (/obj/structure/cliff/automatic/corner,/turf/simulated/floor/water/indoors{temperature = 293.15},/area/vr/powered/dungeon)
"VH" = (/obj/machinery/door/airlock/glass_centcom{name = "Starboard Wing Atmos"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/sciship)
"VI" = (/obj/structure/railing,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"VJ" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/techfloor,/obj/machinery/door/airlock/alien{name = "Medical"; req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"VK" = (/obj/effect/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled/white,/area/vr/powered/dungeon)
"VL" = (/obj/mecha/combat/fighter/gunpod/recon{dir = 8},/turf/space,/area/space)
+"VM" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"VN" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/vr/powered/art)
"VO" = (/obj/structure/kitchenspike,/turf/simulated/floor,/area/vr/powered)
"VP" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
"VQ" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/syndicate/powertools{pixel_y = 9},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
@@ -1774,6 +2490,8 @@
"VV" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/fans/hardlight,/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"VW" = (/obj/machinery/door/airlock/maintenance/int,/obj/structure/fans/hardlight,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"VX" = (/turf/simulated/wall,/area/vr/powered/material)
+"VY" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/art)
+"VZ" = (/turf/simulated/mineral/sif,/area/vr/powered/dungeon)
"Wa" = (/obj/structure/flora/tree/jungle,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered)
"Wb" = (/turf/simulated/floor/beach/sand/desert{outdoors = 1},/area/vr/outdoors/powered)
"Wc" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/foodcart,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
@@ -1783,11 +2501,21 @@
"Wg" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/angled_tgmc/wide/security{dir = 4},/turf/simulated/shuttle/plating,/area/vr/powered)
"Wh" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"Wi" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,/obj/item/weapon/storage/box/survival/comp{starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)},/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/extinguisher/mini,/obj/item/device/radio{icon_state = "walkietalkiebay"; name = "emergency radio"},/obj/item/weapon/towel{color = "#800080"},/obj/item/weapon/towel{color = "#800080"},/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/snacks/tastybread,/obj/item/weapon/reagent_containers/food/snacks/tastybread,/obj/item/weapon/reagent_containers/food/snacks/tastybread,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/weapon/reagent_containers/food/snacks/unajerky,/obj/item/weapon/storage/box/mixedglasses,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/tomatojuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/lemonjuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/applejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_up,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice,/obj/item/weapon/reagent_containers/food/drinks/cans/sodawater,/obj/item/weapon/reagent_containers/food/drinks/cans/sodawater,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/ice,/obj/item/weapon/reagent_containers/food/drinks/ice,/obj/item/weapon/reagent_containers/food/drinks/tea,/obj/item/weapon/reagent_containers/food/drinks/tea,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/toy/plushie/kitten,/obj/item/pizzabox/meat,/obj/item/pizzabox/meat,/obj/item/pizzabox/mushroom,/obj/item/pizzabox/mushroom,/obj/item/pizzabox/vegetable,/obj/item/pizzabox/vegetable,/obj/item/device/survivalcapsule/luxurybar,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/storage/firstaid/combat{pixel_x = 5; pixel_y = 5},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered/space/sciship)
+"Wj" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Wk" = (/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/outdoors/powered)
+"Wl" = (/obj/structure/table/alien/blue,/obj/item/weapon/storage/quickdraw/syringe_case,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Wm" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"Wn" = (/mob/living/simple_mob/animal/giant_spider/hunter,/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
+"Wo" = (/obj/effect/decal/cleanable/blood/gibs/xeno,/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
+"Wp" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/gun/launcher/confetti_cannon/overdrive,/obj/item/weapon/grenade/confetti/party_ball,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"Wq" = (/turf/simulated/floor/water/beach{dir = 4; temperature = 311},/area/vr/outdoors/powered)
+"Wr" = (/obj/random/trash,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
+"Ws" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/vr/powered/dungeon)
+"Wt" = (/obj/structure/table/rack/shelf,/obj/item/device/camera,/obj/item/device/camera,/obj/item/device/camera,/turf/simulated/floor/wood,/area/vr/powered/art)
"Wu" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/vr/powered)
+"Wv" = (/obj/structure/table/rack/shelf,/obj/item/clothing/head/helmet/bulletproof,/obj/item/clothing/head/helmet/bulletproof,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof,/turf/simulated/floor/tiled,/area/vr/powered/gunshop)
"Ww" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4; pixel_x = -3},/turf/space,/area/space)
+"Wx" = (/obj/random/trash,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"Wy" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/risotto,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Wz" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
"WA" = (/obj/machinery/disperser/front{dir = 1},/turf/space,/area/vr/powered)
@@ -1798,12 +2526,21 @@
"WF" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 8},/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/shuttle/wall,/area/vr/powered/space/whiteship)
"WG" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"WH" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/sciship)
+"WI" = (/obj/structure/sign/warning/lava,/turf/simulated/wall/r_wall,/area/vr/powered/redbase)
"WJ" = (/obj/structure/railing,/obj/effect/step_trigger/teleporter/bridge/north_to_south,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"WK" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/lava,/area/vr/outdoors/powered/cult)
+"WL" = (/obj/structure/sign/warning/caution{name = "TO THE SEWERS"},/turf/simulated/wall/r_concrete,/area/vr/powered/rocks)
+"WM" = (/obj/structure/table/standard,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered/motel)
+"WN" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/outdoors/mud{outdoors = -1; temperature = 293.15},/area/vr/powered/dungeon)
+"WO" = (/obj/machinery/light/small{dir = 4},/obj/structure/reagent_dispensers/beerkeg/fakenuke,/turf/simulated/floor/wood,/area/vr/powered/bar)
"WP" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered/space/whiteship)
"WQ" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
+"WR" = (/obj/structure/sign/painting/away_areas,/turf/simulated/wall/r_wall,/area/vr/powered/art)
"WS" = (/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/table/rack/shelf/steel,/obj/structure/ship_munition/disperser_charge/mining,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"WT" = (/obj/machinery/vending/engivend{emagged = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
+"WU" = (/obj/item/weapon/material/twohanded/sledgehammer,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
+"WV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
+"WW" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"WX" = (/obj/item/toy/AI{desc = "May look like a toy, but to your surprise it seems to be a miniature AI core. There is constant static and a constant buzzing sound that makes your ear rings. . ."; name = "M@13fic3n7"; pixel_y = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"WY" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered)
"WZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
@@ -1816,21 +2553,29 @@
"Xg" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/telecomms/relay/preset/ruskie,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered/space/whiteship)
"Xh" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
"Xi" = (/obj/machinery/light/small,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered/space/whiteship)
+"Xj" = (/turf/simulated/shuttle/floor/white,/area/vr/powered/dungeon)
"Xk" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/mechfactory)
"Xl" = (/obj/structure/flora/log2,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"Xm" = (/obj/structure/cliff/automatic/corner{dir = 9},/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"Xn" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"Xo" = (/turf/simulated/floor/water/beach{dir = 6; temperature = 311},/area/vr/outdoors/powered)
"Xp" = (/obj/machinery/vending/wardrobe/engidrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered/vendor)
+"Xq" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"Xr" = (/obj/structure/bed/chair/wood/wings{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Xs" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/pancakes{pixel_y = -6; pixel_x = 12},/turf/simulated/floor/wood,/area/vr/powered/bar)
"Xt" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/bluespacetomatoseed,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Xu" = (/obj/machinery/vending/wardrobe/virodrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
+"Xv" = (/obj/machinery/light/poi,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"Xw" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered)
+"Xx" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Xy" = (/turf/simulated/floor/lava,/area/vr/outdoors/powered/lava)
"Xz" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/vr/powered)
"XA" = (/obj/effect/catwalk_plated/dark,/obj/structure/sign/department/cargo_dock{pixel_x = 32},/turf/simulated/floor/airless,/area/space)
+"XB" = (/turf/simulated/floor/outdoors/sidewalk/slab{movement_cost = 0; temperature = 293.15},/area/vr/outdoors/powered)
+"XC" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/turf/simulated/floor/tiled,/area/vr/powered/vet)
"XD" = (/obj/effect/floor_decal/spline/fancy{icon_state = "spline_fancy_full"},/turf/simulated/floor/lava/harmless,/area/vr/powered/cult)
"XE" = (/mob/living/simple_mob/animal/passive/dog/corgi/narsian{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"XF" = (/turf/simulated/floor/tiled/white,/area/vr/powered/vet)
"XG" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered/space/whiteship)
"XH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"XI" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/redgrid,/area/vr/powered)
@@ -1839,38 +2584,54 @@
"XL" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/cult)
"XM" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered)
"XN" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet,/area/vr/powered/cult)
+"XO" = (/obj/effect/floor_decal/corner/paleblue{dir = 5},/turf/simulated/floor/tiled,/area/vr/powered/vet)
+"XP" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/tiled,/area/vr/powered/dungeon)
"XQ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/vr/powered/space/mechfactory)
"XR" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter,/turf/simulated/floor/cult,/area/vr/powered/cult)
+"XS" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_up{pixel_y = 0; pixel_x = -9},/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind{pixel_x = -2},/obj/item/weapon/reagent_containers/food/drinks/bottle/dr_gibb{pixel_y = 0; pixel_x = 5},/turf/simulated/floor/tiled,/area/vr/powered/constore)
"XT" = (/obj/random/mob/fish,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"XU" = (/obj/item/device/flashlight/slime,/turf/simulated/floor/cult,/area/vr/powered/cult)
"XV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/mechfactory)
"XW" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"XX" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/wall/r_concrete,/area/vr/powered/dungeon)
+"XY" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/turf/simulated/floor/wmarble,/area/vr/powered/motel)
"XZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"Ya" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"Yb" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered/space/whiteship)
+"Yc" = (/obj/structure/barricade,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"Yd" = (/obj/structure/railing,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered/lava)
"Ye" = (/turf/simulated/floor/flock,/area/vr/powered/cult)
+"Yf" = (/obj/machinery/vending/loadout/clothing{prices = list(/obj/item/clothing/under/bathrobe=0,/obj/item/clothing/under/dress/black_corset=0,/obj/item/clothing/under/blazer=0,/obj/item/clothing/under/blazer/skirt=0,/obj/item/clothing/under/cheongsam=0,/obj/item/clothing/under/cheongsam/red=0,/obj/item/clothing/under/cheongsam/blue=0,/obj/item/clothing/under/cheongsam/black=0,/obj/item/clothing/under/cheongsam/darkred=0,/obj/item/clothing/under/cheongsam/green=0,/obj/item/clothing/under/cheongsam/purple=0,/obj/item/clothing/under/cheongsam/darkblue=0,/obj/item/clothing/under/croptop=0,/obj/item/clothing/under/croptop/red=0,/obj/item/clothing/under/croptop/grey=0,/obj/item/clothing/under/cuttop=0,/obj/item/clothing/under/cuttop/red=0,/obj/item/clothing/under/suit_jacket/female/skirt=0,/obj/item/clothing/under/dress/dress_fire=0,/obj/item/clothing/under/dress/flamenco=0,/obj/item/clothing/under/dress/flower_dress=0,/obj/item/clothing/under/fluff/gnshorts=0,/obj/item/clothing/under/color=0,/obj/item/clothing/under/color/aqua=0,/obj/item/clothing/under/color/black=0,/obj/item/clothing/under/color/blackf=0,/obj/item/clothing/under/color/blackjumpskirt=0,/obj/item/clothing/under/color/blue=0,/obj/item/clothing/under/color/brown=0,/obj/item/clothing/under/color/darkblue=0,/obj/item/clothing/under/color/darkred=0,/obj/item/clothing/under/color/green=0,/obj/item/clothing/under/color/grey=0,/obj/item/clothing/under/color/lightblue=0,/obj/item/clothing/under/color/lightbrown=0,/obj/item/clothing/under/color/lightgreen=0,/obj/item/clothing/under/color/lightpurple=0,/obj/item/clothing/under/color/lightred=0,/obj/item/clothing/under/color/orange=0,/obj/item/clothing/under/color/pink=0,/obj/item/clothing/under/color/prison=0,/obj/item/clothing/under/color/ranger=0,/obj/item/clothing/under/color/red=0,/obj/item/clothing/under/color/white=0,/obj/item/clothing/under/color/yellow=0,/obj/item/clothing/under/color/yellowgreen=0,/obj/item/clothing/under/corp/aether=0,/obj/item/clothing/under/corp/focal=0,/obj/item/clothing/under/corp/hephaestus=0,/obj/item/clothing/under/corp/wardt=0,/obj/item/clothing/under/kilt=0,/obj/item/clothing/under/fluff/latexmaid=0,/obj/item/clothing/under/dress/lilacdress=0,/obj/item/clothing/under/dress/white2=0,/obj/item/clothing/under/dress/white4=0,/obj/item/clothing/under/dress/maid=0,/obj/item/clothing/under/dress/maid/sexy=0,/obj/item/clothing/under/dress/maid/janitor=0,/obj/item/clothing/under/moderncoat=0,/obj/item/clothing/under/permit=0,/obj/item/clothing/under/oldwoman=0,/obj/item/clothing/under/frontier=0,/obj/item/clothing/under/mbill=0,/obj/item/clothing/under/pants/baggy=0,/obj/item/clothing/under/pants/baggy/classicjeans=0,/obj/item/clothing/under/pants/baggy/mustangjeans=0,/obj/item/clothing/under/pants/baggy/blackjeans=0,/obj/item/clothing/under/pants/baggy/greyjeans=0,/obj/item/clothing/under/pants/baggy/youngfolksjeans=0,/obj/item/clothing/under/pants/baggy/white=0,/obj/item/clothing/under/pants/baggy/red=0,/obj/item/clothing/under/pants/baggy/black=0,/obj/item/clothing/under/pants/baggy/tan=0,/obj/item/clothing/under/pants/baggy/track=0,/obj/item/clothing/under/pants/baggy/khaki=0,/obj/item/clothing/under/pants/baggy/camo=0,/obj/item/clothing/under/pants/utility=0,/obj/item/clothing/under/pants/utility/orange=0,/obj/item/clothing/under/pants/utility/blue=0,/obj/item/clothing/under/pants/utility/white=0,/obj/item/clothing/under/pants/utility/red=0,/obj/item/clothing/under/pants/chaps=0,/obj/item/clothing/under/pants/chaps/black=0,/obj/item/clothing/under/pants/track=0,/obj/item/clothing/under/pants/track/red=0,/obj/item/clothing/under/pants/track/white=0,/obj/item/clothing/under/pants/track/green=0,/obj/item/clothing/under/pants/track/blue=0,/obj/item/clothing/under/pants/yogapants=0,/obj/item/clothing/under/ascetic=0,/obj/item/clothing/under/dress/white3=0,/obj/item/clothing/under/skirt/pleated=0,/obj/item/clothing/under/dress/darkred=0,/obj/item/clothing/under/dress/redeveninggown=0,/obj/item/clothing/under/dress/red_swept_dress=0,/obj/item/clothing/under/dress/sailordress=0,/obj/item/clothing/under/dress/sari=0,/obj/item/clothing/under/dress/sari/green=0,/obj/item/clothing/under/qipao=0,/obj/item/clothing/under/qipao/red=0,/obj/item/clothing/under/qipao/white=0,/obj/item/clothing/under/shorts/red=0,/obj/item/clothing/under/shorts/green=0,/obj/item/clothing/under/shorts/blue=0,/obj/item/clothing/under/shorts/black=0,/obj/item/clothing/under/shorts/grey=0,/obj/item/clothing/under/shorts/white=0,/obj/item/clothing/under/shorts/jeans=0,/obj/item/clothing/under/shorts/jeans=0,/obj/item/clothing/under/shorts/jeans/classic=0,/obj/item/clothing/under/shorts/jeans/mustang=0,/obj/item/clothing/under/shorts/jeans/youngfolks=0,/obj/item/clothing/under/shorts/jeans/black=0,/obj/item/clothing/under/shorts/jeans/grey=0,/obj/item/clothing/under/shorts/khaki=0,/obj/item/clothing/under/skirt/loincloth=0,/obj/item/clothing/under/skirt/khaki=0,/obj/item/clothing/under/skirt/blue=0,/obj/item/clothing/under/skirt/red=0,/obj/item/clothing/under/skirt/denim=0,/obj/item/clothing/under/skirt/pleated=0,/obj/item/clothing/under/skirt/outfit/plaid_blue=0,/obj/item/clothing/under/skirt/outfit/plaid_red=0,/obj/item/clothing/under/skirt/outfit/plaid_purple=0,/obj/item/clothing/under/overalls/sleek=0,/obj/item/clothing/under/sl_suit=0,/obj/item/clothing/under/gentlesuit=0,/obj/item/clothing/under/gentlesuit/skirt=0,/obj/item/clothing/under/suit_jacket=0,/obj/item/clothing/under/suit_jacket/really_black/skirt=0,/obj/item/clothing/under/suit_jacket/really_black=0,/obj/item/clothing/under/suit_jacket/female/skirt=0,/obj/item/clothing/under/suit_jacket/female=0,/obj/item/clothing/under/suit_jacket/red=0,/obj/item/clothing/under/suit_jacket/red/skirt=0,/obj/item/clothing/under/suit_jacket/charcoal=0,/obj/item/clothing/under/suit_jacket/charcoal/skirt=0,/obj/item/clothing/under/suit_jacket/navy=0,/obj/item/clothing/under/suit_jacket/navy/skirt=0,/obj/item/clothing/under/suit_jacket/burgundy=0,/obj/item/clothing/under/suit_jacket/burgundy/skirt=0,/obj/item/clothing/under/suit_jacket/checkered=0,/obj/item/clothing/under/suit_jacket/checkered/skirt=0,/obj/item/clothing/under/suit_jacket/tan=0,/obj/item/clothing/under/suit_jacket/tan/skirt=0,/obj/item/clothing/under/scratch=0,/obj/item/clothing/under/scratch/skirt=0,/obj/item/clothing/under/sundress=0,/obj/item/clothing/under/sundress_white=0,/obj/item/clothing/under/rank/psych/turtleneck/sweater=0,/obj/item/weapon/storage/box/fluff/swimsuit=0,/obj/item/weapon/storage/box/fluff/swimsuit/blue=0,/obj/item/weapon/storage/box/fluff/swimsuit/purple=0,/obj/item/weapon/storage/box/fluff/swimsuit/green=0,/obj/item/weapon/storage/box/fluff/swimsuit/red=0,/obj/item/weapon/storage/box/fluff/swimsuit/white=0,/obj/item/weapon/storage/box/fluff/swimsuit/earth=0,/obj/item/weapon/storage/box/fluff/swimsuit/engineering=0,/obj/item/weapon/storage/box/fluff/swimsuit/science=0,/obj/item/weapon/storage/box/fluff/swimsuit/security=0,/obj/item/weapon/storage/box/fluff/swimsuit/medical=0,/obj/item/weapon/storage/box/fluff/swimsuit/cowbikini=0,/obj/item/clothing/under/utility=0,/obj/item/clothing/under/utility/grey=0,/obj/item/clothing/under/utility/blue=0,/obj/item/clothing/under/fluff/v_nanovest=0,/obj/item/clothing/under/dress/westernbustle=0,/obj/item/clothing/under/wedding/bride_white=0,/obj/item/weapon/storage/backpack=0,/obj/item/weapon/storage/backpack/messenger=0,/obj/item/weapon/storage/backpack/satchel=0,/obj/item/clothing/under/tropical=0,/obj/item/clothing/under/tropical/green=0,/obj/item/clothing/under/tropical/pink=0,/obj/item/clothing/under/tropical/blue=0)},/turf/simulated/floor/wood,/area/vr/powered/cafe)
+"Yg" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/dungeon)
"Yh" = (/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered/cult)
"Yi" = (/obj/machinery/gear_dispenser/randomvoidsuit,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/cult)
+"Yj" = (/obj/machinery/button/holosign{id = "baropenrp"; name = "Open Sign"; pixel_x = 25; pixel_y = 6},/obj/machinery/light_switch{name = "light switch "; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/wood,/area/vr/powered/bar)
"Yk" = (/turf/unsimulated/wall,/area/vr/powered/conspawn)
"Yl" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Ym" = (/obj/item/weapon/weldingtool/largetank,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/item/weapon/storage/firstaid/surgery,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"Yn" = (/obj/structure/prop/rock,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered/rocks)
"Yo" = (/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"Yp" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Yq" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/structure/table/standard,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/breath,/obj/item/weapon/gun/energy/netgun,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"Yr" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered/cult)
"Ys" = (/obj/vehicle/train/engine/quadbike/random,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Yt" = (/obj/effect/floor_decal/techfloor,/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered/cult)
"Yu" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/manned{faction = "syndicate"},/turf/simulated/floor/airless,/area/vr/outdoors/powered)
+"Yv" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/turf/simulated/shuttle/plating,/area/vr/powered/dungeon)
"Yw" = (/obj/machinery/vending/wardrobe/chemdrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered/vendor)
"Yx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"Yy" = (/obj/structure/table/bench/marble,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered)
"Yz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered)
+"YA" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/vr/powered/shop)
+"YB" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/vest,/obj/item/clothing/suit/armor/vest,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/alien/tank,/obj/item/clothing/suit/armor/alien/tank,/obj/item/clothing/suit/armor/alien,/obj/item/clothing/suit/armor/alien,/obj/item/clothing/suit/armor/combat,/obj/item/clothing/suit/armor/combat,/obj/item/clothing/suit/armor/heavy,/obj/item/clothing/suit/armor/heavy,/obj/item/clothing/suit/armor/material/makeshift/durasteel,/obj/item/clothing/suit/armor/material/makeshift/durasteel,/obj/item/clothing/head/helmet/combat,/obj/item/clothing/head/helmet/combat,/obj/item/clothing/head/helmet/bulletproof,/obj/item/clothing/head/helmet/bulletproof,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"YC" = (/obj/structure/showcase/sign{name = "UNDER CONSTRUCTION"; desc = "This sign appears to be telling you that there are more maps under construction."},/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered)
+"YD" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Armors R Us"; pixel_y = 0},/obj/item/clothing/accessory/armor/armorplate/medium,/obj/item/clothing/accessory/armor/armorplate/medium,/obj/item/clothing/accessory/armor/armorplate/merc,/obj/item/clothing/accessory/armor/armorplate/merc,/obj/item/clothing/accessory/armor/armorplate/riot,/obj/item/clothing/accessory/armor/armorplate/riot,/obj/item/clothing/accessory/armor/armorplate/stab,/obj/item/clothing/accessory/armor/armorplate/stab,/obj/item/clothing/accessory/armor/armorplate/tactical,/obj/item/clothing/accessory/armor/armorplate/tactical,/obj/item/clothing/accessory/armor/armorplate/laserproof,/obj/item/clothing/accessory/armor/armorplate/laserproof,/obj/item/clothing/accessory/armor/armorplate/bulletproof,/obj/item/clothing/accessory/armor/armorplate/bulletproof,/obj/item/clothing/accessory/armor/armorplate/blast,/obj/item/clothing/accessory/armor/armorplate/blast,/obj/item/clothing/accessory/armor/armorplate/ablative,/obj/item/clothing/accessory/armor/armorplate/ablative,/obj/fiftyspawner/leather,/turf/simulated/shuttle/floor/black,/area/vr/powered/armory)
"YE" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/whiteship)
-"YF" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"YF" = (/turf/simulated/floor/concrete{outdoors = 1},/area/vr/outdoors/powered)
+"YG" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/dungeon)
"YH" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/ribplate,/turf/simulated/floor/cult,/area/vr/powered/cult)
"YI" = (/turf/simulated/floor/lava,/area/vr/outdoors/powered/cult)
+"YJ" = (/turf/simulated/mineral/ignore_oregen,/area/vr/powered/rocks)
"YK" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/cult,/area/vr/powered/cult)
"YL" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vr/powered/space/sciship)
"YM" = (/obj/random/trash,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered/rocks)
@@ -1885,20 +2646,29 @@
"YV" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered/space/sciship)
"YW" = (/obj/item/stolenpackage,/obj/item/stolenpackage,/obj/structure/table/rack/shelf/steel,/obj/random/contraband/nofail,/turf/simulated/floor/airless,/area/vr/powered)
"YX" = (/obj/structure/showcase/sign{name = "WARNING: OSHA VIOLATIONS"; desc = "Don't Fall."},/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1; temperature = 293.15},/area/vr/outdoors/powered)
+"YY" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/obj/structure/closet,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled,/area/vr/powered/vet)
"YZ" = (/obj/structure/salvageable/console_os{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"Za" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/wmarble,/area/vr/powered/cafe)
"Zb" = (/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered)
+"Zc" = (/obj/structure/barricade,/obj/item/tape/police,/turf/simulated/floor/outdoors/rocks{temperature = 293.15; outdoors = -1},/area/vr/powered/dungeon)
"Zd" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/excavation,/obj/item/stack/flag/yellow,/obj/item/device/measuring_tape,/obj/item/weapon/pickaxe/drill,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered/space/whiteship)
"Ze" = (/obj/item/weapon/gun/projectile/deagle/gold,/obj/item/weapon/ore/diamond,/obj/fiftyspawner/diamond,/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/turf/simulated/floor/flock,/area/vr/powered/rocks)
"Zf" = (/turf/simulated/floor/cult,/area/vr/powered/cult)
"Zg" = (/obj/structure/railing,/turf/simulated/floor/wood{outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
"Zh" = (/obj/effect/landmark/virtual_reality{name = "Cultist Base"},/turf/simulated/floor/cult,/area/vr/powered/cult)
+"Zi" = (/obj/structure/table/gamblingtable,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/wood,/area/vr/powered/bar)
+"Zj" = (/obj/structure/sign/warning/secure_area/armory,/turf/simulated/wall/r_wall,/area/vr/powered/gunshop)
+"Zk" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/vr/powered/dungeon)
+"Zl" = (/obj/structure/simple_door/wood,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vr/powered/dungeon)
"Zm" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/turf/simulated/shuttle/floor/darkred,/area/vr/powered/space/sciship)
"Zn" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered)
"Zo" = (/obj/structure/table/standard,/obj/item/ammo_magazine/akm,/obj/item/ammo_magazine/akm,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered)
+"Zp" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"Zq" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/device/bodysnatcher,/obj/item/weapon/card/emag,/obj/item/weapon/card/emag,/obj/item/weapon/cell/super,/obj/item/weapon/cell/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 8},/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/turf/simulated/floor/tiled/techmaint,/area/vr/powered/space/sciship)
"Zr" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/turf/simulated/floor/tiled/white,/area/vr/powered)
"Zs" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/button/windowtint{id = "h-kitchen"; pixel_y = -29},/turf/simulated/floor/wood,/area/vr/powered)
"Zt" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/manned{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered)
+"Zu" = (/obj/structure/flora/tree/pine,/turf/simulated/floor/snow,/area/vr/outdoors/powered)
"Zv" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/whiteship)
"Zw" = (/obj/item/weapon/gun/projectile/colt,/obj/item/weapon/gun/projectile/garand,/obj/item/weapon/gun/projectile/revolvingrifle,/obj/item/weapon/gun/projectile/shotgun/pump,/obj/item/ammo_magazine/ammo_box/b12g,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered/space/whiteship)
"Zx" = (/obj/machinery/vending/engivend{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
@@ -1910,214 +2680,220 @@
"ZD" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
"ZE" = (/turf/simulated/wall/phoron,/area/vr/powered)
"ZF" = (/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/vr/powered/conspawn)
+"ZG" = (/obj/structure/closet,/obj/item/weapon/gun/launcher/syringe,/obj/item/weapon/storage/box/syringegun,/obj/random/cigarettes,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/matches,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/vr/powered/vet)
"ZH" = (/obj/machinery/autolathe{hacked = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered/space/whiteship)
"ZI" = (/obj/machinery/exonet_node/map,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered/space/mechfactory)
"ZJ" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered/space/sciship)
"ZK" = (/obj/structure/closet,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
"ZL" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/belt/utility/full/multitool{pixel_y = 6},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered)
+"ZM" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt{temperature = 293.15; outdoors = 0},/area/vr/powered/dungeon)
"ZN" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered/space/mechfactory)
"ZO" = (/obj/structure/table/marble,/obj/item/weapon/storage/firstaid/clotting{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/clotting,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered)
+"ZP" = (/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/wood,/area/vr/powered/cafe)
"ZQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered)
"ZR" = (/turf/simulated/floor/water/beach/corner{dir = 1; temperature = 311; outdoors = 0},/area/vr/outdoors/powered)
+"ZS" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/snacks/popcorn{pixel_y = 0; pixel_x = -4},/obj/item/weapon/reagent_containers/food/snacks/popcorn{pixel_y = 0; pixel_x = 5},/turf/simulated/floor/tiled,/area/vr/powered/constore)
"ZT" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered)
+"ZU" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/device/flashlight/glowstick/blue,/obj/item/device/flashlight/glowstick/blue,/obj/item/device/flashlight/glowstick/blue,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/vr/powered/vet)
"ZV" = (/obj/machinery/vending/tool{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered/cult)
"ZW" = (/obj/structure/table/rack/shelf/steel,/obj/machinery/light{dir = 4; light_color = "#DDFFD3"},/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/obj/item/weapon/gun/energy/medigun,/turf/simulated/floor/reinforced,/area/vr/powered/redbase)
"ZX" = (/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered/space/mechfactory)
+"ZY" = (/obj/structure/salvageable/implant_container_os,/obj/item/weapon/spacecash/c1,/turf/simulated/floor/wood,/area/vr/powered/dungeon)
"ZZ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered)
(1,1,1) = {"
-abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
-abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab
-abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab
-abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab
-abhBhBhBRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOuDaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaObXuDMsNFncuDbXaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaxaOVbLYNnaOaxaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBhBhBhBhBhBhBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOKZOQWQjykJaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOuDaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCShpNpNpNpNpNKRdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBuDMFOQBEBwMFuDhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaObXuDMsNFncuDbXaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAdCzhAOhdzONFyRhdAOnhdCnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgOBwgwgwgKOwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaxaOVbLYNnaOaxaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAhdOGGShdFVlDkbhdGShdhdAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbwgTvDTMFwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOKZOQWQjykJaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPshBnVPhSxPbhdFVspkbhdPbnkYZnVhBPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUwgTvwgzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBuDMFOQBEBwMFuDhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCVwdCdCdCdCdCdCdCcLdCdCdCdCdCdCdCVwdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwkovTvxSTvovwkwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgOBwgwgwgKOwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuSMFqOdCPdWmOQMFspMFjyWmPddCqOMFuSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzvhBhBhBhBhBzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbwgTvDTMFwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfrMFqOdCPdPdOQMFWQMFjyPdPddCqOMFqidChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUwgTvwgzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAOzMFqOdCPdtuOQMFspMFjytuPddCqOMFHnnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwkzvLJEmLJzvwkwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAOzMFMFdCPdTiOQMFspMFjyTiPddCMFMFHnAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzvhBhBhBhBhBzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVtzMFMFcLPdPdOQMFWQMFjyPdPdcLMFMFtQnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCtzAnusdCSEPdOQMFspMFjyPdSEdCusAntQdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspQQjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCdCdCdCdCdCdCdCcLdCdCdCdCdCdCdCdCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCSEPdPdPdPdPdPdPdRyOQMFspMFjyRyPdPdPdPdPdPdPdSEdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCPdTiPdPdPdPdPdPdFEOQMFspMFjyFEPdPdPdPdPdPdTiPddChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPshBdCPdPddCdCdCdCdCdCdCdCMFWQMFdCdCdCdCdCdCdCdCPdPddChBPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCVwdCdCrtRydCvkugvkvkugvkdCMFaYMFdCvkugvkvkugvkdCrtRydCdCVwdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgLJLJwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBdCuSKDdCPdPddCvkvkDNvkvkvknAMFspMFnAvkvkvkDNvkvkdCPdPddCKDuSdChBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuDdCfrObdCPdPddCvkvkvkvkvkvknVMFWQMFnVvkvkvkvkvkvkdCPdPddCObqidCuDdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCbHspfrObdCPdPddCvkugvkvkugvkdCMFspMFdCvkuggnvkugvkdCPdPddCObqispsfdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVYFWQWQQanVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCDaspfrObdCPdPddCvkvkvkvkvkvkdCMFspMFdCvkvkvkvkvkvkdCPdPddCObqispZZdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCDaspfrQWdCPdPddCvkvkvkvkvkvkRyMFWQMFRyvkvkvkvkvkvkdCPdPddCDgqispZZdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCmTeSfrQWdCPdPddCvkugvkvkugvkqJMFspMFqJvkugvkvkugvkdCPdPddCDgqieSLkdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCpsspfrQWdCPdPddCvkvkDNvkvkvkdCMFspMFdCvkvkvkDNvkvkdCPdPddCDgqispRNdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspspjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnApsspfrQWdCPdPddCvkvkvkvkvkvkdCMFWQMFdCvkvkvkvkvkvkdCPdPddCDgqispRNnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAApsspfrQWdCPdPddCvkugvkvkugvknAMFspMFnAvkugvkvkugvkdCPdPddCDgqispRNAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtLaYfrMFdCPdPddCvkvkvkvkvkvknVMFspMFnVvkvkvkvkvkvkdCPdPddCMFqiaYAwAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtLspfrMFRyPdPddCvkvkgnvkvkvkdCMFWQMFdCvkvkvkvkvkvkdCPdPdRyMFqispAwAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVtLspfrMFqbPdPddCdCdCdCdCdCdCdCMFaYMFdCdCdCdCdCdCdCdCPdPdqbMFqispAwnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgLJLJwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChFJHyLOBdCPdPddCEfKEhdHQgahddCMFspMFdCPdPXvIDygJwKdCPdPddCOBhJJHBPdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCdCPdPddChdhdhdhdhdhdRyMFWQMFRyPdyDPNvkOXFQdCPdPddCdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfJfJfJdCdCPdPddCEfKEhdPbhdhdNVMFspMFiAPdPmvkhdvkZOdCPdPddCdChBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCrtRydChdhdhdhdhdhddCMFspMFdCPdvkhdeAoUIUdCrtRydChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBdCPdPddCEfKEhdHQgahddCMFWQMFdCPdPdPdPdPdPddCPdPddChBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBbIpKpKdCdCdCdCdCdCdCdCMFspMFdCdCdCdCdCdCdCdCpKpKbIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAMFMFMFMFMFMFMFMFMFMFMFspMFMFMFMFMFMFMFMFMFMFMFAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVspspQespspaYspQespeSspWQspeSspQespaYspspQespspnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSLYCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCMFMFMFMFMFMFMFMFMFMFMFspMFMFMFMFMFMFMFMFMFMFMFdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChprCdCxNxNdCdCdCdCdCdCdCdCPqRyRydCdCdCdCdCdCdCdCxNxNdCrCYUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspKkRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCfrMFdCrtRydCugvkugvkvkvkvkvkvkvkvkvkvkvkugvkugdCrtRydCMFqidCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCPsdCLccqfrMFdCPdPddCvkvkvkvkXMvkvkvkWXvkvkvkXMvkvkvkvkdCPdPddCMFqicqfBdCWAdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBwgzvLJLJLJzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCVwdCLccqfrQWdCPdPddCvkvkvkvkvkczdCkodCkodCczvkvkvkvkvkdCPdPddCDgqicqfBdCVwdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzhguDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuSMFLccqfrQWdCPdPddCugvkugvkvkdCnbRKRKRKfhdCSwvkugvkugdCPdPddCDgqicqfBMFuSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCtzMFqispfrQWdCPdPddCvkvkvkvkegmcXIaMoDaMhjJrvkvkvkvkvkdCPdPddCDgqispfrMFtQdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAtzMFqiaYfrMFdCPdPddCvkvkvkvkvkrRXIxnhRtJhjrRvkvkvkvkvkdCPdPddCMFqiaYfrMFtQnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpZtwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzhguDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtzMFqispfrMFdCPdPddCugvkugvkvkmcXIaMkNaMhjJrvkvkugvkugdCPdPddCMFqispfrMFtQAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVfrMFqieSfrMFRyPdPddCvkvkvkvkvkdCSHwHwHwHwFdCvkvkvkvkvkdCPdPdRyMFqieSfrMFqinVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfrMFqispfrMFqbPdPddCvkvkvkvkvkugdCMxdCMxdCugvkvkvkvkvkdCPdPdqbMFqispfrMFqidChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBqSwgShpNKRwgqShBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpZtwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdWsNmqJHyLOBdCPdPddCugvkugvkXMvkvkvkvkvkvkvkXMvkugvkugdCPdPddCOBhJJHdWAfPydChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBanwgHXPdOQspjyfgTkwganhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCzUzUdCPdPddCvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkdCPdPddCzUzUdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumZtPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBhBhBdChBhBdCPdPddCdCdCdCdCdCdCdCPqRyRydCdCdCdCdCdCdCdCPdPddChBhBdChBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBdCPdTiPdPdPdPdPdPdRyOQMFspMFjyRyPdPdPdPdPdPdTiPddCtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBdCSEPdPdPdPdPdPdPdFEOQMFWQMFjyFEPdPdPdPdPdPdPdSEdChBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgAbAbYWYWsKWQQdLmQqSrPKwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumZtPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCWgFwdCdCdCdCdCdCdCMFspMFdCdCdCdCdCdCdCWgFwdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCPtPtPtQGAsxiAUohQGdCMFspMFdCuxkPxiAUohlbPtPtPtdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgzUzUzUwgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCPtPtPtPtPtPtPtPtPtdCMFWQMFdCPtPtPtPtPtPtPtPtPtdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgOyOyOywgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBanwgAbAbYWYWsKWQQdLmQqSrPKwganhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtnAMFspMFnAPtPtsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumPdPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSonphBhBMbMbOyOyOyMbMbnphBhBSohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBSqPtAAMFspMFAAPtSqhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgzUzUzUwgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBRehBhBRehBhBRehBPtPtnVMFWQMFnVPtPtaXhBhBaXhBhBaXhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgHoHoHowgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgwQYudCMFspMFdCPtwQsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgAbAbYWYWsKWQQdLmQqSrPKwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBnVumPdPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqSnphBhBMbMbcAcAcAMbMbnphBhBqShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBPtPtdCMFspMFdCPtPthBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBcIhBhBcIhBhBcIhBPtPtdCMFWQMFdCKhPtXchBhBXchBhBXchBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgzUzUzUwgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtdCMFspMFdCPtPtsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgOyOyOywgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBanwgAbAbYWYWsKWQQdLmQqSrPKwganhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBwQPtnAMFspMFnAPtwQhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqSnphBhBsVsVOyOyOysVsVnphBhBqShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBVLhBhBVLhBhBVLhBPtPtAAMFWQMFAAPtPtzAhBhBzAhBhBzAhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgzUzUzUwgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtnVMFspMFnVPtYusgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgcAcAcAwgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCPtPtPtPtPtPtPtSqPtdCMFspMFdCPtSqPtPtPtPtPtPtPtdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBqSnphBhBMbMbcAcAcAMbMbnphBhBqShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCPtPtPtPtPtPtPtPtPtdCMFWQMFdCPtPtPtPtPtPtPtPtPtdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCdCdCdCdCCbFwdCMFspMFdCCbFwdCdCdCdCdCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCgxyodCSEPdPdPdPdPdOQMFspMFjyPdPdPdPdPdSEdCyogxdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBiegxgxiePdPdPdPdPdPdOQMFWQMFjyPdPdPdPdPdPdiegxgxiehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBiegxgxiePdPdPdPdtuPdOQMFspMFjyPdtuPdPdPdPdiegxgxiehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCKMgxdCSEPdPdPdPdPdOQMFspMFjyPdPdPdPdPdSEdCgxKMdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCrtRydCdCdCdCdCdCdCdCdCdCdCrtRydCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfGGgOyMROyOynRmrzXnRXbspSGzXnRmrzXOyOyVvOySKlohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCOyVvOyOynRmrzXnRXbspSGzXnRmrzXOyOyMROydCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAOyRQOyOynRmrzXnRXbWQSGzXnRmrzXOyOyRQOynAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVOyOyOyOyOyfHYzYzWYsphbYzYzpUOyOyOyOyOynVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCKePKOyOyOyhPYzikWYsphbEEqHSMOyOyOyPKKedChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUdCOyLmQqSrOyOysKWQQdOyOyLmQqSrOydCzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCovdCOyCjYzYzYzCLWYsphbEEYzYzYziSOydCovdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUdCzGuGzrzGsKspQdMBuGzrMBdCzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCovdCOyOyhPCLWYWQhbEESMOyOydCovdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCLmQqSrOysKspQdOyLmQqSrdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCCjYzYzCLifspMYEEYzYziSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCzUzUzUdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfJfJfJdCfJfJfJdCfJfJfJdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBnphBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-ababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababrEabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab
+oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIoIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZVZVZVZVZVZVZVZVZERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZVZVZVZVZVZVZxSxSxSxSERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZVZVZVZVZVZVZxSmymyxSERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZxSxSxSxSxSxSxSmymyxSERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZxSmuvsATATATxSmymyxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSERERqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZxSvsvsbqATATxSmymyUYmymymymymybEUYdMmymybEmymymymyRLmymymymymymymymyUYmymymymymymymyUYmymymymymymyxSERERqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAVZVZVZVZVZVZVZxSvsvsvsszATxSmydMmymydMmymymymymymymymymydMmymymymymymymymymydMmymymymymymymymymymymymygRhamJmymyxSERERxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSXqxSxSxSxSxSmymyxSxSxSxSxSxSxSxSxSxSxSxSQKELxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSTlxSxSxSxSERERxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxSzxpRzxzxzwzxBAzxBABAsDvsjPjPmusDvsATATATvsELxSmymyxSERERERERERERERERERERxSQKELxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSUnxSERERERERERERERERERERERERERERERERERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBhBhBhBhBhBhBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxSzxHozxzxzxzxzxzxzxBAsDvsvsvsvssDvsvsATATvsvsxSmymyxSERERERERERERERERERERxSQKGcxSxSsiBsnDQbLBxSERERERERERERERERERERERERxSxSuFxSERERERERERERERERERERERERERERERERERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCShpNpNpNpNpNKRdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxSzxHozxzxzxzxzxzxBAhxJKsZvsvsvsxSsZELELELvsmuxSmsmyxSERERERERERERERERERERxSSmzKxSxSKvGtvnngVKxSERERERERERERERERERERERERxSxSkvxSERERERERERERERERERERERERERERERERERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAdCzhAOhdzONFyRhdAOnhdCnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxSzxHozxzxPLzxzxzxzxHLxSvsvsvsvsxSvsSmELELvsvsxSmsmyxSERERERMkAjMkERERERERxSELELeieiCVvnMSRgGHxSERERERERERERERERERERERERxSxSAMxSERERERERERERERERERERHHERERHHERERERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAhdOGGShdFVlDkbhdGShdhdAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxSxSxSxSxSxSxSxSxSxSxSxSJoJoJoJoxSvsvsvsvsELXPXqoYFgxSERERERAjUMAjERERERERxSKCxbxSxSxSxSxSxSxSxSERERERERERERERERERERERERxSxSuFxSERERERERERERERxSHHBAERHHHHBAHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPshBnVPhSxPbhdFVspkbhdPbnkYZnVhBPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAxAxSxSxSxSxSxSxSxSxSxSxSxSxSoYmyxSERERERMkAjMkERERERERxSELQKxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSuFxSERERERERERERERxSpAHHHHBAHHHHHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCVwdCdCdCdCdCdCdCcLdCdCdCdCdCdCdCVwdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAERERERERERERERERERERERERERxSoYmyxSERERERERERERERERERxSxSSmQKxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSuFxSxSxSxSxSxSERERxSHHBApApABAHHHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuSMFqOdCPdWmOQMFspMFjyWmPddCqOMFuSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAERERERERERERERERERERERERERxSoYmyxSERERERERERERERERERxSlwlwlwlwlwkmcnlwlwlwWNlwlwlwlwlwlwlwcnlwlwlwlwlwkmlwuFxSuFRruFxSERERxSHHHHpApApApAHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfrMFqOdCPdPdOQMFWQMFjyPdPddCqOMFqidChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOuDaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAERERERERERERERERERERERERERxSxSxSxSERERERERERERERERERxSmymymymymymymymymymyCOmymymyxJmymymymymyCOmymymymymyuFZlOJpcmBxSERERxSOApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAOzMFqOdCPdtuOQMFspMFjytuPddCqOMFHnnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaObXuDMsNFncuDbXaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAERERERERERERERERERERERERERERERERERERERERERERERERERERxSlwlwlwlwlwlwWnlwlwkmmymymylwlwlwlwlwlwlwlwlwlwlwWnWnuFxSIWiQuFxSERERxSHHpApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAOzMFMFdCPdTiOQMFspMFjyTiPddCMFMFHnAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaxaOVbLYNnaOaxaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAERERERERERERIvIvIvIvIvIvIvIvIvERERERERERERERERERERERxSxSxSxSxSxSxSxSxSxSlwlwmylwlwxSNINININIxSxSxSxSxSxSxSxSxSxSxSxSxSERERxSHHpApApAHHpApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVtzMFMFcLPdPdOQMFWQMFjyPdPdcLMFMFtQnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOKZOQWQjykJaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAIvlTlTbububuoXGMIvuFERERERERERERERERERERERERERERERERERERERxSlwtHlwlwlwxSxSxSNIxSxSERERERERERERERERERERERERERERxSYGpApApApApAjOxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCtzAnusdCSEPdOQMFspMFjyPdSEdCusAntQdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBuDMFOQBEBwMFuDhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAIvZklTyjyjyjlTlTUwuFuFERERERERERERERERERERERERERERERERERERxSxSlwbplwxSxSxSNINIxSERERERERERERERERERERERERERERERxSpApApApApAWxHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCdCdCdCdCdCdCdCcLdCdCdCdCdCdCdCdCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgOBwgwgwgKOwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAERERERERERlTlTSQrOlTlTLXIvuFuFERERERERERERERERERERERERERERERERERERERxSxSxSxSxSERxSNICdxSERERERERERERERERERERERERERERERxSpApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCSEPdPdPdPdPdPdPdRyOQMFspMFjyRyPdPdPdPdPdPdPdSEdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbwgTvDTMFwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSERERBAxSIvuXPClrZYlTlTtAIvERERERERERERERERERERERERERERERERERERERERERERERERERERERxSoLNIxSERERERERERERERERERERERERERERERxSpApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCPdTiPdPdPdPdPdPdFEOQMFspMFjyFEPdPdPdPdPdPdTiPddChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUwgTvwgzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpbHHBAxSIvGXvKxRIYlTlTnjIvERERERERERERERERERERERERERERERERERERERERERERERERERERERxSDcNIxSERERERERERERERERTnTnERERERERERxSpAWxpApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPshBdCPdPddCdCdCdCdCdCdCdCMFWQMFdCdCdCdCdCdCdCdCPdPddChBPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwkovTvTvTvovwkwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSHHpbHHxSIvIvIvIvIvIvIvIvIvERERERERERERERERERERERERERERERERERERERERERERERERERERERxSJvNIxSERERERERERERERERERERERERERERERxSpApApApApApAHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCVwdCdCrtRydCvkugvkvkugvkdCMFaYMFdCvkugvkvkugvkdCrtRydCdCVwdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzvhBhBhBhBhBzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpAHHBAxSERERERERERERERxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSERERERERERERERERERERERxSDcNIxSERERERERERERERERERERERERERERERxSpApApApApApAOAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBdCuSKDdCPdPddCvkvkDNvkvkvknAMFspMFnAvkvkvkDNvkvkdCPdPddCKDuSdChBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApAHHxSERERERERERERERxSNINININININININIDHNININININIDHNIxSERERERERERERERERERERERxSNINIxSxSxSxSxSxSxSERERERERERERERERERxSudpApApApApAHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuDdCfrObdCPdPddCvkvkvkvkvkvknVMFWQMFnVvkvkvkvkvkvkdCPdPddCObqidCuDdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpAmnpAxSERERERERERERERxSNININIcYxSNININININININININININIxSxSxSxSERERERERERERERERxSNIFkxSgFELtNfFgFxSxSxSxSxSxSxSxSxSxSxSHHpAWxpApApAHHxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCbHspfrObdCPdPddCvkugvkvkugvkdCMFspMFdCvkuggnvkugvkdCPdPddCObqispsfdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSERERERERERERERxSNINIxSxSxSxSxSxSxSxSxSxSxSxSDcDcDcDcDcxSxSxSxSxSxSERERERxSNIoLxShLfFELgFWVxSxSNINIsvNININIDHNINIHHpApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCDaspfrObdCPdPddCvkvkvkvkvkvkdCMFspMFdCvkvkvkvkvkvkdCPdPddCObqispZZdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSERERERERERERERxSNINIxSERERxSxSaoaoaovsvsvsxSDcDcDcDcDcDcvsvsIHvsxSERERERxSNINIxSXPgFELWpjexSxSWsNIsvNINININININIpApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCDaspfrQWdCPdPddCvkvkvkvkvkvkRyMFWQMFRyvkvkvkvkvkvkdCPdPddCDgqispZZdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpAmnpAxSERERERERERERERxSNINIxSERERxSxSsZOZvsvsvsvsxSDcDcDcDcFkxSxSxSxSxmxSxSxSxSxSxSsvxSXqSRxSxSxSxSxSNINIxSxSxSxSxSxSxSpAIdLWpApAIdpAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCmTeSfrQWdCPdPddCvkugvkvkugvkqJMFspMFqJvkugvkvkugvkdCPdPddCDgqieSLkdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSERERERERERERERxSNINIxSERERxSxSaoaoaovsvsvsxSDcDcDcDcDcxSxSxSxSvsvsXPnYELvsvsATATATvsELnYELmuvsvsvsvsxSxSxSERERxSpAnwwqPBLhnwpAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCpsspfrQWdCPdPddCvkvkDNvkvkvkdCMFspMFdCvkvkvkDNvkvkdCPdPddCDgqispRNdChBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSudpApAxSERERERERERERERxSNINIxSERERxSxSvsvsvsvsjAvsxSDcDcDcDcDcxSxSxAmymymymymymymymymymymymymymymymymymymymymyxAxSERERxSnwnwvFHRcWnwnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnApsspfrQWdCPdPddCvkvkvkvkvkvkdCMFWQMFdCvkvkvkvkvkvkdCPdPddCDgqispRNnAhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSxSxSxSxSxSxSxSxSNINIxSERERxSxSaoaoaovsvsvsxSDcDcDcDcDcxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSERERxSnwcWeMvFcWcWnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAApsspfrQWdCPdPddCvkugvkvkugvknAMFspMFnAvkugvkvkugvkdCPdPddCDgqispRNAAhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSNINIxSNININININININIxSERERxSxSsZOZvsvsvsvsxSDcJvDcDcDcxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSERERERERERxSnwHSLzHRHSHSnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtLaYfrMFdCPdPddCvkvkvkvkvkvknVMFspMFnVvkvkvkvkvkvkdCPdPddCMFqiaYAwAAhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSNIuFsvNININININvNINvxSERERxSxSaoaoaovsvsvsXqDcDcDcxSxSxSGevhmymymymymymyvhmymymyBIHCrJJAHCrJJAHCHCxSERERERERERxSsmHRcWvDeMcWsmxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtLspfrMFRyPdPddCvkvkgnvkvkvkdCMFWQMFdCvkvkvkvkvkvkdCPdPdRyMFqispAwAAhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApAHHuFuFRYIvwININININIDccYxSERERxSxSxSxSxSxSxSxSxSNININIxSlYuJnzTtTtTtTtTtTtTtTtTtTtTtTtHCHCHCHCHCHCHCrJxSERERERERERxSnwExHScWHSnUnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVtLspfrMFqbPdPddCdCdCdCdCdCdCdCMFaYMFdCdCdCdCdCdCdCdCPdPdqbMFqispAwnVhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpAmnpAuFuFuFIDuFuFNININIDzDcxSERERxSERERERERERERERxSNININIxSBAJuYcBAEWBABABABABABABAEWBABAHClGZMrMlGHCHCHCxSERERERERERxSnweMiIcWBcvDnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChFJHyLOBdCPdPddCEfKEhdHQgahddCMFspMFdCPdPXvIDygJwKdCPdPddCOBhJJHBPdChBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSIWuFIDuFNItkNIDcDcDcxSERERxSERERERERERERERxSNININIxSBAWUYcBABABABAvLBNpaBABABABABAHCorZMZMZMHCHCHCxSERERERERERxSsmHSHSvFPIgqsmxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCdCPdPddChdhdhdhdhdhdRyMFWQMFRyPdyDPNvkOXFQdCPdPddCdCzUzUzUdChBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpAdapAxSxSxSxSxSxSxSxSxSxSxSxSERERxSxSxSxSxSxSxSxSxSNINICdxSsEsEvLBNBNBNBNNLmyVGBNBNBNBNBNNHZMWrZMZMrJHCrJxSERERERERERxSnwpyeMeMwbSnnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfJfJfJdCdCPdPddCEfKEhdPbhdhdNVMFspMFiAPdPmvkhdvkZOdCPdPddCdChBhBhBdChBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSudpApAxSERERERERERERERERERERERERERERxSvsNINIDHNINIDcDcDcNIxSsEHrGemymymymymymymymymymymyBIHCrJHCHCZMHCZMHCxSERERERERERxSnwHSHSvDPIshnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCrtRydChdhdhdhdhdhddCMFspMFdCPdvkhdeAoUIUdCrtRydChBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSERERERERERERERERERERERERERERxSvsNININIDcDcDcDcDcNIxSpqfPVrmymymymymyFFmymymymymyBIHCHCHCUbHCHCHCHCxSERERERERERxSsmeMcWcWcWvFsmxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBdCPdPddCEfKEhdHQgahddCMFWQMFdCPdPdPdPdPdPddCPdPddChBnphBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAxSxSxSxSxSxSxSxSxSERERERERERERxSxSxSxSxSxSxSxSxSsvxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSCgHCHCxSxSxSERERERERERxSnwnwnwnwnwnwnwxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBbIpKpKdCdCdCdCdCdCdCdCMFspMFdCdCdCdCdCdCdCdCpKpKbIhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAIHvsvsvsvsvsFAvsxSERERERERERERxSpApApApApApApApApApApApApAMQpAjUVCjUVCjUjUjUpApApApApApApApApAHCpABAERERERERERERxSpApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAMFMFMFMFMFMFMFMFMFMFMFspMFMFMFMFMFMFMFMFMFMFMFAAhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAIHFAvsvsvsvsvsvsxSxSxSxSxSxSxSxSpApApApApApApApAyypAWxpApApApAjUpApAyypALfpALfpApApApApApApApApAWxBAERERERERERERxSpApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVspspQespspaYspQespeSspWQspeSspQespaYspspQespspnVhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSpApApAIHvsvsFAvsvsvsvsgrvsvsvsvsvsgrvsvsvsELxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSvsvsvsvsvsvsBABAERERERERERERxSpApApApApApApAxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCMFMFMFMFMFMFMFMFMFMFMFspMFMFMFMFMFMFMFMFMFMFMFdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxSxSxSxSXXvsvsvsvsImvsvsvsvsELELELELELELXPELELxSERERERERERERERERERERERERERERERERERERERERERxSFSvsvsvsBAvsvsBAERERERERERERxSxSxSxSxSxSxSxSxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChprCdCxNxNdCdCdCdCdCdCdCdCPqRyRydCdCdCdCdCdCdCdCxNxNdCrCYUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxSbyvsvsvsvsvsvsvsvsELXPELELELELELELvsxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSvsvsvsbqvsvsiDBAERERERERERERERERERERERERERERxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCfrMFdCrtRydCugvkugvkvkvkvkvkvkvkvkvkvkvkugvkugdCrtRydCMFqidCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSpApApApApApApApARApApApApApApApApApARApAMQLfWxpApApApApApApApApABApAERERERERERERERERERERERERERERxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCPsdCLccqfrMFdCPdPddCvkvkvkvkXMvkvkvkWXvkvkvkXMvkvkvkvkdCPdPddCMFqicqfBdCWAdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAERERERERERERERxSpApApApApApApApApApApApApALfpApApApALfpApApApApApApApApApApApApApABAERERERERERERERERERERERERERERxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCVwdCLccqfrQWdCPdPddCvkvkvkvkvkczdCkodCkodCczvkvkvkvkvkdCPdPddCDgqicqfBdCVwdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAERERERERERERERxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSZcMpZcxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSxSERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuSMFLccqfrQWdCPdPddCugvkugvkvkdCnbRKRKRKfhdCSwvkugvkugdCPdPddCDgqicqfBMFuSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERHCHCHCERERERERERERERERERERERERERERERERERERERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCtzMFqispfrQWdCPdPddCvkvkvkvkegmcXIaMoDaMhjJrvkvkvkvkvkdCPdPddCDgqispfrMFtQdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERDWDWhvDWDWERERERERERERERERERERERERERERERERERERERERERxAxAxAqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAtzMFqiaYfrMFdCPdPddCvkvkvkvkvkrRXIxnhRtJhjrRvkvkvkvkvkdCPdPddCMFqiaYfrMFtQnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSUaUaUaUaUaUaUaUaUaUaUaUaUaxAxAERERERERERERERERERERERERERAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgERERERDWokokokDWDWDWDWDWERERERERERERERERERERERERERERERERERxAxAUaqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtzMFqispfrMFdCPdPddCugvkugvkvkmcXIaMkNaMhjJrvkvkugvkugdCPdPddCMFqispfrMFtQAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSUaUaUaUaUaUaUaUaUaUaUaUaUaxAxAERERERERERERERERERERERERERAgkkwvwvwvlVAgLUaexfAgLUaepAAgLUaexfAgERERERDWtcokokfvlxkUNrDWERERERERERERERERERERERERERERERERERxAxAUaqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVfrMFqieSfrMFRyPdPddCvkvkvkvkvkdCSHwHwHwHwFdCvkvkvkvkvkdCPdPdRyMFqieSfrMFqinVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSLYCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSUaUaUaUaUaUaUaUaUaUaUaUaUaxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAAgynNrNrNrBVAgpApApAAgpAFYpfAgpARnpAAgERERERDWokokokYvlxNrpZDWERERERERERERERERERERERERERERERERxAxAxAUaqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfrMFqispfrMFqbPdPddCvkvkvkvkvkugdCMxdCMxdCugvkvkvkvkvkdCPdPdqbMFqispfrMFqidChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSUaUaUaUaUaUaUaUaUaUaUaUaUaxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAAgynlxLglxTSAgpApApAAgpApApAAgpApApAAgERERERDWDWhvDWDWDWQFDWDWAgAgAgERERERERERERERERERERERERERxAxAxAUaqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdWsNmqJHyLOBdCPdPddCugvkugvkXMvkvkvkvkvkvkvkXMvkugvkugdCPdPddCOBhJJHdWAfPydChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspKkRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgixdBWllxmFAgcyAzcyAgcyAzcyAgcyAzcyAgAgAgAgAgXxDiwvwvzWwvwvGqMllVAgERAgAgAgAgAgAgAgAgAgAgERERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCzUzUdCPdPddCvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkdCPdPddCzUzUdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgRTzRNrJOutMlwvwvwvwvwvwvwvMlwvMrwvMlwvwvlVAgcPNrNrNrNrNrNrIlNrBVAgERAgKjxGvpEyEyvpxGdTAgERERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBhBhBdChBhBdCPdPddCdCdCdCdCdCdCdCPqRyRydCdCdCdCdCdCdCdCPdPddChBhBdChBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBwgzvLJLJLJzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgvftXpPcmBCpPpPpPpPpPpPpPpPpPpPpPpPsHpPpPDswGWWNrNrNrwsNrNrbONrBVAgERAgatXjXjXjXjXjXjqxAgERERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBdCPdTiPdPdPdPdPdPdRyOQMFspMFjyRyPdPdPdPdPdPdTiPddCtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgcycyAgcPBVAgcyAzcyAgcyAzcyAgcyAzcyAgAgAgAgAgRlNroWNrNrWoWoIiBgBVAgAgAguuonnqXjXjpConuuAgERERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBdCSEPdPdPdPdPdPdPdFEOQMFWQMFjyFEPdPdPdPdPdPdPdSEdChBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgPMsoOSEjBVAgpApApAAgpApApAAgpApApAAgERERAgXxezwsNrNrNrNrNrNrNrutnoAgAgsFXjXjXjXjXjXjEvAgERERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCWgFwdCdCdCdCdCdCdCMFspMFdCdCdCdCdCdCdCWgFwdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgFHcrkxcPBVAgpAqMpAAgpAwupAAgpAFCpAAgERAgAgcPWoWoNrwsFBwsmxNrmxNrCaAgAgHBkOUikDkDUikOlIAgAgERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCPtPtPtQGAsxiAUohQGdCMFspMFdCuxkPxiAUohlbPtPtPtdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpZtwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgpApAOSHqYgAgfmXvxfAgLUXvVqAgfmXvVqAgERAgUgHVNrGyNrNrNrNrNrwsNrNrxFVJOqwvwvwvwvwvwvwvwvhXjuERxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCPtPtPtPtPtPtPtPtPtdCMFWQMFdCPtPtPtPtPtPtPtPtPtdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgMmMmAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgERAgODpPsdkapPpPhopPhosdhopPYgAgNAcmNrNrNrNrNrNrNrNrAgAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtnAMFspMFnAPtPtsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAERAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgFoQuQuQuQuQuQuQuQueXAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBSqPtAAMFspMFAAPtSqhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAAgAgtdtdghXjXjrDzIsQsQAGAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBRehBhBRehBhBRehBPtPtnVMFWQMFnVPtPtaXhBhBaXhBhBaXhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAAgyEtdtdghluXjyrFiesuCUHAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgwQYudCMFspMFdCPtwQsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumZtPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgSiwztdghTFXjgoFinanaIcAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBPtPtdCMFspMFdCPtPthBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgzBtdtdghluXjyrFiepLeUHAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBcIhBhBcIhBhBcIhBPtPtdCMFWQMFdCKhPtXchBhBXchBhBXchBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgpBPxtdghTFDGgouWQuQuKpAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtdCMFspMFdCPtPtsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgAbAbYWYWsKWQQdLmQqSrPKwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAAgAgAgAgAgAgAgAgAgAgAgAgAgxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBwQPtnAMFspMFnAPtwQhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBVLhBhBVLhBhBVLhBPtPtAAMFWQMFAAPtPtzAhBhBzAhBhBzAhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgzUzUzUwgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAxAqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtnVMFspMFnVPtYusgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgOyOyOywgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCPtPtPtPtPtPtPtSqPtdCMFspMFdCPtSqPtPtPtPtPtPtPtdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSonphBhBMbMbOyOyOyMbMbnphBhBSohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCPtPtPtPtPtPtPtPtPtdCMFWQMFdCPtPtPtPtPtPtPtPtPtdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCdCdCdCdCCbFwdCMFspMFdCCbFwdCdCdCdCdCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCgxyodCSEPdPdPdPdPdOQMFspMFjyPdPdPdPdPdSEdCyogxdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBiegxgxiePdPdPdPdPdPdOQMFWQMFjyPdPdPdPdPdPdiegxgxiehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBiegxgxiePdPdPdPdtuPdOQMFspMFjyPdtuPdPdPdPdiegxgxiehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCKMgxdCSEPdPdPdPdPdOQMFspMFjyPdPdPdPdPdSEdCgxKMdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCrtRydCdCdCdCdCdCdCdCdCdCdCrtRydCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfGGgOyMROyOynRmrzXnRXbspSGzXnRmrzXOyOyVvOySKlohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCOyVvOyOynRmrzXnRXbspSGzXnRmrzXOyOyMROydCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAOyRQOyOynRmrzXnRXbWQSGzXnRmrzXOyOyRQOynAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVOyOyOyOyOyfHYzYzWYsphbYzYzpUOyOyOyOyOynVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSmLmLmLmLmLmLmLmLmLmLmLqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCKePKOyOyOyhPYzikWYsphbEEqHSMOyOyOyPKKedChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSmLmLmLmLmLmLmLmLmLmLmLqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUdCOyLmQqSrOyOysKWQQdOyOyLmQqSrOydCzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLppppppppppppppYFmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCovdCOyCjYzYzYzCLWYsphbEEYzYzYziSOydCovdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLppFsFeppFsFeppYFmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUdCzGuGzrzGsKspQdMBuGzrMBdCzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFYFYFKbYFYFeNYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFMIYFppppppppppppppppppppppFsFsppFsFsppYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCovdCOyOyhPCLWYWQhbEESMOyOydCovdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFYFeNeNeNeNeNYFYFYFYFeNYFYFYFeNeNYFYFYFYFYFYFYFYFeNYFeNeNeNeNeNeNeNeNeNYFYFKbYFYFYFYFYFYFMIYFppZPVEPjZpWjsMePVEZPppuEppppuEppppYFYFYFYFYFYFYFYFYFYFoCoCoCoCoCoCoCoCYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCLmQqSrOysKspQdOyLmQqSrdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFeNeNeNeNeNeNYFYFYFYFYFYFYFYFYFYFYFYFYFKbYFYFYFYFYFYFYFeNeNeNeNeNYFYFeNeNeNYFYFYFYFYFYFYFYFYFMIYFppNRFsFsFsFsFsFsFsFsFsFsFsFsFsFsppYFYFYFYFYFYFYFYFYFYFoCelTYteTYelTYoCYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCCjYzYzCLifspMYEEYzYziSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFeNeNeNeNXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBYFYFYFYFYFYFYFYFYFeNYFYFYFYFYFYFYFYFYFYFYFMIYFppDEFsFsFsFsFsFsFsnyppFsFsgTFsFsppYFYFYFYFYFYFYFYFYFYFoCTYelTYmKelipoCYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCzUzUzUdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFeNeNYFXBrXrXrXrXrXrXrXrXrXrXrXrXrXrXrXrXrXrXXBXBFIFIFIFIFIFIFIFIFIFIevFIFIFIFIFIFIFIFIFIFIMIYFppAKFsFsFsFsFsFsFsTzppuEppppuEppppbDbDbDbDbDbDbDbDbDYFoCelvYIgzgelTYoCYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfJfJfJdCfJfJfJdCfJfJfJdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFYFYFXBrXwRwRnxgfAErXIQIQrXoAoAhuSywRwRwRrXXBXBFIFIFIFIFIFIFIFIFIFIFIFIFIYlFIFIFIFIFIFIFIMIYFppNRFsFsFsFsFsFsFsZPppFsFsppFsFsppbDWtCxMTecSgIoMMbDYFoCipelnMTYTYLAoCYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFKbYFYFYFXBtpwRwRRdhuwRrXIQIQrXwRwRhuwRwRwRwRtpXBXBUQoGoGoGoGoGoGoGoGoGoGoGoGoGoGoGoGoGoGoGneMIYFppDEIxyAYfFsNRapElQQppFsgTppFsgTppbDVYQoQoQoQoQokjbDYFoCoCQHoCoCoCoCoCYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBnphBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFYFYFYFrXgpwRCewRmSrXwRYArXwRwRPgwRwRwRwRrXXBXBlRFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIlRMIYFppppppppppVMppppppppppppppppppppppbDQoQoQoQoQoQoQobDYFYFYFYFYFYFYFYFYFYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFvMYFYFYFYFrXwRwRwRwRwRrXwRwRrXwRwRwBwRwRwRjJgOXBXBlRFIFIFIFIFIFIFIYlFIFIFIFIFIFIFIFIFIFIFIlRMIYFppuUyhgGFsFsNxHyhnQhndppmVvCDpmWppbDQoQoQoQoQoQoQobDYFYFMjMjMjMjMjMjMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFYFYFYFrXwRwRwRwRwRtpIQnJrXwRwRUPwRwRwROvgOXBXBlRFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIlRMIYFppFsFsFsFsFsIGFsFsFsHKppmWmWmWLGppbDSaRtNMPvKQbDQobDYFXBLDGaGaESGaZSMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFYFYFYFrXwRwRwRwRwRrXnJIQrXwRwRwRwRwRwRRbgOXBXBlRFIFIQaQaQaQaQagdgdgdQaQaQaQaQaQaQaQaFIlRMIYFppCDFsFsFsFsIGFsFsFsdbppRBmWmWLGppWRaAaAaAaAaAbDQobDYFbwMjcwGaESGaRGMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYFYFYFtYYFKbrXrXrXrXrXrXrXrXrXrXwRwRwRmgwRwRUPrXXBXBlRFIFIQalXjMQafadjQrBMozQalzQDJWHtzjQaFIlRMIYFppUEFsFsFsFsIGFsFsFszZpphWmWmWLGppWRVNVhVhVhVhIFeubDYFbwBGVdGaESGaoZMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJrXrXrXrXtprXrXrXrXrXrXXBXBlRFIFIQaotlXQaCGbGRPbYMNQaDQXFXFXFTbQaFIlRMIYFppTrFsFsFsFsFsFsgTFsFsCUmWmWmWhwppWRenenengcwtbDQobDYFbwBGXSGaESGanEMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJrXtRSywRwRwRrXFIFIFIlRXBXBlRFILIQaNPlXQaRPRPfcRPRPQaoTXFkLfxDLQaFIlRMIYFppppVMVMppZaZappppppppppppppppppppbDbDbDiiiibDbDddbDYFbwMjSeGadnGarPMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJrXJewRSUwRrGrXFIFIFIlRXBXBlRFITNQaQaaVQaxdQaQaQaxdQaQaqmQaQaQaQaFIlRMIGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmbwMjMjMjMjMjMjMjYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJrXnSwRcdwRnSrXFIFIFIlRXBXBLVFIFIiUahjEvBJiXOHGXOJiXOXOJiXOHGjnQaFIlRMIvaYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFXBXBGmGmGmGmXBXBXBXBXBXBXBXBYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJrXPuwRIBwRnSrXFIFIUNlRXBXBlRFIYlQaqnhCydFWQSFWQSFWFWFWQSFWBmXCQaFIlRMIvaeNYFYFYFYFYFYFYFYFYFKbYFYFYFYFYFYFYFYFYFYFXBbwNhNhNhNhNhNhNhNhNhNhNhNhYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJrXrXrXrXrXrXrXoGFmoGPpXBXBlRFIQaQaMEQaQaQaqmQaqmQaQaQaaaQaUVXCQaFIlRMIvaYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFKbYFYFXBbwNhJGEMLSJGEMJGknJGJGLCNhYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLYJYJYJYJYJYJYJYJYJYJYJYJYJXBXBXBXBXBXBXBXBXBXBXBXBXBlRFIQaZGNZQaxvCiXFQaXFNXVBQaGJQaUVXCQaFIlRMIbwYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFXBbwknJGJGEXtlJGJGNhEaJGgwNhYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLPiEsEsEsEsEsEsEsEsEsEsEsEsEsXBAvAvAvAvAvAvAvAvAvAvYFlRFIQalKNZQacVXFGCQaXFXFKHQaDlQaUVyBQaFIlRMIbwYFYFYFdDROROGmGmGmGmGmGmGmGmRORONwYFYFYFYFXBbwNhJGJGJGJGJGJGNhXYJGwXNhYFmLmLqSqSqSqSqSqSqSqSMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsuzbjfnUdOOvEananibananpvEsXBAvhguLhghghghghgcQAvYFlRFIQalKNZQahGHcXFzlXFVfQEQaZUQaUVXCQaFIlRMIbwYFYFYFmInvIbfqeNeNYFYFYFYFkdIbnvjqYFYFYFYFXBbwNhJGJGJGJGJGdUNhXYJGtxNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsananananOOvEananEsGWanWOEsXBwihghghgZjhghghgDFAvYFlRFIQaQaMEQaQaQaqmQaqmQaQaQaQaQaUVRxQaFIlRMIbwYFYFYFmIIbKgPWeNeNYFYFYFYFkdIbIbjqYFYFYFYFXBbwNhmjgWbxgbJGJGNhkiJGwXNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsvGAhananOOtganhTEspSVeTuEsXBAvhghghgAvWvhghgtOAvYFlRFIFIQaRIasvBXOJiNKJiPrQaNYyigdUVyBQaFIlRMIbwYFYFYFGmrbrbYFireNYFYFYFirYFrbrbGmYFKbYFYFXBbwNhNhNhNhNhJGJGNhNhNhNhNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsOOiBsuanOOAZanyJEsEsEsEsEsXBAvhghghgAvMAhghgstAvYFlRFIFIQaKwDdDIlFRIMiRIhEQacsXFzkiFXCQaFIlRMIbwYFYFKbGmYFYFYFYFYFtWtWYFYFeNeNeNGmYFYFYFYFXBbwNhFUdIdIzsJGJGPEPAPAPANhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsanZisuanOOrvanJgjGEKyeRiEsYFAvnsouhgAvEmgmDUhgAvYFlRFIFIQaMhbMJndQRIRIRIhEQaCsXFgdCBXCQaFIlRMIbwYFYFYFGmYFYFYFPYgvoPoPEFYFeNeNYFGmYFYFYFYFXBbwNhFUdIdINhJGJGNhWMPAPANhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsanBksuanOOoNanananananYjEsYFAvbNAvAdAvAvAvAvAvAvYFlRFIFIQaCYFWFWAYQSQSFWiwQaKxXFQaYqXCQaFIlRMIbwYFYFYFGmYFYFYFSdoPoPoPoPNdeNeNYFGmYFYFYFYFXBbwNhigbfQINhJGJGNhUcrAPQNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsananananOOljXsDMvEDftGvEEsYFAvhgjztihgTXQtIahgAvYFlRFIFIQaQagdgdQaDjRIQaQaQaXFXFgdeLyBQaFIlRXBXBYFYFYFGmYFYFYFSdoPoPoPoPNdYFYFYFGmYFYFYFYFXBXBNhNhNhNhNhEaJGNhNhNhNhNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsJPyNyNyNanCuCuCuCuCuCuCuEsYFAvhghghghghghghghgAvYFlRFIFIFIFIYlWBulAWAWaWFIQaFPXFzkiFXCQaFIlRbwYFeNeNeNxgeNeNYFPYOMoPoPuyYFYFYFYFGmYFYFYFYFXBXBNhWMPAPAPEJGJGzsdIFUFUNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsyNyNyNyNananananananananEsYFAvhghghghghghghgoxAvYFlRFIFIFIFIFIFIYlAWAWFIaWQaETjcgdgVYYQaFIlRbwYFYFeNeNxgeNeNeNYFYFHAHAPYYFYFYFYFGmYFYFYFYFXBXBNhWMPAPANhJGJGNhdIdIdINhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsyNyNyNdVananananuAanananEsYFAvHMGEhghgdSQlqAFLAvYFlRFIFIFIFIFIFIFIAWAWFIFIQaQaQaQaQaQaQaFIlRbwYFYFeNeNxgdNdNYFirYFYFYFYFirYFUTUTGmYFYFYFYFGmXBNhUcrADKNhEaJGNhigbfoyNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLEsEsEsEsEsEsEsEsEsEsMKibibEsYFAvAvAvAvHuAvAvAvAvAvYFlRFIFIfpFIFIFIFIAWAWFIFIFIFIFIFIFIFIFIFIlRbwYFYFYFeNTRaqaqfqYFYFYFYFYFYFkdIbIbjqYFYFYFYFGmKBNhNhNhNhNhNhNhNhNhNhNhNhYFmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMImLmLmLmLmLmLmLmLmLmLmLmLmLjQYFbwbwYFYFYFziziYFbwYFYlYlYFYFYFEPoGoGoGoGoGsnFIAWAWFIMDoGoGoGoGoGoGoGoGPpbwYFYFYFYFmInvIbfqYFYFYFYFYFYFkdIbnvjqYFYFYFYFGmKBmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmXBYFYFYFYFNwgZgZGmGmGmGmGmGmGmGmgZgZNwYFYFYFYFGmehWLehehehehehehehehehehehehehmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQOovyvyvyvydOdOdOdOdOdOdOdOdOYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFQfQfhiFaQfQfQfQfFaQfQfQfQfcaehmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQOovyvyvyvydOdOdOdOqKdOdOdOdOYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFKbYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFQfQfhiQfQfQfQfQfQfQfQfQfQfzuehmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQOovyvyvyvydOdOdOdOdOdOdOdOdOYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFKbYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFKbYFYFYFYFYFYFYFYFYFYFYFYFYFQfQfhiQfQfQfQfQfQfQfQfQfQfzuehmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQOovyvyvyvydOdOdOdOdOdOdOdOdOYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFQfQfhiTgQfQfQfQfTgQfQfQfQfzuehmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQOovyvyvyvydOdOdOdOdOdOdOdOdOYFYFYFYFYFYFYFYFKbYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFYFjQjQMIYFYFYFYFMIjQjQjQjQjQjQjQjQjQjQehWLehehehehehehehehehehehehehmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmGmMIYFYFYFYFYFjQjQJCJCYFYFsBsBjQmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIYFYFYFYFYFjQjQJCMCYFYFgHsBjQmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oImLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIYFYFYFYFYFjQjQJCJCYFYFsBsBjQmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oImLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIYFYFYFYFYFjQjQjQjQjQjQjQjQjQmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIoIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oImLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIYFYFYFYFYFjQmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLmLMIoIabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababrEabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIaGaGaGaGaGjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIMIGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPxcPZaWaWFIFIFIFIFIFIFIFIaWaWaWFIaWFIFIhVaWFIbPFIFIaWFIFIaWFIFIiqFIaWiJLbLbLbGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAcxQxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIvtGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPMcFIFIFIaWaWFIFIaWFIFIFIMcFIFIFIFIaWFIFJaWaWFIaWFIFIMcaWFIaWLbaWLbfMxALbnKnKnKGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQDYhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIGPGPQMQMQMQMQMQMQMGPGPGPKrBZBZYnGPGPGPGPFIFIFIFIFIFIFIbPaWaWFJaWFIFIaWFIFJhVaWFIaWFIaWFIFJFIaWFIFIiJbPiJLbLbLbnKnKnKnKnKnKnKGPGPGPGPGPnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgjgjgjgjjjjjjZAvOvOQTNQvOvOvOGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAchBhBhBhBxQhSIwHIVQWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIGPGPQMZebbCztVrWQMGPBLBZBZBZBZBZBZGPGPGPFIFIaWiqFIFIaWFIFIFIaWFIFIFIaWFIaWaWbPaWFIFIaWFIFIaWFIMcaWiJaWFIfMLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgOcjgjgjgjgjgjjjjjjeVoevOvOvOFhOTacvOvOacGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQprprxQDYxQxQhyxQxQUIrLDqdXWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIGPGPQMBixHOROpadQMBZBZBZBZBZBLBZBZGPGPGPbPFIaWFIFIbPFJFIbPFIFIaWFIFIiqaWMcFIFIaWaWFJaWMcaWFIFIaWLbiqLbLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgGPGPGPjjjjjjjjZAvOvOIpvOvWcovOvOvOlmvOTEGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSTBTBICbtxuOFAJhKxQBjURsqqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIOuGPGPQMjWTHftOCoKQMBZBZBZBZGPBZBZlCGPGPGPGPFIaWFIFIFIaWFIFIFIFIiqaWFIaWaWFIFIaWaWFIaWaWFIFIFJFIaWaWiJfMLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjwjrZwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOrVvOvOvOacvOvOvOlmGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAQEVYECmltcJcJcJcJtbxQTOURDqiVWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIGPGPQMSYwrwrwrSYQMBZBZBXGPGPGPBZBZGPGPGPGPFIFIFIFIFIFIFIFISJFIFISJSJFISJSJSJFItTFIFIFIFIFISJFISJSJFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdwjfkwjGPwjsAGPGPwjGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPvOnTmkvOvOvOHUacvOacGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSkykyuhJMyQcOAJobxQTOURDqMzWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIvtGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPMcFIFIFIaWaWFIFIaWFIFIFIMcFIFIFIFIaWFIFJaWaWFIaWFIFIMcaWFIaWLbaWLbLbLbUFnKnKnKGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQDYhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIGPGPQMQMQMQMQMQMQMGPGPGPKrBZBZYnGPGPGPGPFIFIFIFIFIFIFIbPaWaWFJaWFIFIaWFIFJhVaWFIaWFIaWFIFJFIaWFIFIiJbPiJLbUFLbnKnKnKnKnKnKnKGPGPGPGPGPnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgjgjgjgjjjjjjZAvOvOQTNQvOvOvOGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAchBhBhBhBxQhSIwHIVQWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIGPGPQMZebbCztVrWQMGPBLBZBZBZBZBZBZGPGPGPFIFIaWiqFIFIaWFIFIFIaWFIFIFIaWFIaWaWbPaWFIFIaWFIFIaWFIMcaWiJaWFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgOcjgjgjgjgjgjjjjjjeVoevOvOvOFhOTacvOvOacGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQprprxQDYxQxQhyxQxQUIrLDqdXWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIGPGPQMBixHOROpadQMBZBZBZBZBZBLBZBZGPGPGPbPFIaWFIFIbPFJFIbPFIFIaWFIFIiqaWMcFIFIaWaWFJaWMcaWFIFIaWLbiqLbLbLbLbUFnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgGPGPGPjjjjjjjjZAvOvOIpvOvWcovOvOvOlmvOTEGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSTBTBICbtxuOFAJhKxQBjURsqqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIOuGPGPQMjWTHftOCoKQMBZBZBZBZGPBZBZlCGPGPGPGPFIaWFIFIFIaWFIFIFIFIiqaWFIaWaWFIFIaWaWFIaWaWFIFIFJFIaWaWiJfMLbLbLbUFnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjwjrZwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOrVvOvOvOacvOvOvOlmGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAQEVYECmltcJcJcJcJtbxQTOURDqiVWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIGPGPQMSYwrwrwrSYQMBZBZBXGPGPGPBZBZGPGPGPGPFIFIFIFIFIFIFIFISJFIFISJSJFISJSJSJFItTFIFIFIFIFISJFISJSJFIFILbLbUFnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdwjfkwjGPwjsAGPGPwjGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPvOnTmkvOvOvOHUacvOacGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSkykyuhJMyQcOAJobxQTOURDqMzWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIOuGPGPQMQMKdKdKdQMQMBLBZGPGPGPlCBZBZGPGPGPCZARnulONJNJCZccqRIuaFaFCZpXHYThmwmwCZwhrnbZPnPnCZFINNFINNLbBRLbBRLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjWkWkWkWkTTGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPacvOmemeUuvOvOvOvOacvOGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQxQxQxQhSilrpxQxQhSxYRUqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIMIGPGPIKQMzTzTzTQMBZBZBZGPGPGPBZBZBZGPGPGPCZDRDRDRDRBDCZwNwNwNwNdsCZEwEwEwEwlLCZaRaRaRaRZQCZMcFIyxFILbNNLbLbnKnKnKnKnKaZnKnKYonKnKnKnKnKnKnKaZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgGPGPGPGPGPGPGPvOmememezolmvOlmvOTEacGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcxDYoddYwyxQZvXZGkXZNTpQrSJFWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIGPGPBZBvBZBZBZBvBZBZGPGPGPBZBZBZBZGPGPGPCZDRDRyTDRDRCZwNwNQRwNwNCZEwEwdAEwEwCZaRaRPeaRaRCZFIyxFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqNqqDjgjgjgqDjgjgjgjgGPGPGPGPGPGPGPGPjgjgjgjgjgjgGPGPGPGPGPGPvOlmmememevOvOHUvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSFrdfMvxQdzxQxQxQhSxtlPlfWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIGPGPBZBvBZBZBZBvBZBZGPGPGPBZBZBZBZGPGPGPCZDRDRyTDRDRCZwNwNQRwNwNCZEwEwdAEwEwCZaRaRPeaRaRCZFIyxFIFIFIFILbLbUFnKnKnKnKnKnKnKnKnKnKnKYonKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqNqqDjgjgjgqDjgjgjgjgGPGPGPGPGPGPGPGPjgjgjgjgjgjgGPGPGPGPGPGPvOlmmememevOvOHUvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSFrdfMvxQdzxQxQxQhSxtlPlfWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIMIGPGPBZBZBZBZBLBZBZBZGPGPBZBZBZBZYnGPGPGPCZSLDRCZCZCZCZjkwNCZCZCZCZksEwCZCZCZCZviaRCZCZCZCZFIFIFIMcFIFILbLbnKnKnKEdnKnKnKnKnKnKnKnKEdnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqNqjgjgjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPjgjgjgjgGPGPGPGPTEvOvOmelmmevOvOvOacvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAQHsYbOYeOOfFqxQqdrKxQXGSuhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIOuGPGPGPGPBXBZBZBZBLGPGPGPBZBZlCGPGPGPGPGPCZuwGTqGJXPVCZDvurqGJXPVCZSVeHqGJXPVCZUSHhqGJXPVCZUFFIyxFILbFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdNqNqNqNqNqjgjgjgjgjgjgjgjgjgjgjgGPGPGPjgjgjgjgGPGPGPjgjgjgjgGPGPGPGPvOacvOHUvOvOvOKYvOvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQprxQhScMOYBJhSgKqhexAJxQAVVTGUxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIvtFIGPGPGPGPGPGPGPGPGPGPKrBZBZGPGPGPGPGPUFCZgYDRyazSwVCZQkwNyazSwVCZEpEwyazSwVCZZKaRyazSwVCZUFFJFIyxFILbLbLbnKnKnKnKnKnKnKnKQcnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdwjwjWkWkWkWkWklJjgjgjgjgjgjgjgjgjgjgGPGPGPjgjgjgjgGPGPGPGPjgjgjgGPGPGPGPGPvOvOvOlmvOlmvOvOTEGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBTqAQaHZHOHxQSAOYidLTsSxQPFAJxQpPFHwoWPfZhShShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIOuaWGPGPGPGPGPGPGPGPGPGPBZBZBZGPGPGPGPFIUFCZqGJtqGCZCZCZqGBfqGCZCZCZqGXJqGCZCZCZqGmQqGCZCZCZyxFIFIFILbLbLbLbnKnKnKQcnKnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKEdnKnKnKnKnKnKnKnKnKgUnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdKiOdwjGPwjwjCEGPGPwjmLmLmLmLmLjgjgjgjgqDjgjgjgGPGPGPjgqDjgjgjgGPGPGPjgjgjgGPGPGPGPGPacvOKYvOvOimvOacGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBgMVFrUmtdlxQIXQpLHhSFqbFULAJxQUGVSjuseCkeqOeBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIayFIFIFIGPGPGPGPGPGPFIGPeaeaGPGPGPFIFIyxFIFIhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMUFFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjwjrZwjwjmLmLmLmLjgjgjgjgjgjgGPGPjgjgjgjgjgjgjgGPGPjgjgjgGPGPGPGPGPGPvOvOacvOvOvOvOGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBAQtBAXmtGnhSxQxQxQxQtIxQNGjRxQtyvbjuIVLRaDSZBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIvtFIGPGPGPGPGPGPGPGPGPGPKrBZBZGPGPGPGPGPUFCZgYDRyazSwVCZQkwNyazSwVCZEpEwyazSwVCZZKaRyazSwVCZUFFJFIyxFILbLbLbnKnKnKnKnKnKnKnKQcnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdwjwjWkWkWkWkWklJjgjgjgjgjgjgjgjgjgjgGPGPGPjgjgjgjgGPGPGPGPjgjgjgGPGPGPGPGPvOvOvOlmvOlmvOvOTEGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBTqAQaHZHOHxQSAOYidLTsSxQPFAJxQgkJJwoWPfZhShShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIOuaWGPGPGPGPGPGPGPGPGPGPBZBZBZGPGPGPGPFIUFCZqGJtqGCZCZCZqGBfqGCZCZCZqGXJqGCZCZCZqGmQqGCZCZCZyxFIFIFILbLbLbLbUFUFnKQcnKnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKEdnKnKnKnKnKnKnKnKnKgUnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdKiOdwjGPwjwjCEGPGPwjmLmLmLmLmLjgjgjgjgqDjgjgjgGPGPGPjgqDjgjgjgGPGPGPjgjgjgGPGPGPGPGPacvOKYvOvOimvOacGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBgMVFrUmtdlxQIXQpLHhSFqbFULAJxQUGVSHgseCkeqOeBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIayFIFIFIGPGPGPGPGPGPFIGPeaeaGPGPGPFIFIyxFIFIhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMUFFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjwjrZwjwjmLmLmLmLjgjgjgjgjgjgGPGPjgjgjgjgjgjgjgGPGPjgjgjgGPGPGPGPGPGPvOvOacvOvOvOvOGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBAQtBAXmtGnhSxQxQxQxQtIxQNGjRxQtyvbHgIVLRaDSZBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIOuFIFISJNNGPGPGPGPFIyxyxUFUFUFFIFIFIFIbSfEFIbSFIFIyxyxFIfEbSFIyxFIfEFIFIaWJQFIFIFIFIFIFIFIFIFIyxyxFIFIFILbLbnKnKnKnKnKYonKnKnKnKnKnKEdnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjmLmLjgjgjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPjgjgjgGPGPGPGPGPGPTETEimvOvOvOGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBAQtBmtmthziCXZXaXZXZQPxQxQxQxQqWDqjfhSzeslEYiMhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIOubPFIFIFIFIFIFIFIxIFIFIUFUFgNFIUFUFFIUFUFUFFIUFFIFIUFUFFIFIUFUFUFFIyxFIbSbSFIaWFIbSFIFIFIFIFIFIFIFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKthJpwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLjgjgjgjgjgGPjgjgqDjgGPjgjgjgjgGPjgjgjgGPGPGPGPGPGPGPGPGPacvOTEGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBAQtBmtmtrwhSxQxQxQxQFqxQfRTjxQVmDqxkhSxQxQhSBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIFIFIFIFIFIFIJQFIFIFIFIFIUFUFUFFIFIGLJCQNFIFIbSFIFIjBFIFIFIFIUFFIFIFIUFUFulFIFIFIFIfEFIMcFIFIFIFIfEFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKaZnKnKnKYonKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgqDGPjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBgMVFRwjwtZxQECBzdkhSZvwTtPSCxQcCKbMrnLENHgjiBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIaWFIFIFIFIJQFIFIFIFIbSFIUFFIFIFIbSJCUWHpFIFIFIFIFIFIFIFIfEFIUFMcFIYlJQfEFIFIlHFIUFUFFIbSFIFIbSFIUFFILbLbLbLbnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgGPjgjgjgjgGPGPjgjgjgGPjgqDjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBTqAQcbKnUhxQRqOlgyPDsSxQSCSDxQgkRUDqDqSshSxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIFIFIFIFIFIFIJQFIFIFIFIFIUFUFUFFIFIGLJCQNFIFIbSFIFIjBFIFIFIFIUFFIFIFIUFUFulFIFIFIFIfEFIMcFIFIFIFIfEFILbLbUFnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKaZnKnKnKYonKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgqDGPjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBgMVFRwjwtZxQECBzdkhSZvwTtPSCxQcCDqDqnLENHgjiBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIaWFIFIFIFIJQFIFIFIFIbSFIUFFIFIFIbSJCUWHpFIFIFIFIFIFIFIFIfEFIUFMcFIYlJQfEFIFIlHFIUFUFFIbSFIFIbSFIUFFILbLbUFLbnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgGPjgjgjgjgGPGPjgjgjgGPjgqDjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBTqAQcbKnUhxQRqOlgyPDsSxQSCSDxQgkRUDqDqSshSxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIMIFIFItTFJFIFIFIaWFIycFIFIFIFIyxFIFIJCJCJCFIFIFIFIFIMcFIaWFIUFUZFIFIFIFIFIFIWBFIFIFIFIFIUFFIFIFIFIyxFILbLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgjgjgOcjgjgGPGPjgjgjgGPjgjgjgGPGPGPwWrmGPGPGPGPGPGPGPGPGPvOvOGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBTqgMxQprxQhSaUqrJLhSwlbFvZkcxQAVVTuMSshSxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIvtaWSJFINNFIulFIFIFIyxbSUFbSFIFIMcFIaWFIFIFIFJFIFIFIFIFINbFIUFUFFIzYFIFIgNFIFIFIFIFIFIFIbSFIfEFIyxFIbSFILbLbLbnKnKYonKnKnKnKnKaZnKnKnKnKYonKnKaZnKnKnKpzuIoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPejYMGPGPGPGPGPGPGPvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBTqTqhBxQxQlexxUvxQFqxQvHjRxQXGSuhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIFISJtTFIFIFIFIlHFIfEUFFIFIgNFIFIFINbFIrqyxFIYlFIFIaWFIFIFIUZUZFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdXTOdOdOdOdOdOdmLmLmLmLjgjgqDjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPvOvOvOvOvOvOvOvOvOvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSfsXiXgxQdzxQxQxQhSjrlPRMWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIMcFIFIFIFINbFIFIbSFIFIbSFIFIFIFIFIFIFIFIgNlHFIYyYygNFIlHFIUFUZFIFIYyYyFIFIFIUFFIlHFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopuIpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLjgjgjgjgjgGPGPjgjgqDjgjgjgjgGPGPGPGPGPvOvOvOItItItItItvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQxQxQxQfLeFgBXZRzIyrSGYWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIhVFIFIaWFIFIlHlHNbUFFIFIFIFIFIFIFIFIFIFIFIFIFIlkwjwjbSFIJzUZUZpFwjkWlkwjFIFIFIFIFIFIFIFINbFIFIFIFIFIFIFILbLbnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLjgjgjgGPGPGPjgjgjgjgjgGPGPGPGPGPGPvOvOvOItOwOwySItvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQhSGhhSxQxQhSIhJJqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIFISJtTFIFIFIFIlHFIfEUFFIFIgNFIFIFINbFIrqyxFIYlFIFIaWFIFIFIUZUZFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIUFUFLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdXTOdOdOdOdOdOdmLmLmLmLjgjgqDjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPvOvOvOvOvOvOvOvOvOvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSfsXiXgxQdzxQxQxQhSjrlPRMWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIMcFIFIFIFINbFIFIbSFIFIbSFIFIFIFIFIFIFIFIgNlHFIYyYygNFIlHFIUFUZFIFIYyYyFIFIFIUFFIlHFIFIFIFIFIFIFIFIFIFIFIUFUFnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopuIpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLjgjgjgjgjgGPGPjgjgqDjgjgjgjgGPGPGPGPGPvOvOvOItItItItItvOvOGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQxQxQxQfLeFgBXZRzIyrSGYWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIhVFIFIaWFIFIlHlHNbUFFIFIFIFIFIFIFIFIFIFIFIFIFIlkwjwjbSFIJzUZUZpFwjkWlkwjFIFIFIFIFIFIFIFINbFIFIFIFIFIFIFILbUFnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLjgjgjgGPGPGPjgjgjgjgjgGPGPGPGPGPGPvOvOvOItOwOwySItvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQhSGhhSxQxQhSIhJJqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIayFIFIFINbFIgNFIFIFIFIbSFIFIFIFIFIlHFIFIFIFIFIbSwjkWwjwjwjApUZUZHzwjOdOdwjFIFIFIFIMcFIaWFIFIlHFIFIFIFIFILbLbLbnCnKnKnKnCnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLmLjgjgGPGPGPGPjgjgjgGPGPGPGPGPGPGPvOvOvOItOwaKjdItvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBLlBOhShSmZyWQgDqZdWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIaWSJFIFIFIFIWBaWUFFIFIFIFIFIFIFIFIFIFIFINbFIFIwjwjOdKJOduVUZUZijOdOdOdwjFJFIFIFIFIFINbFIgNFIFIFIFIFIFILbLbLbnKnKnKQcnKnKnKnKnKnKnKnKnKYonKEdnKnKnKEdnKnKnKnKnKnKnKnKnKnKgUnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOvOvOsckGOwkGssvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBFcDYbmIygzDqVsWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIOuFJSJFIlHFIFIFIbSUFFIFIFIFIFIFIFIMcFIaWFIFIlHlHNbwjyuOdyuOdOdOdOdyuGVwjwjFIYlUFFIaWFIFIFIFIWBFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOvOvOvOOwkGOwvOvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQKqgjUCDqqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIaWSJFIFIFIFIWBaWUFFIFIFIFIFIFIFIFIFIFIFINbFIFIwjwjOdKJOduVUZUZijOdOdOdwjFJFIFIFIFIFINbFIgNFIFIFIFIFIFILbLbLbUFnKnKQcnKnKnKnKnKnKnKnKnKYonKEdnKnKnKEdnKnKnKnKnKnKnKnKnKnKgUnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOvOvOsckGOwkGssvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBFcDYbmIygzDqVsWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIOuFJSJFIlHFIFIFIbSUFFIFIFIFIFIFIFIMcFIaWFIFIlHlHNbwjyuOdyuOdOdOdOdyuGVwjwjFIYlUFFIaWFIFIFIFIWBFIFIFIFIFIFILbUFUFnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOvOvOvOOwkGOwvOvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQKqgjUCDqqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIMIMcSJNNFIFJFIFIFIFIbSFIFIFJFIFIFIFIFINbFIgNFIFIfEwjGVOdOdOdOdOdOdOdOdwjgNlHFIFIFIgNFIlHFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKgUnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOqqjmqqvOvOvOvOGPGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSGQDqDqAqWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIOuaWSJFIWBFIFIFIlHUFFIrqFIFIYlFIFIaWFIFIFIFIWBaWFIwjOdOdyuXlOdOdyuOdVxwjbSFIFIaWJQFIFIFIFJFIFIFIFIFIFIFILbLbLbnKnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPGPGPGPGPJjEGvOvOvORfvOvOvOvOGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSwnZwHPWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIOuaWSJFIFIFIFIFIhNFIbSFIgNlHFIFIFIgNFIlHFIFIFIFIFIwjOdOdOdOdOdOdOdXlkWwjFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPGPGPGPyzyzZRJjqLyZyZJjJjJjGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQDYhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIayFIFIFINNFIFIFIFIFIFIFIFIFIFIaWJQFIFIFIFJFIFIFIFIwjlkwjwjkWwjwjwjwjwjwjFIUFFIFINbFIFIFIycFIFIFIFIFIFIFIFIFILbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKaZnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdCEGPGPGPGPWkWkoEyzZRJjJjJjJjJjJjGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxjxQxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIOuaWSJFIFIFIFIFIhNFIbSFIgNlHFIFIFIgNFIlHFIFIFIFIFIwjOdOdOdOdOdOdOdXlkWwjFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIUFLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPGPGPGPyzyzZRJjqLyZyZJjJjJjGPGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQDYhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIayFIFIFINNFIFIFIFIFIFIFIFIFIFIaWJQFIFIFIFJFIFIFIFIwjlkwjwjkWwjwjwjwjwjwjFIUFFIFINbFIFIFIycFIFIFIFIFIFIFIFIUFLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKaZnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdCEGPGPGPGPWkWkoEyzZRJjJjJjJjJjJjGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxjxQxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIMIFIFIFIFIFIyxFIyxUFFIFIFIyxFIFIFIaWFIWBFIFIFIlHFJFIrqwjwjwjYyYyYylkwjwjFIFIaWFIFIlHlHNbFIFIFIFIFIFIFIFIFILbLbnCnKnKnKnCnKnKnKaZnKnKnKnKEdnKnKnKpzopuIpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdwjwjGPGPWkWkWkWkWkoEyzyzZRJjiEJjGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIiqFINNFIFIJQFIbSFIFIFIaWFIFIFIFIFIFIFIFIFIFIFIFIFIFIgNlHfEFIFIJQFIFIFIFIFINbFIgNFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKYonKnKnKnKnKnKnKEdpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPWkWkWkWkWkWkWkWkoEyzyzyzGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIaWSJFIFIFIFIFIfEUFfEFIFIaWFIFIFIFIFIFIFIFIJQFIFIFIFIFIFIFIaWJQFIFIFIFJFIFIFIFIFIWBaWFIFIFIFIFIFIFIFIFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjsAGPWkWkWkWkWkWkWkWkWkWkWkWkWkGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIiqFINNFIFIJQFIbSFIFIFIaWFIFIFIFIFIFIFIFIFIFIFIFIFIFIgNlHfEFIFIJQFIFIFIFIFINbFIgNFIFIFIFIFIFIFIFIFIFIFIUFUFLbLbnKnKnKnKnKnKnKYonKnKnKnKnKnKnKEdpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPWkWkWkWkWkWkWkWkoEyzyzyzGPGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
+oIMIaWSJFIFIFIFIFIfEUFfEFIFIaWFIFIFIFIFIFIFIFIJQFIFIFIFIFIFIFIaWJQFIFIFIFJFIFIFIFIFIWBaWFIFIFIFIFIFIFIFIFIUFLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjsAGPWkWkWkWkWkWkWkWkWkWkWkWkWkGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIDDFISJFIFIFIFIFIFIUFfEFIFIJQFIFIJQFIFJzYFIFIxIFIFIFIFIFIyxFIFIFIFIaWFIFIUFFIlHFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKEdnKQJsxlEpWnKnKnKnKnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjWkWkWkTTWkWkWkWkWkWkWkWkWkGPGPjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
oIGbaWSJtTFIFIFIFIntUFntFIFIFIFIFIaWFIFIFIJQFIFIaWFIFIFIFIFIFIFIulFIFIFIFIFIFIFIFJFIFIFIFIFIFIFIFJFIFIFIFIFILbLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKpzWflSpWnKnKgUnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPwjwjwjwjwjwjwjwjwjwjwjwjwjGPsAjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab
-oIMIFIFItTFIFIFJmvmvyamvmvvvvvvvmvmvmvmvmvmvFIFIFIFIFIMcFIYlJQFIFIFIlHFIFIFIFIWBFIFIFIlHFIFIrqFIFIYlFIFIFIFILbLbLbLbnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKaZnKnKnKpziRoppWnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjCEwjwjwjOdOdOdOdxsOdOdwjwjwjGPwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdehBhBhBhBhBdehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsghBhBsgsgsgsgsgsgsghBhBhBhBhBcAcAcAhBhBhBsgcAcAcAsgJZsgsgsgsgab
-oIMIFJFIFIFIMcmvmvuNdFWumvmvmvmvmvZrzNiPZCmvmvmvFIFIFIFIFIFIFIFIFIWBFIFIUFFIFIFIFIFIFIFIFIFIFIgNlHFIFIFIFIFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKASnKnKnKnKYonKnKnKnKnKnKpzuIZopWnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPwjwjOdOdOdOdOdOdOdOdOdwjwjwjwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBNzhBhBdeKIqXqXqXMgdehBhBNzhBhBhBhBhBhBhBhBhBhBhBhBhBhBGOGOGOGOGOGOGOGOGOGOGOGOGOhBhBcAhBhBhBsghBhBcAcAcAhBmlcAcAhBhBab
+oIMIFIFItTFIFIFJmvmvyamvmvvvvvvvmvmvmvmvmvmvFIFIFIFIFIMcFIYlJQFIFIFIlHFIFIFIFIWBFIFIFIlHFIFIrqFIFIYlFIFIFIFILbUFUFLbnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKaZnKnKnKpziRoppWnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjCEwjwjwjOdOdOdOdxsOdOdwjwjwjGPwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdehBhBhBhBhBdehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsghBhBsgsgsgsgsgsgsghBhBhBhBhBcAcAcAhBhBhBsgcAcAcAsgJZsgsgsgsgab
+oIMIFJFIFIFIMcmvmvuNdFWumvmvmvmvmvZrzNiPZCmvmvmvFIFIFIFIFIFIFIFIFIWBFIFIUFFIFIFIFIFIFIFIFIFIFIgNlHFIFIFIFIFIFIUFLbLbnKnKnKnKnKnKnKnKnKnKnKASnKnKnKnKYonKnKnKnKnKnKpzuIZopWnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPwjwjOdOdOdOdOdOdOdOdOdwjwjwjwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBNzhBhBdeKIqXqXqXMgdehBhBNzhBhBhBhBhBhBhBhBhBhBhBhBhBhBGOGOGOGOGOGOGOGOGOGOGOGOGOhBhBcAhBhBhBsghBhBcAcAcAhBmlcAcAhBhBab
oIMIFISJNNFIFIkeoMHJHJdFHJGBmvufmvRkRkwfRkqQUjDxMcFIFIFIzYFIFIgNFIFIFIFIFIFIFIFIFIFIFIiOFIFIFIFIFIFIaWJQFIFILbLbLbLbnKnKnKnKnKnKnKnKnKpzlSoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdwjwjwjOdOdOdOdOdOdOdOdOdOdOdwjwjwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBdeBrKIMgdeqcBTIJcTuodeKIMgBrdehBhBhBhBhBhBhBhBhBhBhBhBhBQycAcAcAcAcAcAcAJSGiKAfDGOGOuOGOGOGOqUtKZNGOGOGOGOGOGOGOGOhBsgab
-oIayFISJFIFIFIkeIeIERudFdFHJmvyamvGzREvrRkRkcpDxFIaWFIFIFIFIFIFIFIFIUFFIFIFIFIFIFIFIFIFIFIFIFIFIyxFIFIFIFIFILbLbLbLbnKaZnKnKnKnKnKnKnKpzopBQpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdtoOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdwjfkOdOdOdOdOdOdOdOdOdOdOdsAGPwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBdedeQAybagdeuYGKPwGKyXdeDoAyEhdedehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAcAcAcAcAGOcuRXwmRXGOvTXQNocKGOupmPXkPTVnGOcAsgab
+oIayFISJFIFIFIkeIeIERudFdFHJmvyamvGzREvrRkRkcpDxFIaWFIFIFIFIFIFIFIFIUFFIFIFIFIFIFIFIFIFIFIFIFIFIyxFIFIFIFIUFUFLbLbLbnKaZnKnKnKnKnKnKnKpzopBQpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdtoOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdwjfkOdOdOdOdOdOdOdOdOdOdOdsAGPwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBdedeQAybagdeuYGKPwGKyXdeDoAyEhdedehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAcAcAcAcAGOcuRXwmRXGOvTXQNocKGOupmPXkPTVnGOcAsgab
oIMIrBSJFIIRJQkeQUHiZbZbZbHJyaHJyaHJHJHJHJKlcXDxFIFIzYFIFIFIFIFIyxFIUFFIFIFIFIFIFIFIFIFIFIFIDmFIFIFIFIulFILbLbFILbLbnKnKnKnKnKnKnKnKnKpzopoppWnKnKEdnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBzPjpoJGjerPwgDgDgDPwerGjoJiazPhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnQhBcAGOGOGOGOGOIORXUBCvGOvTRXyIfOGOHOmPKaLLSNGOcAsgab
oIMIaWFIFIFIFIkeQUHiZbZbZbGsmvHJmvwEHJHJHJsCKuDxaWFIFIMcFIyxFIyxFIUFFIyxFIFIFIMcFIFIFIFIFIFIFIFIFIFIFIFIFILbLbLbLbLbnKnKnKnKnKnKnKnKaZpziWoppWnKnKnKUZnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKgUnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdwjCEwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBLojpGjWSdeZmbcvAABxTdegQGjiamRhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOmzwwmzGOcRRXNtgPGOeTLtgSVjGOhAmPvXKSbrGOhBsgab
oIMIaWFIFIFIFIkeVRiYRuHJHJHJlNHJtmHJHJHJHJSOTyDxFIFIFIFIFIFIUFFIFIFIFIFIFIyxFIFIFIFIFIFIFIFIFIFIFIaWFIFIFIFILbLbLbLbnKnKnKnKYonKEdnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKEdnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdKiOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjjQabhBhBhBhBhBhBhBhBhBhBhBhBhBdededefidededededededededeUpdededehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAAumzmzCqVWGxGxOsGrGOvcaPfYnGGOOsfVRXGxiHGOsgsgab
-oIvtaWFIFIFIFImvmvmvmvmvmvmvmvHJmvHJHJHJHJZsvUDxFIFIJQFIFIFIFIFIFIFIFIFIFIyxFIFIFIFIFIFIFIyxyxFIFIFIFIFIFIFILbFILbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKUZnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdXTOdjtOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdrZOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBADdeLdxoyVPUjstUalSlzQiZzfdehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRvhBcAGOGOKGGOGOTZEQdxykWZOareykdEowLnGxGxmdXfGOcAsgab
-oIOuFISJtTNNFJmvmvHEVDXwHJHJyaHJmvKTxMpHvzmvmvmvFJFIFIFIUFFIaWFIFIFIFIFIFIFIFIFIFIFIFIrfFIFIFIFIFIFIFIFILbLbLbLbLbnKnKYonKpzopoppWnKYoEdnKnKnKYonKnKUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBpjIMxoxovQakqgQwiZRDiZSPpjhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOZIoOUkGOGOaPnGGOGOGOGOGOdZGOGOKGGOGOGOGOcAsgab
+oIvtaWFIFIFIFImvmvmvmvmvmvmvmvHJmvHJHJHJHJZsvUDxFIFIJQFIFIFIFIFIFIFIFIFIFIyxFIFIFIFIFIFIFIyxyxFIFIFIFIFIFIUFLbFILbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKUZnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdXTOdjtOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdrZOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBADdeLdxoyVPUjstUalSlzQiZzfdehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRvhBcAGOGOKGGOGOTZEQdxykWZOareykdEowLnGxGxmdXfGOcAsgab
+oIOuFISJtTNNFJmvmvHEVDXwHJHJyaHJmvKTxMpHvzmvmvmvFJFIFIFIUFFIaWFIFIFIFIFIFIFIFIFIFIFIFIrfFIFIFIFIFIFIFIFILbUFLbLbLbnKnKYonKpzopoppWnKYoEdnKnKnKYonKnKUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBpjIMxoxovQakqgQwiZRDiZSPpjhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOZIoOUkGOGOaPnGGOGOGOGOGOdZGOGOKGGOGOGOGOcAsgab
oIMIbPSJFIFIFImvTKHJZbeZZbHJmvqNmvmvmvmvmvmvVOmvmvFIaWFIUFFIFIFIFIFIFIFIFIFIFIFIFIyxyxFIFIFIFIFIFIFIFIFIFIFILbLbLbnKEdnKmEpzopoppWnKnKnKnKnKnKaZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKthJpwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdeZqxoxoxoakqgQwiZiZWHOmdehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAaiZDmPPzKGCQnfSFqEDwMVebGObLGOmPmPBKicJfGOcAhBab
-oINmFISJFIFIaWmvMdHJZbZbZbMZmvHJmvaJbkRcFOmvbarFmvFIFIFIFIFIJQFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbLbLbLbnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKJmUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBpjxaxoxoxoakqgQwiZiZRDbzpjhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBffhBcATDJVxefVLOmPRXgPicGrYxreViEqKGveGxXkPTZBGOsghBab
+oINmFISJFIFIaWmvMdHJZbZbZbMZmvHJmvaJbkRcFOmvbarFmvFIFIFIFIFIJQFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbLbUFLbnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKJmUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBpjxaxoxoxoakqgQwiZiZRDbzpjhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBffhBcATDJVxefVLOmPRXgPicGrYxreViEqKGveGxXkPTZBGOsghBab
oIMIFISJFIFIFImvzJihZbZbZbazmvHJyaHJDRCCfKmvbamhmvaWFIFIUFJQFIFIFIFJFIFIFIFIFIFIFIFIFIFIFIFIycFIFIyxFIFIFILbLbLbLbnKnKnKnKpzuIoppWnKnKnKnKnKnKnKnKUZUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBhBdededededeqkCSxoxoakvoQwiZiZHmqydededededehBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcATDcUPPmPKGRXswswswswGxmPGOdZGOWGRXKaLLSNGOsghBab
-oIMIFIFINNFIFImvcGWuHJHJHJyvmvHJmvWuBnyOUXmvBtDhmvFIFIJQFIFIFIaWFIFIFIFIFIxIFIFIFIFIFINbFIFIFIFIFIFIyxFILbLbLbLbLbnKnKnKnKnKnKnKnKnKnKEdnKnKaZnKUZUZUZUZUZnKEdCZCZCZCZCZCZCZCZCZCZCZnKnKnKgUnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdedeedeCPSdededeAFdededededeAFdededetaWiAmdedehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAVVFMZXCtGOxDGOclGOxDGOOUGOzCowmaswvXKSbrGOhBsgab
+oIMIFIFINNFIFImvcGWuHJHJHJyvmvHJmvWuBnyOUXmvBtDhmvFIFIJQFIFIFIaWFIFIFIFIFIxIFIFIFIFIFINbFIFIFIFIFIFIyxFILbUFLbLbLbnKnKnKnKnKnKnKnKnKnKEdnKnKaZnKUZUZUZUZUZnKEdCZCZCZCZCZCZCZCZCZCZCZnKnKnKgUnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdedeedeCPSdededeAFdededededeAFdededetaWiAmdedehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAVVFMZXCtGOxDGOclGOxDGOOUGOzCowmaswvXKSbrGOhBsgab
oIMIFJSJFIJQFIFImvmvYTmmQCmvmvHJmvmvmvmvmvmvMqNfmvFIFIFIUFulFIUFUFUFUFFIFIFIFIFIFIaWFIUFlHlHNbFIFIFIyxFIFILbLbLbLbnKnKnKnKnKnKYonKnKnKnKnKnKUZUZUZUZUZUZUZUZUZCZBaCZBaCZBaCZBaCZBaCZnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdebisUdeqgHbdepJmitSEBLxAiypmictdeTfpnqgqgbedehBhBhBhBhBhBhBhBhBhBhBhBhBhBishBcABpFRGreYGOTwGOjXGOTwGOTwGOdZGOLNmPubmPglGOcAsgab
oIOuaWSJFIrqFIFImvWEXtWEWEXtmvyamvoiuTjYsbmvbababsUFFIUFFIFIFIlHFIFIFIUFUFFIFIFIFINbUFgNFIUFFIFIFIFIFIulLbFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKIPhkqZYNVuomhMhMHNHNCZEtqGEtqGEtqGEtqGEtqGnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdWJWJWJWJOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtXTOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBClFuhQLqqgeQdeUxmimimimimimimihrderomAqgTawCpjhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOBBGxDCGOGOGOGOGOGOGOGOGOhmGOGOKGGOGOGOGOcAsgab
oIMIFISJNNFIMcFIlRYlyxYlziyxrkYlbsbabafzlMmvogmvmvFIFIFIFIFIWBFIFIFIFIFIFIUFFIUFFIFIFIFIWBaWFIUFUFUFFIUFUFLbUFLbnKnKnKnKnKnKnKnKnKnKnKnKIPwYhMhMhMhMhMhMhMhMhMqGBacvBanNBacvBanNBanNhMVIVIVIVIEgkVkVkVkVkVkVkVkVkVkVkVkVkVkVkVkVWJWJWJWJWJUZUZUZUZOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBdededededeONYVpOCfchchchchchchchqfVHaQchYVqgDAdedehBhBhBhBhBhBrHhBhBhBhBhBhBhBhBcAGOGOKGGOGOWTUDcfXHFtykFtykEuowtMmPAHmPAHGOcAsgab
oIvtaWSJyxFIFIFIlRxZyxYlYlziziYlmvmvmvmvmvmvmvmvFIFIFIFIFIFImvmvmvmveyeymvyamvmvmvmvmvmvmvFIFIFIFIyxFIUFLbLbyYLbnKmEnKnKnKnKUZUZnKnKUZUZhMhMhMhMhMhMhMhMhMhMhMBaBaBaBaBaBaBaBaBaBaBahMUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBdedeJYnHzasLGldefoZJZJWcAIvgVlVlTIdeiyafujYLCydedehBhBhBhBhBhBhBhBhBhBhBhBhBcIhBcAAumzmzmzAuGxGxNjmPGOaPfYnGekGONjhDmPsICvGOhBsgab
-oIOuaWFIFIFIFIaWlRziyxyxziYlziziziziYlYlyxziyxlRFIFIYlFIFIFImveJmGlQHJHJpGHJZyfNmvoQoQoQmvFIFIFIFIyxFIFILbUFUFLbnKnKnKnKUZnKnKnKnKUZnKUZhMhMhMhMhMhMhMhMhMhMhMBaBaBaBaBaBaBaBaBaBaBahMZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgUZUZUZUZOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdeoRyPosUopMdedexCJIBedeBexCJIdedenXxyIflsLydehBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOmzXVmzGOklRXcRRXGOBVzIRXRXGOzFmPXkPTZBGOcAsgab
-oINmaWFItTFIFIFIUQoGoGoGoGoGoGFmoGoGoGoGoGoGoGnOFIMcFIFIFIyxmvTdHJHJHJHJHJHJHJHJYShfhfhfbvlHFIFIFIyxFIFIUFLbUFiJnKnKnKnKnKnKnKnKnKQcnKnKCZqGyayaqGCZCZCZCZCZCZqGBanNBafuBanNBafuBanNhMnKnKnKnKACZTZTZTZTZTZTZTZTZTZTZTZTZTZTZTZTZnZnZnZnZnZgZgZgZgOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdegetrzDryHddedeaLMbMbMbMbMbXAdedeNyuByFiuNudehBhBhBhBhBhBhBhBhBhBhBhBhBhBYPsgcAGOGOGOGOGOUBgPNtSjGOaTezyUjIGOzcRXKaLLSNGOcAsgab
-oIMIFIFIFIMczYFItTFIFIFIFIJQFIFItTFItTFIFIFIFIzYFIFIFIaWJQFImvyamvyamvyamvHJHJHJmvmXhfhfbvFIFIFIFIFIFIlHLbLbUFUFnKnKnKnKnKnKnKnKnKnKnKnKCZmDBaBabdALRpmfALyfmfCZEtqGEtqGEtqGEtqGEtqGnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdZnZnZnZnOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdedeVaVaVadedeZzMbMbMbMbMbMbMbZzdedeVaVaVadedehBhBhBhBhBhBhBhBhBhBOWsgsgsgsgsgcARZkrllJyGOwmRXpxRXGOISKpxBdLGOTWGxvXKSbrGOcAhBab
+oIOuaWFIFIFIFIaWlRziyxyxziYlziziziziYlYlyxziyxlRFIFIYlFIFIFImveJmGlQHJHJpGHJZyfNmvoQoQoQmvFIFIFIFIyxFIFILbUFUFLbnKnKnKnKUZnKnKnKnKUZnKUZhMhMhMhMhMhMhMhMhMhMhMBaBaBaBaBaBaBaBaBaBaBahMZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgUZUZUZUZOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdeoRyPosUopMdedexCJIBedeBexCJIdedenXxyIflsLydehBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOmzXVmzGOklRXcRRXGORXRXRXRXGOzFmPXkPTZBGOcAsgab
+oINmaWFItTFIFIFIUQoGoGoGoGoGoGFmoGoGoGoGoGoGoGnOFIMcFIFIFIyxmvTdHJHJHJHJHJHJHJHJYShfhfhfbvlHFIFIFIyxFIFIUFLbUFiJnKnKnKnKnKnKnKnKnKQcnKnKCZqGyayaqGCZCZCZCZCZCZqGBanNBafuBanNBafuBanNhMnKnKnKnKACZTZTZTZTZTZTZTZTZTZTZTZTZTZTZTZTZnZnZnZnZnZgZgZgZgOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdegetrzDryHddedeaLMbMbMbMbMbXAdedeNyuByFiuNudehBhBhBhBhBhBhBhBhBhBhBhBhBhBYPsgcAGOGOGOGOGOUBgPNtSjGOaTRXyUjIGOzcRXKaLLSNGOcAsgab
+oIMIFIFIFIMczYFItTFIFIFIFIJQFIFItTFItTFIFIFIFIzYFIFIFIaWJQFImvyamvyamvyamvHJHJHJmvmXhfhfbvFIFIFIFIFIFIlHLbLbUFUFnKnKnKnKnKnKnKnKnKnKnKnKCZmDBaBabdALRpmfALyfmfCZEtqGEtqGEtqGEtqGEtqGnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdZnZnZnZnOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBdedeVaVaVadedeZzMbMbMbMbMbMbMbZzdedeVaVaVadedehBhBhBhBhBhBhBhBhBhBOWsgsgsgsgsgcARZkrllJyGOwmRXpxRXGOISRXxBdLGOTWGxvXKSbrGOcAhBab
oIayFJSJtTFIFIFIFIzYFIFIMcFIFIFIJQFIFIFIJQFIFIFIFIFIFIFIFIFImvmomvUymvUymvINfwINmvyHyHyHmvFIyxyxFIFIFIFILbUFLbUFLbnKnKnKEdnKnKnKnKnKnKnKdHBaBaBaBaBaBaBaBaBaBaCZBaCZBaCZBaCZBaCZBaCZnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBdederaJTJTJTradeGNhBhBhBhBhBhBJadederaJTJTJTradedehBhBhBhBhBhBhBhBhBcAcAcAcAcAcAcAIkIkIkIkGOGOuOGOGOGOqUtKZNGOGOGOGOGOGOGOGOcAhBab
oIMIgNSJFIFIzYFIFIgNFIFIFIFIFIFIFIFItTFIFIFIFIFIFIFINNFIulFImvmvmvmvmvmvmvoqmvoqmvmvmvmvmvtTFIFIFItTxIFItTFILbUFLbnKnKnKnKnKnKnKnKnKnKnKNaBaBaBaBaUtModwdwModwCZCZCZCZCZCZCZCZCZCZCZnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBdehBhBhBhBhBhBhBdehBhBhBhBhBhBhBdehBhBhBhBhBhBhBdehBhBhBhBhBhBhBhBGOGOGOGOGOGOGOGOGOGOGOGOGOcAcAcAcAcAcAcAcAsgcAcAcAcARFcAcAhBhBab
oIOuaWFIFIFIFItTFIFIFIFIFItTFIFIFIFIFIFIFIFIFIFItTFIFItTtTFIFIFIFIFIFIFIFIFIFItTtTFIFIFIFIFIFIFIFIFIFIFIFILbLbUFUFLbnKnKnKnKnKnKmEnKnKnKdHBaBaBaBaBaBaBaBaBaBaCZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjQabhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsghBhBsgsgsghBhBsghBhBcAhBcAcAcAhBcAcAsgcAcAcAcAJZcAcAsgsgab
@@ -2130,16 +2906,16 @@ oIAWAWAWkSkSzqqzNkukukukukukukukukukukukukukukukukukukukukukMIMIMIMIMIMIMIMIMIMI
oIAWAWAWkSkSrQqzqzVXVXqzJUVAHvHvVAwJwJVAvdvdVAeReRVAqzfAukukTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAMIMITeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeTeMINgNgYIYIYIYIIjIjYIYIYIYIYIYIYIYIdqYIYIYIYIdqdqYIWKWKLrLrLrLrLrLrLrLrLrLrLrLrLrLrGAuRQvQvOjGAvjfTAtGomMEzvjEzvjPHMWDBMWHlvjEzvjEzfTGoWDmMvjGAuRQvQvOjJBvjEzvjEzvjhqZfSSMbLJhBhBhBhBxhGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGALrLrYIIjIjYIYIdqYIxh
oIAWAWAWkSkSboqzqzukukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTAMIMITeTeXeXeTVTVTVTVTVTVTVTVXeXeTVTVTVTVXeTeTeMINgNgNgYIYIYIIjIjYIYIYIIjYIYIYIYIIjNgYIYIdqdqdqYIYINgLrLrLrLrLrLrLrLrLrLrLrLrLrLrGAVylgznhqGAEzsPJxHjXrvjEzvjEzkZJcZfJcOIEzvjEzvjsPrNxPXrEzGAVylgznhqJBYiSztjiLbTGFuQrivJvJvJvJvJvJxhGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGALrLrIjYIYIdqYINgYIxh
oIAWAWAWkSkSkSkSkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGjZeGeGhceGeGeGeGjZeGeGeGeGeGeGjZeGeGeGeGeGeGeGhceGeGJCJNJNJNJNJNJNJNJNJNJNJNJNJNJCTAMIMITeTeXeTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVXeTeTeMINgNgYIYIYIIjIjYIYIYIYIYIYIYIYIYIYIdqNgNgNgdqYIYIYIYIGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAVyznlghqGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAVyznlghqJBJBJBJBJBJBJBJBriririririribKBhGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrVtfCVtIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALrLrYIYIYIYIYIYIYIxh
-oIAWAWAWkSkSkSkSkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNawoBgCHZlqplkhHZkRkzlZJNJCTAMIMITeXeXeTVTVTVTVOrOrOrOraNaNOrOrOrOrTVTVXeTeMINgNgYIIjIjIjYIYIYIYIdqYIYIYIdqYIdqNgYINgYIYIYIdqdqYIGAVyznlgznlgYpQxoVznlgznlghqGAVylgznhqGAYmNlNlAlAlqVAoqVzEtnrjRCcSeERmckQvWCuqkqFnjFocGAVylgznhqGALrGAYsMfhHXUPJOLBqZfZfZfcNGAxhGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGALrLrYIYIdqdqYIIjYIxh
-oIAWAWAWMIMIMIkSkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNuPCKCXHZuPEOCXHZuPCKCwJNJCTAMIMIXeTVTVTVTVTVOrOraNWeaNaNaNaNWeaNOrOrTVTVTeMINgNgYIIjIjIjYIIjIjYIYIYIYIYIYIYIIjNgYIYIYIdqdqdqdqYIGAVyOnOnOnOnYpQxoVOnOnOnOnhqGAVyznlghqGAJEIsbWbWbWBUjNjNiKajsOTcsOUeVyhlsJYOfWdGvjDZvmGAVyznlghqGALrGAjDSWyMyMyMyMyMyMyMyMyMGAxhGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGALrLrYIYIYIIjYIYIYIxh
-oIAWAWAWMIolJCkSkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGqaeGeGeGjZeGJCJNsTCKxwHZduEOQOHZkIeWcgJNJCTAMIMIXeTVXeTVTVTVOraNaNaNaNaNaNaNaNaNaNOrTVTVTeMINgNgYINgNgYIYIYIYIYIYIYIdqdqdqdqdqdqYIYIYIYIYIYIYIYIGAVyOnOnOnOnYpQxoVOnOnOnOnhqGAVylgznhqGADJhqrhZfZfZfZfZfrhtnsOuasOeEVyJwJwYOUsvjEzvjNCGAVylgznhqGALrGAGAGAGAGAGAGAGAGAGAGAGAGAxhGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGALrLrYIYIdqIjYIYIYIxh
-oIAWAWAWMIJCJCkSkSkSukqzqzvNqzqzvNqzqzqzqzqzqzqzqzqzqzqzukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGLjeGeGeGeGeGeGeGeGjZeGeGeGeGJCJNdoCKjlHZuPEOCXHZeKCKDuJNJCTAMIMITVTVTVTVTVTVOraNaNOrOrOrOrOrOraNaNOrTVTVTeMINgNgYINgNgYIYIYIYIYIYIIjIjYIYIYIYIYIYIdqdqYIYIYIYIYIGAVylgznlgznYpQxoVlgznlgznhqGAVyznlghqGAuehqZfJbPaCNhOhOZfajetBYzHUeVyLQlaYOvjEzDXqIJkGAVyznlghqGALrGALrLrLrGAZfZfZfGALrLrLrGAxhGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGALrLrYIYIdqYIYIdqYIxh
-oIAWAWAWMIJCJCkSkSkSukukukukukukukqzqzqzqzqzqzqzqzqzqzqzukukTAeGeGeGLjeGeGeGeGeGeGeGeGeGeGeGeGeGeGLaeGeGeGeGeGeGeGeGeGJCJNbVCKFXHZNpEOMUHZmCCKzMJNJCTAMIMITVXeTVTVTVTVOraNaNOrwPxEblKWOraNaNOrTVTVTeMINgNgYIIjYIYINgIjYIYIIjIjIjIjIjIjdqdqYIYIYIYIIjIjYIYIGAVyOKOKOKOKYpQxoVOKOKOKOKhqGAVylgznhqGAKUhqZfQYQYZfeDNcZfvjkZFbOIvjHebWbWFdbWbWLvbWSpGAVylgznhqGALrGALrLrGAGAZfyKZfGAGALrLrGAxhGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGALrLrdqdqdqdqYIYIYIxh
-oIMIMIMIMIJCJCkSkSkSkSkSkSkSkSkSukqzqzvNqzqzqzqzvNqzqzqzukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNVUEOKoxLpLEOKopeEOEOVzJNJCTAMIMITVTVTVTVTVTVaNaNaNaNaNaNaNaNaNaNaNaNTVTVXeMINgNgYIIjIjIjdqNgdqdqdqIjdqNgNgdqdqYIYIYIYIYIIjIjIjYIGAVyOKOKOKOKYpQxoVOKOKOKOKhqGAVyznlghqGAEHhqZfqtqtZfRhuZZfEzkZZhOIEzOEQvQvsaQvQvckQvjSGAVyznlghqGALrGALrGAGAjLZfFxZfjLGAGALrGAxhGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAYIYIYIYIYIIjIjYIYIxh
-oIMITAJCJCJCJCJCJCJCJCJCJCJCJCJCukukukukukqzqzukukukukukukukTAeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGJCJNBbCKxpdvAeEOxpGvCKCKCHJNJCTAMIMITVXeTVTVTVTVaNaNaNaNaNaNaNaNaNaNaNaNTVTVXeMINgNgYIIjYIYIYIYIYIYIYIYIYIdqdqdqYIYIYIkuYIdqIjYIdqYIGAVyznlgznlgYpQxoVznlgznlghqGAVylgznhqGALshqZfZVZxCNRhuZZftnkZrhOIeEVyhlsJYOKNvjEzvjNeGAVylgznhqGALrGAGAGAChQvChQvChQvChGAGAGAxhGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAYIYIYIYIYIdqIjYIYIxh
-oIMITAJCTLTLTLTLLPLPLPTLTLTLTLJCUKUKUKUKUKMHMHUKUKUKUKTATATATAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGjZeGJCJNJlCKIqHZuPEOCXHZCKCKgtJNJCTAMIMITVTVXeXeTVTVOraNaNOrceXdILxWOraNaNOrTVTVXeMINgNgYIIjYIYIIjYIYIYIkudqdqdqdqYIYIYIkugikuYIYIYIdqYIGAVyLMEeEeLMYpQxoVLMEeEeLMhqGAVyznlghqGAbhhqrhZfZfZfZfZfrhajkZZfOIUeVyJwJwYOxzEzvjEzGDGAVyznlghqGALrGAcFCIqTXLqTNSqTXLqTCIcFGAxhGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAYIIjIjYIYIdqYIYIdqxh
-oIMITAJCTLgsitLPLPLPLPywitBWTLJCUKUKUKIIIIhIpIIIIIUKUKTAeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNFZCKCXHZuPEOCXHZCKCKqoJNJCTAMIMITVTVTVTVTVTVOraNaNOrOrOrOrOrOraNaNOrTVTVTVMINgNgNgIjYIIjYIYIYIkuvqkuYIIjYIYIYIYIYIkuYIYIdqYIYIYIGAVyEeEeEeEeYpQxoVEeEeEeEehqGAVylgznhqGAFGDnQvQvQvQvQvQvQvtnkZFbOIeEVyLQlaYOwZvjEzvjNeGAVylgznhqGALrGApgpgpgpgpgpgpgpgpgpgpgGAxhGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAYIIjIjYIYIIjIjYIYIxh
-oIMITAJCTLgsLPLPLPLPLPywLPjHTLJCUKoopIhIhIhIhIhIhIpIUKTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGUAeGeGeGeGeGeGJCJNpwbCysHZuPEOCXHZIZtCEkJNJCTAMIMITVTVTVTVTVTVOraNaNaNaNaNaNaNaNaNaNOrTVTVTVMINgNgNgIjYIYIYIYIYIYIkuGAGAIjkuHkkuYIYIYIYIYIkuHkkukgGAkKlgznlgznYpQxoVlgznlgzntEGAKybUbUbUGAdJvPzmtvWdGIFjztKPajkZZfOIUeamLvbWavQnwMAPXKaSGAKybUbUbUGAGAGAGAeIeIeIeIeIeIeIeIeIGAGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAYIdqNgNgNgdqYIYIYIxh
+oIAWMIMIkSkSkSkSkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNawoBgCHZlqplkhHZkRkzlZJNJCTAMIMITeXeXeTVTVTVTVOrOrOrOraNaNOrOrOrOrTVTVXeTeMINgNgYIIjIjIjYIYIYIYIdqYIYIYIdqYIdqNgYINgYIYIYIdqdqYIGAVyznlgznlgYpQxoVznlgznlghqGAVylgznhqGAYmNlNlAlAlqVAoqVzEtnrjRCcSeERmckQvWCuqkqFnjFocGAVylgznhqGALrGAYsMfhHXUPJOLBqZfZfZfcNGAxhGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGALrLrYIYIdqdqYIIjYIxh
+oIAWMIYFYFolnKnKkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNuPCKCXHZuPEOCXHZuPCKCwJNJCTAMIMIXeTVTVTVTVTVOrOraNWeaNaNaNaNWeaNOrOrTVTVTeMINgNgYIIjIjIjYIIjIjYIYIYIYIYIYIYIIjNgYIYIYIdqdqdqdqYIGAVyOnOnOnOnYpQxoVOnOnOnOnhqGAVyznlghqGAJEIsbWbWbWBUjNjNiKajsOTcsOUeVyhlsJYOfWdGvjDZvmGAVyznlghqGALrGAjDSWyMyMyMyMyMyMyMyMyMGAxhGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGALrLrYIYIYIIjYIYIYIxh
+oIAWMIYFUfolxVnKkSkSukqzJUqzHvHvqzwJwJqzvdvdqzeReRqzqzfAukukTAeGeGeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGqaeGeGeGjZeGJCJNsTCKxwHZduEOQOHZkIeWcgJNJCTAMIMIXeTVXeTVTVTVOraNaNaNaNaNaNaNaNaNaNOrTVTVTeMINgNgYINgNgYIYIYIYIYIYIYIdqdqdqdqdqdqYIYIYIYIYIYIYIYIGAVyOnOnOnOnYpQxoVOnOnOnOnhqGAVylgznhqGADJhqrhZfZfZfZfZfrhtnsOuasOeEVyJwJwYOUsvjEzvjNCGAVylgznhqGALrGAGAGAGAGAGAGAGAGAGAGAGAGAxhGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGALrLrYIYIdqIjYIYIYIxh
+oIAWMIYFYFolnKnKkSkSukqzqzvNqzqzvNqzqzqzqzqzqzqzqzqzqzqzukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGLjeGeGeGeGeGeGeGeGjZeGeGeGeGJCJNdoCKjlHZuPEOCXHZeKCKDuHZJCTAMIMITVTVTVTVTVTVOraNaNOrOrOrOrOrOraNaNOrTVTVTeMINgNgYINgNgYIYIYIYIYIYIIjIjYIYIYIYIYIYIdqdqYIYIYIYIYIGAVylgznlgznYpQxoVlgznlgznhqGAVyznlghqGAuehqZfJbPaCNhOhOZfajetBYzHUeVyLQlaYOvjEzDXqIJkGAVyznlghqGALrGALrLrLrGAZfZfZfGALrLrLrGAxhGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGALrLrYIYIdqYIYIdqYIxh
+oIAWMIMIolololkSkSkSukukukukukukukqzqzqzqzqzqzqzqzqzqzqzukukTAeGeGeGLjeGeGeGeGeGeGeGeGeGeGeGeGeGeGLaeGeGeGeGeGeGeGeGeGJCJNbVCKFXHZNpEOMUHZmCCKzMHZJCTAYFdhTVXeTVTVTVTVOraNaNOrwPxEblKWOraNaNOrTVTVTeMINgNgYIIjYIYINgIjYIYIIjIjIjIjIjIjdqdqYIYIYIYIIjIjYIYIGAVyOKOKOKOKYpQxoVOKOKOKOKhqGAVylgznhqGAKUhqZfQYQYZfeDNcZfvjkZFbOIvjHebWbWFdbWbWLvbWSpGAVylgznhqGALrGALrLrGAGAZfyKZfGAGALrLrGAxhGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGAZfLFqTkEqTStZfGALrLrdqdqdqdqYIYIYIxh
+oIMIMIMIolololkSkSkSkSkSkSkSkSkSukqzqzvNqzqzqzqzvNqzqzqzukukTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNVUEOKoxLpLEOKopeEOEOVzHZJCTATUdhTVTVTVTVTVTVaNaNaNaNaNaNaNaNaNaNaNaNTVTVXeMINgNgYIIjIjIjdqNgdqdqdqIjdqNgNgdqdqYIYIYIYIYIIjIjIjYIGAVyOKOKOKOKYpQxoVOKOKOKOKhqGAVyznlghqGAEHhqZfqtqtZfRhuZZfEzkZZhOIEzOEQvQvsaQvQvckQvjSGAVyznlghqGALrGALrGAGAjLZfFxZfjLGAGALrGAxhGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAZfDekEqTkEoFZfGAYIYIYIYIYIIjIjYIYIxh
+oIMITAJCJCJCJCJCJCrdJCJCJCJCJCJCukukukukukqzqzukukukukukukukTAeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGJCJNBbCKxpdvAeEOxpGvCKCKCHJNJCTAYFdhTVXeTVTVTVTVaNaNaNaNaNaNaNaNaNaNaNaNTVTVXeMINgNgYIIjYIYIYIYIYIYIYIYIYIdqdqdqYIYIYIkuYIdqIjYIdqYIGAVyznlgznlgYpQxoVznlgznlghqGAVylgznhqGALshqZfZVZxCNRhuZZftnkZrhOIeEVyhlsJYOKNvjEzvjNeGAVylgznhqGALrGAGAGAChQvChQvChQvChGAGAGAxhGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAYIYIYIYIYIdqIjYIYIxh
+oIMITAJCTLITITTLLPLPLPTLTLTLTLJCUKUKUKUKUKMHMHUKUKUKUKTATATATAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGjZeGJCJNJlCKIqHZYBEOCXzpCKCKgtJNJCTAMIMITVTVXeXeTVTVOraNaNOrceXdILxWOraNaNOrTVTVXeMINgNgYIIjYIYIIjYIYIYIkudqdqdqdqYIYIYIkugikuYIYIYIdqYIGAVyLMEeEeLMYpQxoVLMEeEeLMhqGAVyznlghqGAbhhqrhZfZfZfZfZfrhajkZZfOIUeVyJwJwYOxzEzvjEzGDGAVyznlghqGALrGAcFCIqTXLqTNSqTXLqTCIcFGAxhGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAYIIjIjYIYIdqYIYIdqxh
+oIMITAJCTLgsitLPLPLPLPywitBWTLJCUKUKUKIIIIhIpIIIIIUKUKTAeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNFZCKCXHZKtEOCXHZCKCKqoJNJCTAMIMITVTVTVTVTVTVOraNaNOrOrOrOrOrOraNaNOrTVTVTVMINgNgNgIjYIIjYIYIYIkuvqkuYIIjYIYIYIYIYIkuYIYIdqYIYIYIGAVyEeEeEeEeYpQxoVEeEeEeEehqGAVylgznhqGAFGDnQvQvQvQvQvQvQvtnkZFbOIeEVyLQlaYOwZvjEzvjNeGAVylgznhqGALrGApgpgpgpgpgpgpgpgpgpgpgGAxhGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAYIIjIjYIYIIjIjYIYIxh
+oIMITAJCTLgsLPLPLPLPLPywLPjHTLJCUKoopIhIhIhIhIhIhIpIUKTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGUAeGeGeGeGeGeGJCJNpwbCysHZYDEOCXHZIZtCEkJNJCTAMIMITVTVTVTVTVTVOraNaNaNaNaNaNaNaNaNaNOrTVTVTVMINgNgNgIjYIYIYIYIYIYIkuGAGAIjkuHkkuYIYIYIYIYIkuHkkukgGAkKlgznlgznYpQxoVlgznlgzntEGAKybUbUbUGAdJvPzmtvWdGIFjztKPajkZZfOIUeamLvbWavQnwMAPXKaSGAKybUbUbUGAGAGAGAeIeIeIeIeIeIeIeIeIGAGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAGAGAsRsOVcGAGAGAYIdqNgNgNgdqYIYIYIxh
oIMITAJCTLgsLPLPLPLPLPywLPToTLJCUKooByBydRHxhIrrhIwpUKTAeGeGeGeGeGeGeGeGeGLaeGeGeGeGeGUAeGeGeGeGeGeGUAeGeGeGeGeGeGeGeGJCJNJNJNJNJNuPEOCXJNJNJNJNJNJCTAMIMITVTVTVTVTVTVOrOraNqjaNaNaNaNqjaNOrOrTVTVTVMINgNgYIYIYIYIdqYIYIYIYIGAGAGACRgLguGAGASvGAGACRgLguGAGAGAEbbUbUbUGAMXGAEbbUbUbUGAGAVyznlghqGAGAGAGAGAGAGAGAGAGAGAMXYRMXGAGAGAGAGAGAGAGAGAGAGAVyznlghqGAFDvjEzvjEzvjEzvjEzvjEzvjEzvjJdGAptptsOsOsOptptGAptptsOsOsOptptGAptptsOsOsOptptGAptptsOsOsOptptGAptptsOsOsOptDkGAptptsOsOsOptptGAptptsOsOsOptptGAYIdqYINgNgNgYIYIYIxh
oIMITAJCLPLPLPLPLPLPLPLPLPLPLPJCUKRHByBySkgEByPlByhIhITAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGUAeGeGeGUAeGUAJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTAMIMITVTVTVTVTVTVTVOrOrOrOraNaNOrOrOrOrTVTVTVTVMINgNgNgYIYIYIdqYIYIYIYIYIGArhZfErZfZfZfZfZfZfZfFTQvQvGAYtQvQvQvQvkwQiDnQvQvQvQvYtGAVylgznhqGAlyEzvjEzvjEzvjEzvjEzkZZfOIEzvjEzvjEzvjEzvjEzJRGAVylgznhqGAvjwxkfkTkfkTkfkTkfkTkfkTkfojvjGAsOsOsOhesOsOsOGAsOsOsOhesOsOsOGAsOsOsOhesOsOsOGAsOsOsOhesOsOsOGAsOsOsOhesOsOsOGAsOsOsOhesOsOsOGAsOsOsOhesOsOsOGAYIIjYIYIYIIjYIYIYIxh
oIMITAJCLPLPLPLPLPLPLPLPLPLPLPJCUKNihIhIbBymByoSByhIhITAeGeGeGeGeGeGeGJDeGeGLjeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGeGeGJDeGJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTAMIMITVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVMINgNgYIYIYIdqdqYIYIYIYIkukFZfvqZfZfZfZfvqZfZfrhVyznlgqTlgzniNlgLwLwQxjvjvznpdpdlgGAsYznlgunGAEzetLuLuLuLuzHvjEzvjkZrhOIvjEzvjetLuLuLuLuzHEzGAVyznlghqGAEzQXvqfXWhfXWhfXWhfXWhfXvquKEzGAsOHfsOsOsOHfsOGAsOHfsOsOsOHfsOGAsOHfsOsOsOHfsOGAsOHfsOsOsOHfsOGAsOHfsOsOsOHfsOGAsOHfsOsOsOHfsOGAsOHfsOsOsOHfsOGAYIIjYIYIYIdqYIYIYIxh
@@ -2167,7 +2943,7 @@ oIMIeGeGeGhceGeGeGeGeGeGeGeGjbJCJCJCJCJCJCJCJCJCJCJCjbsreGeGggYCggeGeGeGeGeGUAUA
oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJCJCJCJCJCJCJCJCJCJCJCjbjVjVjVJCJCJCJCJCJCJCJCJCJCJCJCJCeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMITVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVMINgNgYIYIdqYIYIYIYIYIYIYIIjYIYIIjIjIjYIYIYIYIYIIjYIYIGAVyznlgznlgYpQxoVlgznlgznhqGAVyznlghqGADrnBvwAxGADrnBEoeoGAbJvVScGADrnByqBSGADrnBlATQGAVyznlghqGALrGAZfZfZfZfZfMPZfZfZfZfZfGALrGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAefefefefIjIjIjYIYIxh
oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDcDcDcDfSfSfScDcDcDcDjbJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMITVTVTVTVyCyCyCyCKmKmyCyCyCyCTVTVTVTVTVTVTVMINgNgYIYIYIYIYIYIYIYIYIYIYIYINgYIYIYIYIYIYIYIYIYIYIYIGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAVylgznhqGAGAGAGAGAGAGAGAGAGAGAGAFlKXGAGAGAGAGAGAGAGAGAGAGAVylgznhqGAefGAZfZfZfZfZfZfZfZfZfZfZfGALrGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGAefefefefdqYIYIYIYIxh
oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDHaHacDfSfSrscDHaHacDjbJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTATATAjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxTAMIMITVTVTVyCyCKmOgKmKmKmKmOgKmyCyCTVTVTVTVTVTVMINgNgNgNgYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYILrLrLrLrLrLrLrLrLrLrLrLrLrLrGAVyznlghqGALrLrLrLrefefefefefGAVpvVOtGAefefefefefefefefefGAVyznlghqGAefGAZfZfZfCNZfZfZfCNZfZfZfGALrGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAFlCrrharrhIzFlGAefefefefdqYIdqYIYIxh
-oIMIeGLjLjeGeGeGeGeGeGeGeGeGjbcDHaHacDfSfSfScDHaHacDjbXhSbnrZLZLpittJCJCJCJCJCJCJCJCJCJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAYXUlTVTVTVyCKmKmKmKmKmKmKmKmKmKmyCTVTVTVTVTVTVMINgNgNgNgYIYIYIYIYIIjIjIjYIYIYIYIYIIjIjNgIjKcYIYIYIYILrLrLrLrLrLrLrLrLrLrLrLrLrLrGAYKbWbWxrGALrLrLrLrefefefefefGAGAGAGAGAefefHwkQefefefefefGAVylgznhqGAefGAGAGAGAGAGAGAGAGAGAGAGAGALrGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAefefefefdqYIYIdqYIxh
+oIMIeGLjLjeGeGeGeGeGeGeGeGeGjbcDHaHacDfSfSfScDHaHacDjbXhSbnrZLZLpittJCJCJCJCJCJCJCJCJCJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAYXUlTVTVTVWIKmKmKmKmKmKmKmKmKmKmyCTVTVTVTVTVTVMINgNgNgNgYIYIYIYIYIIjIjIjYIYIYIYIYIIjIjNgIjKcYIYIYIYILrLrLrLrLrLrLrLrLrLrLrLrLrLrGAYKbWbWxrGALrLrLrLrefefefefefGAGAGAGAGAefefHwkQefefefefefGAVylgznhqGAefGAGAGAGAGAGAGAGAGAGAGAGAGALrGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAefefefefdqYIYIdqYIxh
oIMIeGLjLjeGeGeGeGeGLaeGeGeGjbcDHaRJcDcDHacDcDemHacDjbfdfdfdfdfdfdfdcZfdfdJCJCJCJCJCJCJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAUlTVTVTVyCKmKmyCyCyCyCyCyCKmKmyCTVTVTVTVTVTVMINgNgNgNgYIYIYIYIYIdqNgdqYIYIYIdqdqdqIjIjIjYIYIYIYIYIdqdqIjIjdqIjdqdqIjIjIjIjIjIjGAZfZfZfZfGALrLrLrLrLrLrLrefefefefefefefefefIjIjIjBxefefefGAVyznlghqGAefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefdqYIYIIjYIxh
oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDHaHaHaHaHaHaHaHaHacDjbfdrgrgrgrxkBCpcZsyfdfdcZcZfdfdfdJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAUlTVTVTVyCKmKmyCYQiGdmsjyCKmKmyCTVTVTVTVTVTVMINgNgNgNgYIYIYIIjIjYIdqdqYIYIIjNgNgdqYIYIYIYIYIYIYIdqIjdqdqdqdqdqIjdqdqIjIjdqIjIjGAZfZfZfZfGAIjLrLrLrLrLrLrefefefefefefefefIjIjIjIjBxefefefGAVylgznhqGAefefefefefefefefefefefefefefefefefefefefefefefefefefefefIjefefefefefefefefefIjIjefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefgXefefefefdqYIYIYIYIxh
oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDHaHaHaHaHaHaHaHaHacDjbfdcZcZcZcZcZcZcZcZcZcZcZcZLZcZfdJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAUlTVTVTVKmKmKmKmKmKmKmKmKmKmKmKmTVTVTVTVTVTVMINgNgYIYIYIYIYINgIjYIYIYIYIYIdqdqdqdqYIYIYIYIYIYIdqdqdqIjIjdqdqdqIjIjIjIjIjIjIjIjGAIjZfZfIjGAIjIjIjIjefefefefefefefefefefefefIjIjIjefefefefGAVyznlghqGAefefefefefefefefefefefefefefefefefefefefefefefefefefefIjIjefefefefefefefIjIjIjIjIjIjIjefefefefefefefefefefefefefefefefefefefefefefefefefefefgXefefefefefdqYIYIYIYIxh
@@ -2175,11 +2951,11 @@ oIMIeGeGeGeGeGLjeGeGJDeGeGeGjbcDHaHaHaHaHaHaHaHaHacDjbfdrgJscZcZcZcZcZcZcZcZcZcZ
oIMIeGLaeGeGeGeGeGeGeGeGeGeGjbcDemHaHaHaHaHaHaHaRJcDjbfdrgcZcZtFVgxlVgVgVghUVgEDcZcZcZJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAMIMIXeTVTVyCKmKmyCVPpuSBZWyCKmKmyCTVTVTVTVTVTVMINgNgYIYIYIYIIjdqYIYIYIdqNgdqdqYIYIYIYIYIYIYIdqdqdqdqdqIjdqdqIjdqIjIjIjdqIjIjIjIjIjIjIjIjIjGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjefefefbAefefefefefGAVyznlghqGAefefefefefefefefefefefefefefefefefefefefefefefIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjdqdqIjdqdqdqdqIjIjdqdqefefefefefefefefefefefefefefdqdqdqYIYIYIYIxh
oIMIeGeGeGeGeGeGeGLjeGeGeGeGjbcDHaHaHaHaHaHaHaHaHacDjbfdEUcZcZNBXWTpPoMwXWmOPoZFcZcZfdJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAMIMIXeXeTVyCKmKmyCyCyCyCyCyCKmKmyCTVTVTVXeXeTeMINgYIYIYIYIYINgdqYIYIdqdqYIYIYIYIYIYIYIYIYIYIdqdqIjdqIjdqdqdqIjdqIjIjIjIjIjIjIjIjGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjefefefefGAVylgznhqGAefefefefefefefefefefefefefefefefefefefefefIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjdqdqIjIjdqdqdqdqIjIjIjdqIjIjdqdqdqdqIjdqIjdqdqefefefefefefefefefefefdqdqdqYIYIYIYIxh
oIMIeGeGJDeGeGeGeGeGeGeGeGeGjbcDHaHaHaHaHaHaHaHaHacDjbfdnicZcZNBXWpEPonZXWflPoZFcZcZfdJCJCJCTATATATATAMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIXeTVTVyCKmKmKmKmKmKmKmKmKmKmyCTVTVTVTVXeTeMINgYIYIYIYIYIIjYIYIYIYIYIYIYIYIYIYIYIYIYIYIdqdqIjdqdqIjdqIjdqIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjefefGAVyznlghqGAefefefefefefefefefefefefefefefefefefIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjdqdqIjIjIjdqdqIjIjIjdqdqIjIjIjIjIjdqdqdqdqIjIjdqdqdqdqdqdqdqdqdqefefefdqdqdqdqdqdqYIYIYIYIYIxh
-oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDHaHaHaHaCWHaHaHaHacDjbfdnicZfdfdfdfdfdfdfdfdfdfdfdfdfdJCJCJCTATATATATAMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeXeTVyCyCKmWzKmKmKmKmWzKmyCyCTVTVTVTVXeTeMINgYIYIYIYIYIIjYIYIYIYIYIYIYIYIYIYIYIYIdqdqdqdqdqIjIjdqdqIjdqdqIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjGAYKbWbWxrGAefefefefefefefefefefefefefIjIjIjIjIjIjIjIjdqIjIjIjdqIjIjIjIjIjdqIjIjIjdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqdqdqdqdqdqdqdqdqIjdqdqdqdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIxh
-oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDcDcDcDcDcDcDHaHacDcDjbYkcZcZYkMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeXeTVyCyCyCyCKmKmyCyCyCyCTVTVTVXeXeXeTeMINgNgYIYIYIYIYIIjYIYIYIYIYIYIYIYIdqdqIjdqdqdqdqdqIjdqdqdqIjdqIjIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjuHZfZfZfZfGAefefefefefefefIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjdqdqIjIjIjIjIjdqdqIjIjIjdqdqIjdqdqIjIjIjIjdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIdqdqYIYIYIxh
-oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIYkfjfjYkYkYkYkcZcZYkAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVXeXeTeTeMINgNgYIYIYIYIYIIjYIYIYIYIYIYIdqdqdqdqdqdqIjdqdqIjIjIjdqIjdqIjdqIjIjIjIjIjIjIjIjdqdqIjIjdqIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjGAZfZfZfZfGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjdqdqIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjdqIjdqIjIjIjdqdqdqdqdqIjdqIjdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIYIYIYIYIYIdqdqIjYIYIxh
-oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWYkfjfjfjfjfjfjfjfjYkAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeXeXeTVTVTVTVTVTVTVTVTVTVTVTVTVXeTeTeTeMINgNgNgYIYIYIYIYIYIdqdqNgYIYIYIYIYIYIYIdqdqdqdqdqIjdqdqdqIjdqdqdqIjIjIjdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjZfZfIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjIjIjdqIjIjIjIjIjdqdqIjdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIIjdqYIYIxh
-oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWYkfjKffjfjfjKffjfjYkAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeTeTeTeTVTVTVTVTVTVTVTVTVTVXeXeTeTeTeTeMINgNgNgYIYIYIYIYIYIYIdqdqYIYIYIYIYIYIYIYIYIYIYIdqdqIjdqdqdqdqIjIjIjdqIjdqdqIjIjIjdqIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjdqIjIjIjIjdqdqdqIjIjdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIdqdqYIdqYIYIIjIjYIYIYIIjdqdqYIYIdqYIxh
-oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWYkYkYkYkYkYkYkYkYkYkAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMINgNgNgNgYIYIYIYIYIYIYIYIdqYIYIYIYIYIYIYIYIYIYIYIdqdqdqIjdqdqdqdqIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjdqdqdqdqIjIjIjIjdqdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIdqYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIxh
+oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDHaHaHaHaCWHaHaHaHacDjbfdnicZfdfdfdfdfdfdfdfdfdzbfdfdfdJCJCJCTATATATATAMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeXeTVyCyCKmWzKmKmKmKmWzKmyCyCTVTVTVTVXeTeMINgYIYIYIYIYIIjYIYIYIYIYIYIYIYIYIYIYIYIdqdqdqdqdqIjIjdqdqIjdqdqIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjGAYKbWbWxrGAefefefefefefefefefefefefefIjIjIjIjIjIjIjIjdqIjIjIjdqIjIjIjIjIjdqIjIjIjdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqdqdqdqdqdqdqdqdqIjdqdqdqdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIxh
+oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbcDcDcDcDcDcDcDHaHacDcDjbYkcZcZYkMIMImpMIMIMIYkzzMwpkYkMIMIMIMIMIMIMIMIMIMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeXeTVyCyCyCyCKmKmyCyCyCyCTVTVTVXeXeXeTeMINgNgYIYIYIYIYIIjYIYIYIYIYIYIYIYIdqdqIjdqdqdqdqdqIjdqdqdqIjdqIjIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjuHZfZfZfZfGAefefefefefefefIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjdqdqIjIjIjIjIjdqdqIjIjIjdqdqIjdqdqIjIjIjIjdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIdqdqYIYIYIxh
+oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIYkfjfjYkYkYkYkcZcZYkOxOxEnOxOxMIYkMwMwMwaCOxOxOxOxOxOxOxMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeTVTVTVTVTVTVTVTVTVTVTVTVTVTVTVXeXeTeTeMINgNgYIYIYIYIYIIjYIYIYIYIYIYIdqdqdqdqdqdqIjdqdqIjIjIjdqIjdqIjdqIjIjIjIjIjIjIjIjdqdqIjIjdqIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjGAZfZfZfZfGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjdqdqIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjdqIjdqIjIjIjdqdqdqdqdqIjdqIjdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIYIYIYIYIYIdqdqIjYIYIxh
+oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWYkfjfjfjfjfjfjfjfjYkOxOxOxOxOxMIYknWcBxUaCOxOxOxOxOxOxOxMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeXeXeTVTVTVTVTVTVTVTVTVTVTVTVTVXeTeTeTeMINgNgNgYIYIYIYIYIYIdqdqNgYIYIYIYIYIYIYIdqdqdqdqdqIjdqdqdqIjdqdqdqIjIjIjdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjZfZfIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjIjIjdqIjIjIjIjIjdqdqIjdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIIjdqYIYIxh
+oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWYkfjKffjfjfjKffjfjYkOxOxOxOxOxMIYkYkYkYkYkOxOxOxOxZuOxOxMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITeTeTeTeTeTVTVTVTVTVTVTVTVTVTVXeXeTeTeTeTeMINgNgNgYIYIYIYIYIYIYIdqdqYIYIYIYIYIYIYIYIYIYIYIdqdqIjdqdqdqdqIjIjIjdqIjdqdqIjIjIjdqIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjdqIjIjIjIjdqdqdqIjIjdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIdqdqYIdqYIYIIjIjYIYIYIIjdqdqYIYIdqYIxh
+oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWYkYkYkYkYkYkYkYkYkYkOxOxOxOxOxOxOxOxOxOxOxOxOxOxOxOxOxOxMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMINgNgNgNgYIYIYIYIYIYIYIYIdqYIYIYIYIYIYIYIYIYIYIYIdqdqdqIjdqdqdqdqIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjdqdqdqdqIjIjIjIjdqdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIdqYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIxh
oIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzFzxh
"}
diff --git a/maps/stellar_delight/ship_centcom.dmm b/maps/stellar_delight/ship_centcom.dmm
index 5be783af22..7c3508279c 100644
--- a/maps/stellar_delight/ship_centcom.dmm
+++ b/maps/stellar_delight/ship_centcom.dmm
@@ -8406,6 +8406,7 @@
pixel_x = -24;
pixel_y = 25
},
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/pilotslug,
/turf/simulated/floor/tiled,
/area/centcom/holding)
"HK" = (
diff --git a/maps/stellar_delight/stellar_delight1.dmm b/maps/stellar_delight/stellar_delight1.dmm
index b7bc90fe65..54299a48fb 100644
--- a/maps/stellar_delight/stellar_delight1.dmm
+++ b/maps/stellar_delight/stellar_delight1.dmm
@@ -1,44563 +1 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"ab" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"ac" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/power/apc/angled{
- cell_type = /obj/item/weapon/cell/super;
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"ad" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ae" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"ag" = (
-/obj/structure/cable/pink{
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"ah" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"ai" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/security,
-/obj/random/maintenance/research,
-/obj/random/contraband,
-/obj/structure/cable/pink,
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"aj" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"ak" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/orange,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"am" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"an" = (
-/turf/simulated/wall/bay/white,
-/area/stellardelight/deck1/aft)
-"ao" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"ap" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"aq" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/armoury)
-"ar" = (
-/obj/structure/filingcabinet/chestdrawer{
- desc = "A large drawer filled with autopsy reports.";
- name = "Autopsy Reports"
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"as" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"at" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"au" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"aw" = (
-/obj/structure/stairs/spawner/north,
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"ax" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/machinery/shower{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"ay" = (
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"aA" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"aB" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/assembly/robotics)
-"aC" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"aD" = (
-/turf/simulated/wall/bay/purple,
-/area/assembly/robotics)
-"aE" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"aF" = (
-/obj/structure/closet/bombcloset/double,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 29
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 38
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"aG" = (
-/obj/structure/bookcase{
- name = "bookcase (Religious)"
- },
-/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,
-/obj/item/weapon/book/custom_library/religious/feastofkubera,
-/obj/item/weapon/book/custom_library/religious/storyoflordganesha,
-/obj/item/weapon/book/custom_library/religious/sungoddessofkorea,
-/obj/item/weapon/book/custom_library/religious/wayofbleedingswan,
-/turf/simulated/floor/wood,
-/area/library)
-"aH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "GatewayShutterE"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/gateway)
-"aI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"aJ" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"aK" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"aL" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 5;
- network = list("Xenobiology")
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"aM" = (
-/turf/simulated/wall/bay/purple,
-/area/rnd/workshop)
-"aN" = (
-/obj/structure/sign/directions/evac{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"aO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"aP" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"aQ" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"aR" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/white,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"aS" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/security/security_equiptment_storage)
-"aU" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"aV" = (
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"aW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"aX" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/emerald/corner,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"aY" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "securitylockdown"
- },
-/obj/machinery/door/window/brigdoor/eastright{
- dir = 2
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"aZ" = (
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- dir = 8;
- id_tag = "xenobio_airlock_control";
- name = "Xenobiology Access Console";
- pixel_x = 24;
- tag_exterior_door = "xenobio_airlock_exterior";
- tag_interior_door = "xenobio_airlock_interior"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/xenobiology)
-"ba" = (
-/obj/item/modular_computer/console/preset/civilian,
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"bb" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/botany/editor,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"bc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"bd" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"be" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/access_button{
- command = "cycle_interior";
- dir = 8;
- frequency = 1379;
- master_tag = "xenobio_airlock_control";
- name = "Xenobiology Access Button";
- pixel_y = -32;
- req_access = null;
- req_one_access = list(47,55)
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- autoclose = 0;
- dir = 4;
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- frequency = 1379;
- id_tag = "xenobio_airlock_interior";
- locked = 1;
- name = "Xenobiology Lab";
- req_access = list(47,55);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/xenobiology)
-"bf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"bg" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/disposal/wall/cleaner{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"bh" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/alarm/angled,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"bi" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm1)
-"bj" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/rnd/xenobiology/xenoflora)
-"bk" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/prison/cell_block/C)
-"bl" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/civilian)
-"bm" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/warden,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"bn" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"bo" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/exploshuttle)
-"bq" = (
-/obj/structure/table/bench/steel,
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"br" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm1";
- name = "Room 1";
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm1)
-"bs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/port)
-"bt" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"bu" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/sign/painting/public{
- pixel_x = -30
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"bv" = (
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/weapon/soap/nanotrasen,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/grenade/chem_grenade/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/table/steel,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/wall{
- dir = 1
- },
-/obj/item/weapon/storage/bag/trash,
-/obj/item/weapon/storage/bag/trash,
-/obj/item/weapon/storage/bag/trash,
-/obj/item/weapon/storage/bag/trash,
-/obj/item/weapon/storage/bag/trash,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"bw" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/catwalk_plated/dark,
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/port)
-"bx" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"by" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"bz" = (
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"bA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bB" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"bD" = (
-/obj/structure/lattice,
-/turf/space,
-/area/space)
-"bE" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"bF" = (
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/obj/structure/sign/painting/chapel_secure{
- pixel_y = -32
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bG" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"bH" = (
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"bI" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/flasher/portable,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"bJ" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/random/soap,
-/obj/random/soap,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/obj/item/clothing/under/bathrobe,
-/obj/item/clothing/under/bathrobe,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"bK" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/wall{
- dir = 4;
- pixel_x = -24;
- plane = -34
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"bL" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"bM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"bN" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"bO" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"bP" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"bQ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"bR" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/halls,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"bS" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"bT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"bU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm7)
-"bV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"bW" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/assembly/robotics)
-"bX" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red/corner,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"bY" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"bZ" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"cb" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"cd" = (
-/obj/machinery/camera/network/halls{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"ce" = (
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"cf" = (
-/obj/structure/table/steel,
-/obj/item/weapon/surgical/scalpel,
-/obj/item/weapon/autopsy_scanner,
-/obj/item/weapon/surgical/cautery,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"cg" = (
-/obj/machinery/photocopier,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ch" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"ci" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"cj" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen3";
- name = "Pen 3 Containment";
- pixel_x = -30;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen5";
- name = "Pen 5 Containment";
- pixel_x = -31;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "xenobiodiv3";
- name = "Divider 3 Blast Doors";
- pixel_x = -39;
- req_access = list(55)
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"ck" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/sign/directions/evac{
- dir = 8;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"cl" = (
-/obj/structure/table/woodentable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"cm" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/forensics/sample_kit,
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"cn" = (
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"co" = (
-/obj/machinery/vending/fitness,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/starboard)
-"cp" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/structure/curtain/open/shower/medical,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"cq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "researchwindowlockdown";
- name = "Window Lockdown";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"cr" = (
-/obj/structure/cable/pink{
- icon_state = "1-4"
- },
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/security,
-/obj/random/maintenance/research,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"cs" = (
-/obj/structure/table/rack,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/suit/space/void/medical/emt,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/item/clothing/head/helmet/space/void/medical/emt,
-/obj/structure/cable/white{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"ct" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"cu" = (
-/obj/machinery/shower{
- pixel_y = 15
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"cv" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research)
-"cw" = (
-/obj/structure/reagent_dispensers/acid{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"cy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm/angled,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"cA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"cB" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"cC" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"cD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"cE" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"cF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"cG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"cI" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"cJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm2";
- name = "Room 2";
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm2)
-"cK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"cM" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/gunbox{
- pixel_y = 6
- },
-/obj/item/gunbox{
- pixel_y = -3
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"cN" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"cO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"cP" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/mob/living/simple_mob/vore/fennec/bridgette,
-/obj/machinery/newscaster/security_unit{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"cQ" = (
-/obj/machinery/mineral/unloading_machine,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"cS" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"cT" = (
-/obj/machinery/smartfridge/drying_rack,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"cU" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"cV" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"cW" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"cX" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"cY" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#8c1d11";
- name = "Forensics Lab";
- req_access = list(4);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/detectives_office)
-"cZ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/vending/cigarette,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"da" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"db" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"dc" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"dd" = (
-/obj/item/device/radio/intercom/department/medbay{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"de" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"df" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"dg" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen2";
- name = "Pen 2 Containment";
- pixel_x = 30;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen4";
- name = "Pen 4 Containment";
- pixel_x = 29;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "xenobiodiv2";
- name = "Divider 2 Blast Doors";
- pixel_x = 38;
- pixel_y = -1;
- req_access = list(55)
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"dh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"di" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"dj" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"dk" = (
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"dl" = (
-/turf/simulated/wall/bay/brown,
-/area/stellardelight/deck1/mining)
-"dm" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32
- },
-/obj/effect/floor_decal/milspec/color/red/half,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"dn" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"do" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "miningops"
- },
-/obj/machinery/mineral/input,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"dp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"dq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the medbay foyer.";
- dir = 4;
- id = "recoveryexit";
- name = "Door Control";
- pixel_x = -27;
- pixel_y = 25
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"dr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"dt" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red/half,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"du" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"dv" = (
-/obj/structure/closet/walllocker_double/east,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"dw" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/white{
- icon_state = "0-4"
- },
-/obj/structure/cable/white{
- icon_state = "16-0"
- },
-/obj/structure/stairs/spawner/north,
-/turf/simulated/floor,
-/area/stellardelight/deck1/lowermed)
-"dx" = (
-/obj/structure/bookcase{
- name = "bookcase (Adult)"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/turf/simulated/floor/wood,
-/area/library)
-"dy" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"dA" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"dB" = (
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"dD" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/atmospherics/pipe/simple/hidden/purple,
-/obj/effect/floor_decal/milspec/color/black,
-/obj/item/ammo_magazine/ammo_box/b12g/pellet{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/ammo_magazine/ammo_box/b12g/pellet{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/item/ammo_magazine/ammo_box/b12g/pellet{
- pixel_x = -5;
- pixel_y = 7
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"dF" = (
-/obj/machinery/computer/security/xenobio,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"dG" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"dH" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"dI" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"dJ" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"dK" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- dir = 8;
- name = "Library";
- stripe_color = "#3b3b3b"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/library)
-"dL" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"dN" = (
-/obj/structure/closet/secure_closet/hydroponics/sci{
- req_access = list(77)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"dO" = (
-/obj/machinery/mineral/input,
-/obj/effect/floor_decal/industrial/loading{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"dP" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"dQ" = (
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"dR" = (
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/obj/machinery/camera/network/security,
-/obj/machinery/computer/arcade,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"dS" = (
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/security,
-/obj/random/pouch,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"dT" = (
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"dU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/blast/regular/open{
- id = "talon_boat_cockpit"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/stellardelight/deck1/miningshuttle)
-"dV" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"dW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "dontlooktmyrobotpenis";
- name = "Privacy Shutters"
- },
-/obj/machinery/door/window/brigdoor/westright{
- dir = 4;
- name = "Robotics Desk";
- req_access = list(7);
- req_one_access = list(47)
- },
-/turf/simulated/floor/tiled/monotile,
-/area/assembly/robotics)
-"dY" = (
-/obj/machinery/mineral/processing_unit,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"dZ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/disk/tech_disk,
-/obj/item/weapon/disk/tech_disk,
-/obj/item/weapon/disk/design_disk,
-/obj/item/weapon/disk/design_disk,
-/obj/item/weapon/reagent_containers/dropper{
- pixel_y = -4
- },
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"ea" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"eb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"ec" = (
-/obj/structure/sign/deck1{
- pixel_x = -32
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"ed" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"ee" = (
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"ef" = (
-/obj/structure/table/rack,
-/obj/item/device/suit_cooling_unit{
- pixel_y = -5
- },
-/obj/item/device/suit_cooling_unit{
- pixel_y = -5
- },
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"eh" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/window/brigdoor/southleft{
- id = "Cell B";
- name = "Cell B";
- req_access = list(2)
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/prison/cell_block/B)
-"ei" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"ej" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"ek" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/portaft)
-"el" = (
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/structure/closet/walllocker_double/east,
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"em" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"en" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"eo" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/low_wall/bay/reinforced/purple,
-/obj/structure/sign/xenobio{
- plane = -34
- },
-/turf/simulated/floor,
-/area/rnd/xenobiology)
-"ep" = (
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"eq" = (
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"er" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"es" = (
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"et" = (
-/obj/effect/landmark{
- name = "droppod_landing"
- },
-/turf/space,
-/area/space)
-"eu" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"ev" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"ew" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"ex" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"ey" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/purple,
-/area/stellardelight/deck1/pathfinder)
-"ez" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/weapon/reagent_containers/syringe,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"eA" = (
-/obj/effect/floor_decal/milspec/color/black,
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"eB" = (
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"eC" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"eD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"eE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"eF" = (
-/turf/simulated/floor,
-/area/security/tactical)
-"eG" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"eH" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"eI" = (
-/obj/machinery/libraryscanner,
-/obj/machinery/camera/network/civilian{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"eJ" = (
-/obj/machinery/mineral/equipment_vendor/survey,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"eM" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"eN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"eO" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/curtain/open/privacy,
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"eP" = (
-/obj/machinery/computer/timeclock/premade/east,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"eQ" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"eR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"eS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "chapelofficelockdown"
- },
-/obj/structure/low_wall/bay/reinforced/black,
-/turf/simulated/floor,
-/area/chapel/office)
-"eT" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"eU" = (
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"eV" = (
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"eW" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"eX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 1
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"eY" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/alarm/angled,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"fa" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#8c1d11";
- fill_color = "#854a44";
- name = "Warden's Office";
- req_access = list(3);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/warden)
-"fb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"fc" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/hatch{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/chapel/main)
-"fd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"ff" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "miningops"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"fg" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/rnd/xenobiology)
-"fh" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"fi" = (
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"fj" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"fk" = (
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"fl" = (
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"fm" = (
-/obj/machinery/smartfridge/secure/virology,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"fn" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"fo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"fp" = (
-/obj/machinery/r_n_d/circuit_imprinter{
- dir = 1
- },
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research)
-"fq" = (
-/obj/structure/table/steel_reinforced,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"fr" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm3)
-"fs" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"ft" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 1
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"fu" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"fv" = (
-/obj/random/slimecore,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"fw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "brigwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/prison/cell_block)
-"fx" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"fy" = (
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/stamp/ward,
-/obj/item/weapon/stamp/denied{
- pixel_x = 5
- },
-/obj/item/weapon/pen,
-/obj/structure/table/steel_reinforced,
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fz" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"fB" = (
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/security,
-/obj/random/maintenance/research,
-/obj/random/contraband,
-/obj/random/snack,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"fD" = (
-/obj/structure/closet/secure_closet/pathfinder,
-/obj/item/device/bluespaceradio/sd_prelinked,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"fE" = (
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"fF" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"fG" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/device/gps/security{
- pixel_y = 3
- },
-/obj/item/device/gps/security{
- pixel_x = -3
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"fH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"fI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Mech Bay";
- req_access = list(29,47);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/assembly/robotics)
-"fK" = (
-/obj/machinery/mineral/equipment_vendor,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"fL" = (
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"fM" = (
-/obj/structure/closet/l3closet/scientist,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"fN" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"fO" = (
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#3d5e80"
- },
-/area/stellardelight/deck1/aft)
-"fP" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"fQ" = (
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Exploration";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"fR" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"fS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"fT" = (
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"fV" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"fW" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"fX" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled,
-/obj/machinery/photocopier/faxmachine{
- department = "Library Conference Room"
- },
-/turf/simulated/floor/wood,
-/area/library)
-"fZ" = (
-/obj/machinery/camera/network/civilian{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"ga" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/orange,
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"gb" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"gc" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"gd" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- name = "glass airlock"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/starboard)
-"ge" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"gf" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm5";
- name = "Room 5";
- stripe_color = "#89bd66"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm5)
-"gg" = (
-/obj/effect/landmark/start/xenobio,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"gh" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"gi" = (
-/obj/machinery/camera/network/civilian{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"gj" = (
-/obj/structure/stairs/spawner/south,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"gk" = (
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"gl" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/xenobiology)
-"gm" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/painting/chapel_secure{
- pixel_y = 32
- },
-/obj/effect/landmark/start/chaplain,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"gn" = (
-/obj/structure/bed/chair/backed_red,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"go" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"gp" = (
-/obj/structure/closet/crate,
-/obj/machinery/camera/network/mining{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"gq" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"gr" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"gs" = (
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/obj/item/clothing/head/welding,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/structure/closet/walllocker_double/north,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"gt" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"gu" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"gw" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/mre,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"gx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"gy" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"gz" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"gC" = (
-/obj/structure/table/steel,
-/obj/item/device/sleevemate,
-/obj/item/device/camera{
- name = "Autopsy Camera";
- pixel_x = -2;
- pixel_y = 7
- },
-/obj/machinery/alarm/angled,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"gD" = (
-/obj/structure/flora/pottedplant/decorative,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"gE" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/weapon/storage/fancy/crayons,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/flame/candle/candelabra,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
-/obj/item/weapon/nullrod,
-/obj/item/weapon/deck/tarot,
-/obj/item/device/retail_scanner/civilian,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"gF" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"gG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/portcent)
-"gH" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"gK" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"gL" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled{
- id = "GatewayShutter"
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"gM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Research and Development";
- req_access = list(7);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/research)
-"gO" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 4
- },
-/obj/machinery/power/apc/angled{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- req_access = list(31,5)
- },
-/obj/structure/cable/yellow,
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"gP" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"gQ" = (
-/turf/simulated/wall/bay/brown,
-/area/stellardelight/deck1/oreprocessing)
-"gS" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"gT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"gU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"gV" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"gW" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"gX" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/xenobiology)
-"gY" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"gZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"ha" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#323d80";
- fill_color = "#313866";
- id_tag = "rddoor";
- name = "Server Room";
- req_access = list(30);
- stripe_color = "#5a19a8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/researchserver)
-"hb" = (
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/structure/cable/pink,
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Security";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"hc" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"hd" = (
-/obj/structure/closet/secure_closet/scientist,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/researchequip)
-"he" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"hg" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"hh" = (
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"hi" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/computer/shuttle_control/explore/stellardelight/mining{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"hj" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"hk" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"hl" = (
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"hm" = (
-/obj/machinery/autolathe{
- hacked = 1
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"ho" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"hp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- name = "glass airlock"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/port)
-"hq" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25;
- pixel_y = -24
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"hr" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"hs" = (
-/obj/structure/bed/chair/office/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"ht" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"hu" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = -5
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"hv" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"hw" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"hx" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- dir = 8;
- frequency = 1379;
- master_tag = "xenobio_airlock_control";
- name = "Xenobiology Access Button";
- pixel_y = 32;
- req_access = null;
- req_one_access = list(47,55)
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- autoclose = 0;
- dir = 4;
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- frequency = 1379;
- id_tag = "xenobio_airlock_exterior";
- locked = 1;
- name = "Xenobiology Lab";
- req_access = list(47,55);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/xenobiology)
-"hy" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 4
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"hz" = (
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/obj/machinery/camera/network/command{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"hA" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"hB" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/southleft{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/machinery/door/window/northleft{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/stellardelight/deck1/researchserver)
-"hC" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_y = -2
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_y = -8
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_y = 4
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_y = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"hD" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"hE" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"hF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#8c1d11";
- name = "Equipment Storage";
- req_access = list(1);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/security_lockerroom)
-"hG" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_x = 32;
- pixel_y = 10
- },
-/obj/structure/sign/directions/chapel{
- dir = 8;
- pixel_x = 32;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"hH" = (
-/obj/machinery/door/blast/angled{
- id = "GatewayShutter"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"hI" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"hJ" = (
-/turf/simulated/wall/bay/white,
-/area/medical/virology)
-"hK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"hL" = (
-/obj/effect/floor_decal/steeldecal/steel_decals3,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"hM" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"hN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"hO" = (
-/obj/item/weapon/weldingtool,
-/obj/item/clothing/glasses/welding,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/structure/closet/walllocker_double/north,
-/obj/item/device/multitool,
-/obj/structure/sink/kitchen{
- dir = 4;
- pixel_x = 11
- },
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"hP" = (
-/obj/structure/morgue{
- dir = 2
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"hQ" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"hR" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"hS" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/sign/department/biblio{
- pixel_x = 32;
- plane = -34
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"hT" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"hU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"hV" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"hW" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"hX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"hY" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "GatewayShutterW"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/gateway)
-"hZ" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/closet/bombcloset,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"ia" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"ib" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/orange{
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"ic" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/orange,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"id" = (
-/obj/machinery/camera/network/halls{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"ie" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"if" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"ig" = (
-/obj/effect/floor_decal/industrial/loading,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"ih" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"ii" = (
-/obj/random/maintenance/security,
-/obj/random/medical,
-/obj/structure/table/rack,
-/obj/random/maintenance/security,
-/obj/random/maintenance,
-/obj/random/snack,
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"ik" = (
-/obj/structure/cable/white{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"il" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"im" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"in" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"io" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 29
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 38
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"ip" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"iq" = (
-/turf/simulated/floor/wood,
-/area/library)
-"ir" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"is" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"it" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"iv" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"iw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"ix" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"iy" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"iz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/library)
-"iA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"iB" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"iC" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/xenobiology)
-"iD" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"iE" = (
-/obj/structure/sign/painting/library_private{
- pixel_x = -32
- },
-/obj/structure/sign/painting/library_private{
- pixel_y = -32
- },
-/obj/item/weapon/storage/briefcase,
-/obj/item/weapon/storage/briefcase,
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/library)
-"iF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- name = "Custodial Closet";
- req_access = list(26);
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/janitor)
-"iG" = (
-/obj/structure/closet/wardrobe/virology_white,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled,
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"iH" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/effect/shuttle_landmark/shuttle_initializer/exploration,
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"iI" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"iJ" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/halls{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"iK" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/weapon/paper_bin{
- pixel_y = 7
- },
-/obj/item/weapon/pen{
- pixel_y = 6
- },
-/obj/random/coin/sometimes,
-/turf/simulated/floor/wood,
-/area/library)
-"iL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"iM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#ffffff";
- name = "maintenance access";
- req_one_access = null;
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"iN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/chapel/main)
-"iO" = (
-/obj/structure/table/steel,
-/obj/item/weapon/folder/red{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/weapon/folder/red,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"iQ" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"iR" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"iS" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/station_map{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"iT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"iU" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"iV" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "researchwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/rnd/xenobiology/xenoflora)
-"iW" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"iX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"iY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 4;
- frequency = 1380;
- id_tag = "explodocker_bay";
- pixel_x = -24
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"iZ" = (
-/obj/effect/floor_decal/milspec/color/red,
-/obj/machinery/alarm/angled,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"ja" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/flora/pottedplant/minitree,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"jb" = (
-/obj/machinery/door/blast/multi_tile/three_tile_ver{
- id = "xenospace2"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"jc" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/obj/effect/floor_decal/milspec/color/red/half,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"jd" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"jf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/halls,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"jg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/network/halls{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"jh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"ji" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"jj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- icon_state = "map_vent_out";
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/stellardelight/deck1/researchserver)
-"jk" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/wall{
- dir = 8;
- pixel_x = 24;
- plane = -34
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"jl" = (
-/obj/structure/table/steel,
-/obj/item/device/retail_scanner/security,
-/obj/item/device/taperecorder,
-/obj/item/weapon/storage/box/evidence,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"jm" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"jn" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"jo" = (
-/obj/machinery/button/crematorium{
- id = "crematorium";
- pixel_x = 25;
- req_access = list();
- req_one_access = null
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"jp" = (
-/obj/structure/cable/orange{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"jq" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/weapon/storage/pill_bottle/dice_nerd,
-/turf/simulated/floor/wood,
-/area/library)
-"jr" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "brigwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/prison/cell_block/B)
-"js" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"jt" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"ju" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 5";
- req_access = list(55)
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 4";
- req_access = list(55)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"jv" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"jw" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"jx" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"jy" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "securitylockdown"
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"jz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm3)
-"jA" = (
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"jB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"jC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/library)
-"jD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"jF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"jG" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"jH" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"jI" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"jJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/vending/nifsoft_shop,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"jK" = (
-/obj/machinery/door/window/southleft{
- dir = 8;
- name = "Library Desk Door";
- req_access = list(37)
- },
-/obj/machinery/button/remote/blast_door{
- id = "librarywindowlockdown";
- name = "Window Lockdown";
- pixel_y = 25;
- req_access = null
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"jL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/library)
-"jN" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"jO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Cargo Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/cargo)
-"jP" = (
-/obj/machinery/gateway{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"jQ" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"jR" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"jS" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"jT" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"jV" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"jW" = (
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/landmark/start/pilot,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"jY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"jZ" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"ka" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"kb" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"kc" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Civilian Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"kd" = (
-/obj/structure/flora/pottedplant/stoutbush,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"ke" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"kf" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"kg" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"kh" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"kj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/sign/directions/janitor{
- dir = 8;
- pixel_x = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"kk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"kl" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/obj/machinery/station_map{
- dir = 8;
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"km" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"kn" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"ko" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"kp" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"kq" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"kr" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Research Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"ks" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/purple{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"kt" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ku" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/light,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"kv" = (
-/obj/structure/sign/deck1{
- pixel_x = 32
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"kw" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/wood,
-/area/library)
-"kx" = (
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"ky" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-<<<<<<< HEAD
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-=======
-/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"kz" = (
-/obj/machinery/computer/message_monitor{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"kA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"kB" = (
-/turf/simulated/wall/bay/r_wall/black,
-/area/maintenance/security_port)
-"kC" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"kE" = (
-/obj/machinery/gateway{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"kG" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"kH" = (
-/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"kI" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 3";
- req_access = list(55)
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 3";
- req_access = list(55)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"kJ" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"kK" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"kL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"kM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"kN" = (
-/obj/machinery/door/blast/multi_tile/three_tile_ver{
- id = "xenospace4"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"kO" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"kP" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/rnd/storage)
-"kQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"kS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"kT" = (
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "0-8"
- },
-/obj/machinery/camera/network/security,
-/obj/machinery/computer/arcade,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"kU" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"kW" = (
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"kY" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"la" = (
-/obj/machinery/smartfridge/secure/extract,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"lb" = (
-/obj/machinery/door/blast/angled{
- id = "xenobiodiv3";
- name = "Divider 3 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"lc" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"ld" = (
-/obj/structure/table/steel,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"le" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"lf" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"lg" = (
-/obj/effect/shuttle_landmark/premade/sd/deck1/starboard,
-/turf/space,
-/area/space)
-"lh" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"li" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"lk" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"ll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"lm" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"ln" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 1";
- req_access = list(55)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"lo" = (
-/obj/structure/table/woodentable,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/obj/item/device/taperecorder,
-/turf/simulated/floor/carpet,
-/area/library)
-"lp" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/flasher/portable,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"lq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Security Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/security)
-"lr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/closet/crate/trashcart,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"ls" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/directions/dorms{
- dir = 6;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/science{
- dir = 4;
- pixel_x = -32
- },
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
- pixel_x = -32;
- pixel_y = -6
- },
-/obj/structure/sign/directions/janitor{
- pixel_x = -32;
- pixel_y = -12
- },
-/obj/machinery/camera/network/halls{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"lt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"lu" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/storage/box/backup_kit,
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"lv" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/port)
-"lw" = (
-/obj/structure/bed/chair/backed_red{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"lx" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"ly" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"lz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#9fccc7";
- fill_color = "#333333";
- name = "Pilot Equipment";
- req_access = list(67);
- stripe_color = "#ffffff"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/pilot)
-"lA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm/angled,
-/obj/structure/ore_box,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"lB" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/firealarm/angled,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/weapon/storage/box/donut,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"lC" = (
-/obj/item/weapon/bedsheet/bluedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"lD" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"lF" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"lG" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"lH" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"lI" = (
-/obj/structure/cable/orange{
- icon_state = "2-4"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Atmospherics Subgrid";
- name_tag = "Atmospherics Subgrid"
- },
-/obj/structure/cable/orange{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"lJ" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/flasher/portable,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"lK" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/wall{
- dir = 8;
- pixel_x = 24;
- plane = -34
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenospace2";
- name = "2 Space Door";
- pixel_x = 10;
- pixel_y = 21;
- req_access = list(55)
- },
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"lM" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/department/biblio{
- pixel_x = 32;
- plane = -34
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"lN" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"lO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#333333";
- name = "Exploration Equipment Room";
- req_access = null;
- req_one_access = list(19,43,67);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/exploequipment)
-"lP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"lQ" = (
-/obj/structure/mirror{
- pixel_y = 38
- },
-/obj/structure/sink{
- pixel_y = 20
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"lR" = (
-/obj/structure/stairs/spawner/north,
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"lS" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"lT" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"lU" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"lV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/closet/emcloset,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"lW" = (
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/xenoflora/full,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"lX" = (
-/obj/structure/closet/secure_closet/paramedic,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"lY" = (
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"lZ" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 4
- },
-/obj/item/device/radio{
- anchored = 1;
- canhear_range = 7;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- name = "Virology Emergency Phone";
- pixel_x = 7;
- pixel_y = 9
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- dir = 4;
- id = "virologyquar";
- name = "Virology Emergency Lockdown Control";
- pixel_x = -28;
- pixel_y = 5;
- req_access = list(5)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"ma" = (
-/obj/structure/table/steel,
-/obj/random/contraband,
-/obj/random/maintenance/research,
-/obj/random/maintenance,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"mb" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"mc" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"md" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"me" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/library)
-"mf" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"mg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/detective,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"mh" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"mi" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"mj" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -24;
- pixel_y = -25
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"mk" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"ml" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"mm" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"mn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/orange/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"mo" = (
-/obj/structure/bookcase{
- name = "bookcase (Fiction)"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/sign/painting/library_secure{
- pixel_x = -30
- },
-/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman,
-/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor,
-/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1,
-/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain,
-/obj/item/weapon/book/bundle/custom_library/fiction/ghostship,
-/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver,
-/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,
-/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday,
-/obj/item/weapon/book/bundle/custom_library/fiction/raissue142,
-/obj/item/weapon/book/bundle/custom_library/fiction/raissue147,
-/obj/item/weapon/book/bundle/custom_library/fiction/silence,
-/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,
-/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke,
-/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath,
-/obj/item/weapon/book/custom_library/fiction/myrock,
-/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones,
-/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,
-/turf/simulated/floor/wood,
-/area/library)
-"mr" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"mt" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"mu" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"mv" = (
-/obj/structure/janitorialcart,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"mw" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"mx" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"my" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"mz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"mA" = (
-/obj/structure/sign/deck1{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"mB" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"mC" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink,
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"mD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"mE" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/station_map{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"mF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"mG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"mH" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"mI" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"mJ" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"mK" = (
-/obj/structure/table/sifwooden_reinforced,
-/obj/item/weapon/storage/box/nifsofts_pilot,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"mL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"mM" = (
-/turf/simulated/wall/bay/steel,
-/area/janitor)
-"mN" = (
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30
- },
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"mO" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"mP" = (
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"mQ" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"mR" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- name = "Recovery Room";
- req_access = list(6);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/patient_wing)
-"mS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- name = "glass airlock"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/starboard)
-"mT" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"mU" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"mV" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"mW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/double/glass{
- dir = 8;
- door_color = "#333333";
- name = "Exploration";
- req_one_access = list(19,43,67);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/explobriefing)
-"mX" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"mY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"mZ" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/bulletproof,
-/obj/item/clothing/shoes/leg_guard/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof/alt,
-/obj/item/clothing/head/helmet/bulletproof,
-/obj/item/clothing/gloves/arm_guard/bulletproof,
-/obj/item/clothing/shoes/leg_guard/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof/alt,
-/obj/item/clothing/head/helmet/bulletproof,
-/obj/machinery/atmospherics/pipe/simple/hidden/purple,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"na" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/expedition_medical,
-/obj/item/clothing/head/helmet/space/void/expedition_medical,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"nb" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"nc" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"nd" = (
-/obj/structure/closet/secure_closet/sar,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"ne" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Exploration Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"nf" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm2)
-"ng" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"nh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"ni" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/security/tactical)
-"nj" = (
-/obj/structure/table/sifwooden_reinforced,
-/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"nk" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/explobriefing)
-"nl" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Exploration Subgrid";
- name_tag = "Exploration Subgrid"
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"nm" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"nn" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"no" = (
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"nq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#8c1d11";
- name = "Security Processing";
- req_access = list(63);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/security_processing)
-"nt" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"nu" = (
-/obj/machinery/transhuman/synthprinter,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"nv" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.6
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"nw" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 1;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"nx" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#ffffff";
- name = "Morgue";
- req_access = list(6);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/morgue)
-"ny" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "explowindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/explobriefing)
-"nz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"nA" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"nB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"nC" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/emergsuit_wall{
- dir = 4;
- pixel_x = 27
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"nD" = (
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"nE" = (
-/obj/machinery/computer/rdconsole/core{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research)
-"nF" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"nG" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/department/medbay{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"nH" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"nI" = (
-/obj/effect/floor_decal/milspec/color/emerald,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"nJ" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- name = "glass airlock"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/port)
-"nK" = (
-/turf/simulated/wall/rshull,
-/area/stellardelight/deck1/miningshuttle)
-"nL" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"nM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/chapel/chapel_morgue)
-"nN" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"nO" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 32;
- pixel_y = -24
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"nP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"nQ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"nS" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"nT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"nV" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/forensics/sample_kit/powder,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"nW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"nX" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"nY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"nZ" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"oa" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ob" = (
-<<<<<<< HEAD
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-=======
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-"oc" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/aft)
-"od" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green,
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Civilian Subgrid";
- name_tag = "Civilian Subgrid"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"oe" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"of" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"og" = (
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"oh" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the cleaning room exit.";
- dir = 4;
- id = "resleeveexit";
- name = "Door Control";
- pixel_x = -27;
- pixel_y = 25
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"oi" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/rnd/xenobiology)
-"ok" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Exploration";
- sortType = "Exploration"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"ol" = (
-/obj/machinery/newscaster/security_unit{
- pixel_x = 32
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"om" = (
-/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration,
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"on" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"oo" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"op" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"oq" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"or" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"os" = (
-/obj/structure/sign/department/miner_dock{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"ou" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"ov" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"ox" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"oy" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals3,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"oz" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/substation/research)
-"oA" = (
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "dorm4";
- name = "Room 4 Lock";
- pixel_y = -22;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"oB" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"oC" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-<<<<<<< HEAD
-=======
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"oD" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"oE" = (
-/turf/simulated/wall/bay/white,
-/area/medical/morgue)
-"oF" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"oG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"oH" = (
-/obj/structure/disposalpipe/tagger{
- dir = 2;
- name = "package tagger - Void";
- sort_tag = "Void"
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/department/virology{
- pixel_x = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"oI" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"oJ" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/mining,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/head/helmet/space/void/mining,
-/obj/item/weapon/mining_scanner,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"oK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/library)
-"oL" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_circuit_printer,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"oM" = (
-/obj/machinery/transhuman/resleever,
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"oO" = (
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"oQ" = (
-/obj/machinery/vending/wardrobe/secdrobe,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"oR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark/start/pilot,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"oS" = (
-/obj/structure/table/steel,
-/obj/item/device/electronic_assembly/large/default,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"oT" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/item/clothing/under/bathrobe,
-/obj/item/clothing/under/bathrobe,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"oU" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"oW" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"oX" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/storage)
-"oY" = (
-/obj/machinery/organ_printer/flesh,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"oZ" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"pa" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/aft)
-"pb" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"pc" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"pd" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_x = -64
- },
-/obj/effect/landmark/start/pf,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"pe" = (
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"pf" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"pg" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/catwalk_plated/dark,
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/starboard)
-"ph" = (
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"pi" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"pj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"pk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"pl" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/tactical)
-"pm" = (
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "dorm6";
- name = "Room 6 Lock";
- pixel_y = -22;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"pn" = (
-/obj/structure/cable/pink{
- icon_state = "1-4"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"pp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "chapelwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/black,
-/turf/simulated/floor,
-/area/chapel/main)
-"pq" = (
-/obj/machinery/portable_atmospherics/canister/phoron,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"pr" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/milspec/color/orange/half,
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"ps" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Equipment Room";
- req_access = list(7);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/research)
-"pt" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Toxins Storage";
- req_access = list(8);
- stripe_color = "#5a19a8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/storage)
-"pu" = (
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"pv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 32;
- pixel_y = 7
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"pw" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"px" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/computer/guestpass{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"py" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"pz" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"pA" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the cleaning room.";
- dir = 4;
- id = "resleeveclean";
- name = "Door Control";
- pixel_x = -27;
- pixel_y = -27
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"pC" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/stellardelight/deck1/exploequipment)
-"pD" = (
-/obj/structure/table/woodentable,
-/obj/item/device/tvcamera,
-/obj/structure/sign/painting/library_private{
- pixel_y = -32
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/library)
-"pE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/purple{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/full,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"pF" = (
-/turf/simulated/wall/bay/purple,
-/area/stellardelight/deck1/researchequip)
-"pG" = (
-/obj/machinery/suit_cycler/exploration,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"pH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#a6753d";
- name = "Mining";
- req_access = list(31);
- stripe_color = "#3b2b1a"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/mining)
-"pI" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "ex_airpump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- id_tag = "ex_airlock";
- pixel_y = 24;
- req_one_access = list(13);
- tag_airpump = "ex_airpump";
- tag_chamber_sensor = "ex_sensor";
- tag_exterior_door = "ex_exterior";
- tag_interior_door = "ex_interior"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"pJ" = (
-/obj/structure/bed/chair/sofa/corp/left{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"pK" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/purple,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"pL" = (
-/obj/machinery/door/window/brigdoor/southright{
- req_access = list(77);
- req_one_access = newlist()
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"pM" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"pN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"pO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Cargo Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/cargo)
-"pP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"pQ" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/rnd/xenobiology/xenoflora_storage)
-"pR" = (
-/turf/simulated/wall/bay/brown,
-/area/stellardelight/deck1/miningequipment)
-"pT" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"pU" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_x = -32
- },
-/obj/structure/sign/directions/medical{
- dir = 1;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/stairs_up{
- dir = 1;
- pixel_x = -32;
- pixel_y = 12
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"pV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"pX" = (
-/obj/machinery/shower{
- dir = 1;
- pixel_y = -2
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/curtain/open/shower/medical,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/medical/virology)
-"pY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/detective,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"pZ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"qa" = (
-/obj/machinery/suit_cycler/medical,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"qb" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "miningops"
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"qd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"qe" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"qg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 8;
- frequency = 1380;
- id_tag = "miningdocker_bay";
- pixel_x = 24
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"qh" = (
-/turf/simulated/wall/bay/white,
-/area/medical/exam_room)
-"qj" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 4;
- name = "Library";
- sortType = "Library"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/stellardelight/deck1/starboard)
-"qk" = (
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"ql" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Exploration Briefing"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"qm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"qn" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"qo" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"qp" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"qq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"qs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/orange/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"qu" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"qv" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/sign/deck1{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"qw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm4";
- name = "Room 4";
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm4)
-"qx" = (
-/obj/machinery/atmospherics/unary/heater{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"qy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/sign/directions/evac{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"qA" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/stellardelight/deck1/researchserver)
-"qB" = (
-/obj/structure/table/bench/steel,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"qD" = (
-/turf/simulated/wall/bay/white,
-/area/stellardelight/deck1/paramedic)
-"qE" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/shower)
-"qF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"qG" = (
-/obj/machinery/door_timer/cell_3{
- id = "Cell C";
- name = "Cell C";
- pixel_x = 32;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"qH" = (
-/obj/item/modular_computer/console/preset/civilian,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"qI" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/flashbangs{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/weapon/storage/box/handcuffs{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/item/weapon/storage/box/evidence,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"qJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#8c1d11";
- name = "maintenance access";
- req_one_access = list(38,63);
- stripe_color = "#8c1d11"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/tactical)
-"qK" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"qL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/halls{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"qM" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"qN" = (
-/obj/structure/sign/painting/chapel_secure{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"qO" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"qP" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"qQ" = (
-/obj/machinery/light_switch{
- pixel_y = 25
- },
-/obj/machinery/button/remote/blast_door{
- id = "chapelwindowlockdown";
- name = "Window Lockdown";
- pixel_x = -9;
- pixel_y = 25
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"qR" = (
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"qS" = (
-/obj/machinery/button/remote/blast_door{
- id = "brigwindowlockdown";
- name = "Window Lockdown";
- pixel_y = 25;
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"qT" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/effect/catwalk_plated/dark,
-/obj/item/device/radio/beacon,
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"qU" = (
-/obj/machinery/mineral/stacking_machine,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"qV" = (
-/obj/machinery/suit_cycler/mining,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"qW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- name = "Resleeving Lab";
- req_access = list(5);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/resleeving)
-"qX" = (
-/turf/space/internal_edge/right,
-/area/stellardelight/deck1/starboard)
-"qY" = (
-/obj/effect/floor_decal/milspec/color/orange/half,
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"qZ" = (
-/obj/structure/table/steel,
-/obj/item/device/retail_scanner/security,
-/obj/item/device/retail_scanner/security,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"ra" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/exploration)
-"rb" = (
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "GatewayShutterW";
- name = "EVA Shutter";
- pixel_x = 23;
- req_one_access = list(18,19,43,67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"rc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"rd" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"re" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/sign/painting/public{
- pixel_x = -30
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"rf" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"rg" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"rh" = (
-/obj/structure/table/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = 3
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -6;
- pixel_y = -3
- },
-/obj/item/weapon/storage/box/donut,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"ri" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"rj" = (
-/obj/machinery/camera/network/research,
-/obj/machinery/vending/hydronutrients,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"rk" = (
-/obj/structure/bed/chair/backed_red,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"rl" = (
-/obj/structure/cable/orange{
- icon_state = "2-8"
- },
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"rm" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"rn" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/mining,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/head/helmet/space/void/mining,
-/obj/item/weapon/mining_scanner,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/mining{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"ro" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-8"
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"rp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/morgue{
- dir = 2;
- name = "Private Study";
- req_access = list(37)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/library)
-"rr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/library)
-"rs" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Security Subgrid";
- name_tag = "Security Subgrid"
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"rt" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"ru" = (
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25;
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/assembly/robotics)
-"rv" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"rw" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"ry" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "dontlooktmyrobotpenis";
- name = "Privacy Shutters"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/assembly/robotics)
-"rz" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/closet/walllocker_double/east,
-/obj/item/device/defib_kit/jumper_kit,
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/weapon/book/manual/robotics_cyborgs,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/assembly/robotics)
-"rA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Civilian Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/civilian)
-"rB" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"rC" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"rD" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"rF" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/armoury)
-"rG" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"rH" = (
-/obj/structure/closet/l3closet/security,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/firealarm/angled,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"rI" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/mining,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/head/helmet/space/void/mining,
-/obj/item/weapon/mining_scanner,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"rJ" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"rK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"rL" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- name = "Morgue";
- req_access = list(6);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/morgue)
-"rM" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"rN" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"rO" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/deployable/barrier,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"rP" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"rQ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "GatewayShutterE"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/gateway)
-"rS" = (
-/obj/structure/closet/walllocker_double/east{
- dir = 8;
- pixel_x = -32
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"rT" = (
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"rV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"rW" = (
-/obj/machinery/button/remote/airlock{
- id = "dorm8";
- name = "Room 8 Lock";
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"rX" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"rY" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp{
- pixel_x = -14;
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "chapelofficelockdown";
- name = "Window Lockdown";
- pixel_x = -5;
- pixel_y = 5
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"rZ" = (
-/obj/machinery/door/airlock/angled_bay/standard/color/common{
- dir = 4;
- id_tag = "bathroomstall1";
- name = "Toilet 1"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/crew_quarters/toilet)
-"sa" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"sb" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/directions/dorms{
- dir = 10;
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/science{
- pixel_x = 32
- },
-/obj/structure/sign/directions/janitor{
- dir = 8;
- pixel_x = 32;
- pixel_y = -6
- },
-/obj/machinery/camera/network/halls{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"sc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"sd" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"se" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"sf" = (
-/obj/machinery/disease2/isolator,
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/obj/machinery/alarm/angled,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"sg" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"sh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/department/medbay{
- name = "RESLEEVING";
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"si" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"sj" = (
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"sl" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/curtain/open/privacy,
-/obj/machinery/alarm/angled,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"sm" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"sn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"so" = (
-/obj/machinery/gateway{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"sp" = (
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"sq" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"sr" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/gunbox/warden,
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/item/weapon/gun/energy/sizegun,
-/obj/item/weapon/storage/box/donut,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ss" = (
-/obj/machinery/optable{
- name = "Robotics Operating Table"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/medical_wall/anesthetics{
- pixel_x = 32;
- req_access = list();
- req_one_access = list(29,45)
- },
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"st" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/mining)
-"su" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"sv" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/security/armoury)
-"sw" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"sx" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"sy" = (
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"sz" = (
-/obj/structure/sign/deck1{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"sA" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"sB" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"sC" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- door_color = "#333333";
- name = "Exploration";
- req_one_access = null;
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/exploration)
-"sD" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"sE" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"sF" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"sG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"sH" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"sI" = (
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Virology Isolation Room One";
- req_one_access = list(39)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"sJ" = (
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"sK" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"sL" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"sM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atm{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"sN" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"sO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"sP" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Security Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"sQ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"sR" = (
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/mining)
-"sS" = (
-/obj/machinery/recharge_station,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"sT" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"sU" = (
-/obj/structure/closet/coffin,
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"sV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"sW" = (
-/obj/machinery/door/airlock/angled_bay/external/glass{
- dir = 4;
- frequency = 1379;
- id_tag = "ex_exterior";
- locked = 1;
- name = "Exterior Airlock"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "ex_airlock";
- name = "exterior access button";
- pixel_y = 32;
- req_one_access = list(13)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/exploration)
-"sX" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 1
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"sY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"sZ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"ta" = (
-/turf/simulated/wall/bay/white,
-/area/stellardelight/deck1/lowermed)
-"tb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"td" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/portcent)
-"te" = (
-/obj/machinery/suit_cycler/exploration,
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"tf" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/researchequip)
-"tg" = (
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"th" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/riot,
-/obj/item/clothing/shoes/leg_guard/riot,
-/obj/item/clothing/suit/armor/riot/alt,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/clothing/gloves/arm_guard/riot,
-/obj/item/clothing/shoes/leg_guard/riot,
-/obj/item/clothing/suit/armor/riot/alt,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/weapon/shield/riot,
-/obj/effect/floor_decal/milspec/color/black,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"ti" = (
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"tj" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"tl" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/mob/living/simple_mob/animal/passive/mimepet/gregory,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"tm" = (
-/obj/structure/dogbed,
-/mob/living/simple_mob/animal/passive/tindalos/twigs,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"tn" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"to" = (
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"tp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "security_airlock";
- name = "interior access button";
- pixel_x = -32;
- req_access = list(1)
- },
-/obj/machinery/door/airlock/angled_bay/external/glass{
- frequency = 1379;
- id_tag = "security_interior";
- locked = 1;
- name = "Security Airlock"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/tactical)
-"tq" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Circuitry Workshop";
- req_access = list(7);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/workshop)
-"tr" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"ts" = (
-/obj/machinery/mech_recharger,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"tt" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/gloves/arm_guard/laserproof,
-/obj/item/clothing/shoes/leg_guard/laserproof,
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/clothing/head/helmet/laserproof,
-/obj/item/clothing/gloves/arm_guard/laserproof,
-/obj/item/clothing/shoes/leg_guard/laserproof,
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/clothing/head/helmet/laserproof,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"tu" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/purple,
-/turf/simulated/floor,
-/area/stellardelight/deck1/exploequipment)
-"tv" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"tw" = (
-/obj/structure/sign/department/sci{
- pixel_x = 32
- },
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"tx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"tz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"tA" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 5;
- network = list("Xenobiology")
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"tB" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"tC" = (
-/turf/simulated/wall/bay/r_wall/black,
-/area/security/armoury)
-"tD" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"tE" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/bed/chair,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"tF" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"tG" = (
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"tH" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"tI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/department/rnd{
- pixel_y = 32
- },
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/rnd/research)
-"tJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"tK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/conveyor_switch/oneway{
- id = "bodieshitthefloor";
- pixel_x = -12;
- pixel_y = 20
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"tL" = (
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#3d5e80"
- },
-/area/chapel/chapel_morgue)
-"tM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"tN" = (
-/obj/structure/table/steel,
-/obj/random/maintenance/security,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"tO" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/pen,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"tP" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"tR" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"tS" = (
-/obj/machinery/papershredder,
-/obj/machinery/camera/network/security,
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"tT" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"tU" = (
-/obj/structure/table/bench/steel,
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"tW" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"tX" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -24;
- pixel_y = -25
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"tY" = (
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"tZ" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"ua" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/empty,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"ub" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/ammo_magazine/m45/rubber{
- pixel_y = 9
- },
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/ammo_magazine/m45/rubber{
- pixel_y = -3
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"uc" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"ue" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"uf" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"ug" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"uh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/blast/regular/open{
- id = "talon_boat_cockpit"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/stellardelight/deck1/exploshuttle)
-"ui" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"uj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"uk" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"ul" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"um" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/atmospherics)
-"un" = (
-/obj/machinery/gateway{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"uo" = (
-/obj/structure/cable/orange{
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"uq" = (
-/turf/space,
-/area/space)
-"ur" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#8c1d11";
- name = "Brig";
- req_access = null;
- req_one_access = list(38,63);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/lobby)
-"us" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/substation/medical)
-"ut" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"uu" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"uv" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"uw" = (
-/turf/space/internal_edge/left,
-/area/stellardelight/deck1/starboard)
-"ux" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#333333";
- fill_color = "#757575";
- name = "Pathfinder";
- req_access = list(44);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/pathfinder)
-"uy" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/machinery/camera/network/security,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"uz" = (
-/obj/structure/table/reinforced,
-/obj/item/device/slime_scanner,
-/obj/item/device/slime_scanner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/machinery/light,
-/obj/item/weapon/storage/box/syringes,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"uA" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"uB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "explowindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/exploration)
-"uC" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"uD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"uF" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/exploration)
-"uG" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/structure/closet/emergsuit_wall{
- dir = 8;
- pixel_x = -27
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"uH" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/structure/cable/pink{
- icon_state = "0-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"uI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25;
- pixel_y = -32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"uJ" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"uL" = (
-/obj/effect/floor_decal/chapel,
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"uM" = (
-/obj/structure/closet/excavation,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"uN" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"uP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"uQ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"uR" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/rnd/research)
-"uS" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"uT" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"uU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#ffffff";
- name = "Research and Development";
- req_access = list(7);
- stripe_color = "#5a19a8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/workshop)
-"uV" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -32;
- req_access = list(39)
- },
-/obj/machinery/door/blast/angled/open{
- id = "virologyquar";
- name = "Virology Emergency Quarantine Blast Doors"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- autoclose = 0;
- door_color = "#ffffff";
- frequency = 1379;
- id_tag = "virology_airlock_exterior";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access = list(39);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"uW" = (
-/turf/simulated/wall/bay/purple,
-/area/stellardelight/deck1/exploration)
-"uX" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"uY" = (
-/obj/structure/closet/radiation,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"uZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"va" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"vb" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"vc" = (
-/obj/machinery/vending/security,
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"vd" = (
-/obj/structure/mirror{
- pixel_y = 38
- },
-/obj/structure/sink{
- pixel_y = 20
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"ve" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"vf" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/aft)
-"vg" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"vh" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"vi" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"vj" = (
-/obj/machinery/recharge_station,
-/obj/machinery/camera/network/exploration,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"vk" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"vm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/crew_quarters/toilet)
-"vn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"vo" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"vp" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"vq" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"vr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"vs" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"vt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/item_bank{
- dir = 4;
- pixel_x = -29
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"vu" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm5)
-"vv" = (
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"vw" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"vx" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/armoury)
-"vy" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/explobriefing)
-"vz" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"vA" = (
-/obj/machinery/computer/secure_data,
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"vB" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"vC" = (
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"vD" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"vE" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"vF" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"vG" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- icon_state = "16-0"
- },
-/obj/structure/disposalpipe/up{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"vH" = (
-/obj/machinery/button/remote/blast_door{
- id = "GatewayShutterE";
- name = "EVA Shutter";
- pixel_x = 5;
- pixel_y = 24;
- req_one_access = list(18,19,43,67)
- },
-/obj/machinery/button/remote/blast_door{
- id = "GatewayShutterW";
- name = "EVA Shutter";
- pixel_x = -5;
- pixel_y = 24;
- req_access = null;
- req_one_access = list(18,19,43,67)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"vI" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/storage)
-"vJ" = (
-/obj/machinery/mineral/stacking_unit_console{
- density = 0
- },
-/turf/simulated/wall/bay/brown,
-/area/stellardelight/deck1/oreprocessing)
-"vK" = (
-/obj/machinery/requests_console{
- department = "Exploration";
- name = "Exploration Requests Console";
- pixel_x = -30
- },
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"vL" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"vM" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"vN" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"vP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"vQ" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"vT" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"vU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"vV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"vW" = (
-/obj/structure/bed/chair/office/light{
- dir = 1
- },
-/obj/effect/landmark/start/medical,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"vX" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"vY" = (
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/bluegrid,
-/area/assembly/robotics)
-"vZ" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"wa" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"wb" = (
-/obj/structure/sign/painting/chapel_secure{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"wc" = (
-/obj/machinery/firealarm/angled,
-/obj/machinery/mecha_part_fabricator/pros,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"we" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/nifsofts_security,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/vending/wallmed1/public{
- pixel_x = -29
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"wf" = (
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"wg" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"wh" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"wi" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"wj" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"wk" = (
-/obj/machinery/requests_console{
- department = "Exploration";
- name = "Exploration Requests Console";
- pixel_x = -30
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"wm" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"wn" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"wo" = (
-/obj/structure/table/bench/marble,
-/obj/machinery/camera/network/medbay{
- dir = 1
- },
-/obj/effect/landmark/start/paramedic,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"wp" = (
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"wq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"ws" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"wt" = (
-/obj/structure/table/rack,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/item/weapon/tank/oxygen,
-/obj/item/weapon/tank/oxygen,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"wu" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"wv" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"ww" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"wx" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"wy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"wz" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/library)
-"wA" = (
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"wB" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"wC" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 8
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"wE" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm1)
-"wF" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/cargo)
-"wG" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"wI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/seed_storage/xenobotany,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"wJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"wK" = (
-/obj/machinery/computer/rdconsole/robotics,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"wL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"wM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/orange,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"wN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"wO" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/mining/brace,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"wP" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"wQ" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"wR" = (
-/obj/machinery/computer/diseasesplicer{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"wS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm8";
- name = "Room 8";
- stripe_color = "#89bd66"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm8)
-"wT" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"wU" = (
-/obj/structure/cable/orange{
- icon_state = "2-4"
- },
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"wV" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"wW" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"wX" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/security/tactical)
-"wY" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"wZ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_y = 32
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"xa" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"xb" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/exploration)
-"xc" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"xd" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"xe" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/starboard)
-"xf" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/brown,
-/turf/simulated/floor,
-/area/stellardelight/deck1/miningequipment)
-"xg" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = -7;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/device/flashlight/pen{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/computer/guestpass{
- dir = 8;
- pixel_x = 25
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"xh" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 8
- },
-/obj/item/weapon/pen/blue{
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"xi" = (
-/obj/structure/morgue{
- dir = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"xj" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"xk" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"xl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/steel,
-/obj/random/maintenance,
-/obj/random/maintenance/research,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/cargo,
-/obj/random/contraband,
-/obj/random/action_figure,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"xm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"xn" = (
-/obj/machinery/firealarm/angled,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"xq" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"xs" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/roboticist,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"xt" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start/xenobio,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"xu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"xv" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/wall{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"xw" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/item/weapon/disk/nifsoft/compliance,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"xx" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/starboard)
-"xy" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/portfore)
-"xz" = (
-/obj/machinery/requests_console/preset/research{
- pixel_y = 30
- },
-/obj/machinery/button/remote/blast_door{
- id = "rndshutters";
- name = "Privacy Shutter Control";
- pixel_x = -15;
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"xA" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"xB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
-"xC" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"xD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"xE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/station_map{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"xF" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Research";
- sortType = "Research"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"xG" = (
-/obj/machinery/chem_master,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/camera/network/security{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"xH" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"xI" = (
-/obj/machinery/door/window/eastright{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"xJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/blast/regular/open{
- id = "talon_boat_cockpit"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/stellardelight/deck1/miningshuttle)
-"xK" = (
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/closet/firecloset,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"xL" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"xM" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "ex_airpump"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"xN" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"xO" = (
-/obj/machinery/computer/shuttle_control/explore/stellardelight/mining,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"xP" = (
-/obj/structure/sign/department/morgue{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"xQ" = (
-/obj/structure/window/reinforced,
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"xR" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"xS" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/shower)
-"xT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"xU" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"xV" = (
-/turf/simulated/floor/carpet,
-/area/library)
-"xW" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/substation/security)
-"xX" = (
-/obj/structure/table/reinforced,
-/obj/item/device/uv_light,
-/obj/item/weapon/reagent_containers/spray/luminol,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"xZ" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"ya" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"yb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/blast/regular/open{
- id = "talon_boat_cockpit"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/stellardelight/deck1/exploshuttle)
-"yc" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 8
- },
-/obj/machinery/power/apc/angled{
- cell_type = /obj/item/weapon/cell/super;
- dir = 4;
- req_access = list(19,43,67,66,5)
- },
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"yd" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"ye" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/prison/cell_block)
-"yf" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"yg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/library)
-"yi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"yj" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"yk" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/multi_tile/two_tile_ver{
- id = "armorydoor";
- name = "Armory"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"yl" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"ym" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/rnd/xenobiology)
-"yn" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"yo" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"yp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#ffffff";
- name = "maintenance access";
- req_one_access = null;
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"yq" = (
-/obj/structure/table/standard,
-/obj/machinery/recharger,
-/obj/item/device/retail_scanner/science,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"yr" = (
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"ys" = (
-/obj/machinery/requests_console{
- department = "Exploration";
- name = "Exploration Requests Console";
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"yt" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/computer/guestpass{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"yu" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"yv" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/wall{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"yw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"yx" = (
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"yy" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"yz" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"yB" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Cell C"
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"yC" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "16-0"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"yD" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/storage)
-"yE" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"yF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/double{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"yG" = (
-/obj/structure/cable/pink{
- icon_state = "1-4"
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"yH" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"yI" = (
-/obj/machinery/transhuman/resleever,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"yJ" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"yK" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"yL" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"yM" = (
-/obj/machinery/mech_recharger,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"yN" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"yO" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/halls,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"yP" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pen,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"yQ" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8;
- icon_state = "freezer_1";
- power_setting = 20;
- set_temperature = 73;
- use_power = 1
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"yR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"yS" = (
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"yT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"yU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/weapon/storage/belt/utility,
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"yV" = (
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"yW" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"yX" = (
-/obj/effect/shuttle_landmark/premade/sd/deck1/aft,
-/turf/space,
-/area/space)
-"yY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- icon_state = "map_vent_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0;
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/stellardelight/deck1/researchserver)
-"yZ" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"za" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"zb" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"zc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"zd" = (
-/obj/machinery/door/airlock/angled_bay/external/glass{
- dir = 4;
- frequency = 1379;
- id_tag = "ex_interior";
- locked = 1;
- name = "Exterior Airlock"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "ex_airlock";
- name = "interior access button";
- pixel_y = 32;
- req_one_access = list(13)
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/exploration)
-"ze" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"zf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"zg" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"zh" = (
-/obj/structure/bed/chair/backed_red{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"zj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/library)
-"zk" = (
-/obj/structure/closet/l3closet/virology,
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/white{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"zl" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"zm" = (
-/obj/structure/closet/walllocker_double/east,
-/obj/item/device/camera,
-/obj/item/device/universal_translator,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"zn" = (
-/obj/structure/closet/secure_closet/paramedic,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"zo" = (
-/obj/item/weapon/stool/padded,
-/obj/machinery/light_switch{
- pixel_y = 25
- },
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/carpet,
-/area/library)
-"zp" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"zq" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"zr" = (
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"zs" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"zt" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"zv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"zw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Medical Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/medical)
-"zx" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"zy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"zz" = (
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"zA" = (
-/obj/structure/closet/walllocker_double/north,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"zB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/security_port)
-"zC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"zD" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/warden)
-"zE" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/atmospherics/pipe/simple/hidden/purple{
- dir = 6
- },
-/obj/effect/floor_decal/milspec/color/black,
-/obj/item/ammo_magazine/ammo_box/b12g/stunshell{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/ammo_magazine/ammo_box/b12g/flash{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/item/ammo_magazine/ammo_box/b12g/beanbag{
- pixel_x = -5;
- pixel_y = 7
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"zG" = (
-/obj/machinery/autolathe{
- dir = 1;
- hacked = 1
- },
-/obj/structure/reagent_dispensers/acid{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/assembly/robotics)
-"zH" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"zI" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"zK" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/expedition_medical,
-/obj/item/clothing/head/helmet/space/void/expedition_medical,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"zL" = (
-/obj/machinery/firealarm/angled,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"zM" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/port)
-"zN" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = 5;
- pixel_y = -6
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"zO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/exploration,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"zP" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"zQ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"zR" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"zS" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"zT" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 28
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"zU" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"zV" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 4;
- frequency = 1380;
- id_tag = "miningdocker";
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"zW" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"zX" = (
-/obj/machinery/r_n_d/server/robotics,
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/stellardelight/deck1/researchserver)
-"zY" = (
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"zZ" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Aa" = (
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"Ab" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Ac" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Ad" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 9;
- network = list("Xenobiology")
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Ae" = (
-/obj/structure/bed/chair/sofa/corp/right,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"Af" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "xenospace4";
- name = "4 Space Door";
- pixel_x = 5;
- pixel_y = 2;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Ag" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Ah" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Ai" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Aj" = (
-/turf/simulated/wall/bay/steel,
-/area/stellardelight/deck1/pilot)
-"Ak" = (
-/turf/simulated/wall/bay/r_wall/black,
-/area/chapel/chapel_morgue)
-"Am" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"An" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Ao" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#8c1d11";
- name = "Equipment Storage";
- req_access = list(1);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/security_lockerroom)
-"Ap" = (
-/obj/structure/table/bench/sifwooden/padded,
-/obj/effect/landmark/start/pilot,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"Aq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"Ar" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"As" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"At" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"Au" = (
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/white{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Av" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Aw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"Ax" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"Ay" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"AB" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -24;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"AC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm/angled,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"AD" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/wall{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"AE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"AF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"AG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Janitor";
- sortType = "Janitor"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/stellardelight/deck1/port)
-"AH" = (
-/obj/structure/bookcase{
- name = "bookcase (Non-Fiction)"
- },
-/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire,
-/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem,
-/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov,
-/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs,
-/obj/item/weapon/book/manual/synthetic_life,
-/turf/simulated/floor/wood,
-/area/library)
-"AI" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/table/steel,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"AJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#2e2e2e";
- name = "Chapel"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/chapel/main)
-"AK" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/rig/eva/equipped,
-/obj/machinery/door/window/brigdoor/eastright{
- req_access = list(11,24)
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"AL" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"AM" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"AN" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/library)
-"AO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"AP" = (
-/obj/item/weapon/bedsheet/bluedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"AQ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"AR" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"AS" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/curtain/open/privacy,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"AT" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm5)
-"AV" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"AW" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"AX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/floor_decal/milspec/color/black,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"AY" = (
-/turf/simulated/wall/bay/r_wall/black,
-/area/chapel/main)
-"AZ" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Ba" = (
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Bb" = (
-/obj/structure/table/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"Bd" = (
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Be" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"Bf" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"Bi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"Bj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"Bk" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Bl" = (
-/obj/structure/bed/chair/backed_red{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"Bm" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen3";
- name = "Pen 3 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Bn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/roboticist,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"Bo" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/weapon/paper{
- desc = "";
- info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management";
- name = "note to science staff"
- },
-/obj/item/device/robotanalyzer,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/item/device/mmi/digital/posibrain,
-/obj/item/device/mmi,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/assembly/robotics)
-"Br" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"Bs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#8c1d11";
- name = "Equipment Storage";
- req_access = list(1);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/security_lockerroom)
-"Bt" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Bu" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Bv" = (
-/obj/structure/table/reinforced,
-/obj/item/device/reagent_scanner,
-/obj/item/device/mass_spectrometer/adv,
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 6
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Bw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"Bx" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/wood,
-/area/library)
-"By" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"Bz" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"BA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_y = 32
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"BB" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"BC" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"BD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#333333";
- name = "Shuttle Bay";
- req_one_access = null;
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/exploration)
-"BE" = (
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"BF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- name = "Exam Room";
- req_access = list(5);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/exam_room)
-"BG" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"BH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"BI" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"BJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"BK" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"BL" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"BM" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/recharger,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"BN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow,
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Cargo Subgrid";
- name_tag = "Cargo Subgrid"
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"BO" = (
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"BP" = (
-/obj/structure/table/steel,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"BQ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"BR" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"BS" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/filingcabinet,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"BT" = (
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"BU" = (
-/turf/simulated/wall/bay/black,
-/area/chapel/main)
-"BV" = (
-/obj/machinery/disease2/incubator,
-/obj/structure/reagent_dispensers/virusfood{
- pixel_y = 27
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"BW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"BX" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"BY" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"BZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Ca" = (
-/obj/machinery/camera/network/command{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Cb" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 25;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"Cc" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Ce" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "researchwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/rnd/xenobiology/xenoflora_storage)
-"Cf" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Cg" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Ch" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Ci" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Cj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Ck" = (
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/wood,
-/area/library)
-"Cl" = (
-/obj/structure/table/rack/shelf,
-/obj/item/stack/marker_beacon/thirty{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/stack/marker_beacon/thirty{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/item/device/gps{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/exploration{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck1/explobriefing)
-"Cm" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/disposalpipe/up{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Cn" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Co" = (
-/obj/structure/bed/chair/sofa/corp/left{
- dir = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"Cp" = (
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"Cr" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"Cs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Ct" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/assembly/robotics)
-"Cv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Cw" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/deployable/barrier,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Cx" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Cz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"CA" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"CB" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"CC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"CD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "brigwindowlockdown"
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/security/security_equiptment_storage)
-"CE" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "securitylockdown";
- name = "Brig Lockdown";
- pixel_x = 26;
- pixel_y = -7
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "armorydoor";
- name = "Armory";
- pixel_x = 26;
- pixel_y = 9
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "wardenoffice";
- name = "Privacy Shutters";
- pixel_x = 37;
- pixel_y = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"CG" = (
-/turf/simulated/wall/bay/white,
-/area/stellardelight/deck1/resleeving)
-"CH" = (
-/obj/structure/closet/secure_closet/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"CI" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"CJ" = (
-/obj/structure/table/glass,
-/obj/item/weapon/book/manual/virology,
-/obj/item/device/antibody_scanner,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/wall{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"CK" = (
-/obj/machinery/button/remote/blast_door{
- id = "explowindowlockdown";
- name = "Window Lockdown";
- pixel_y = 25
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"CL" = (
-/obj/structure/stairs/spawner/north,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"CM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/prison/cell_block/C)
-"CN" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"CO" = (
-/obj/structure/table/woodentable,
-/obj/machinery/librarycomp,
-/turf/simulated/floor/carpet,
-/area/library)
-"CP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"CQ" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/requests_console/preset/security{
- pixel_y = 30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/weapon/paper_bin{
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"CR" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"CS" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/xenobiology)
-"CT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"CU" = (
-/obj/machinery/washing_machine,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"CV" = (
-/obj/structure/sign/directions/dorms{
- dir = 1;
- pixel_x = 32
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"CW" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"CX" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"CY" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/rack,
-/obj/random/drinkbottle,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"CZ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Da" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- name = "EMT Bay";
- req_access = list(5);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/paramedic)
-"Db" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "researchwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/rnd/storage)
-"Dc" = (
-/obj/item/weapon/bedsheet/orangedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"Dd" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"De" = (
-/obj/item/weapon/bedsheet/bluedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"Df" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -32;
- pixel_y = -32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"Dg" = (
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor{
- dir = 8;
- id = "bodieshitthefloor"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/chapel/chapel_morgue)
-"Di" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/fore)
-"Dj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"Dk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Dl" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Dm" = (
-/obj/structure/bed/chair/backed_red,
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = 21
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"Dn" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"Do" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"Dp" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_x = -32;
- pixel_y = 10
- },
-/obj/structure/sign/directions/library{
- dir = 4;
- pixel_x = -32;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Dq" = (
-/obj/machinery/newscaster{
- pixel_x = -29
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Dr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"Ds" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Robotics Lab";
- req_access = list(29,47);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/assembly/robotics)
-"Dt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"Dv" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Dw" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Dx" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/xenobiology)
-"Dy" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"Dz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"DA" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = -32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"DC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"DD" = (
-/obj/structure/cable/orange{
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"DE" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"DF" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "brigwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/prison/cell_block/C)
-"DG" = (
-/obj/structure/bed/chair/office/light,
-/obj/effect/landmark/start/xenobot,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"DH" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/xenobiology/xenoflora_storage)
-"DI" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"DJ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/halls{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"DK" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"DL" = (
-/obj/structure/closet/secure_closet/xenoarchaeologist,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"DN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"DO" = (
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"DP" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"DQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"DS" = (
-/turf/simulated/wall/bay/red,
-/area/prison/cell_block)
-"DT" = (
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/rods,
-/obj/fiftyspawner/rglass,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/item/stack/material/plasteel{
- amount = 10
- },
-/obj/structure/closet/walllocker_double/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"DV" = (
-/obj/machinery/suit_cycler/pilot,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"DW" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"DY" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/obj/structure/sign/directions/command{
- pixel_x = 32
- },
-/obj/structure/sign/directions/bar{
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/evac{
- pixel_x = 32;
- pixel_y = -12
- },
-/obj/structure/sign/directions/medical{
- pixel_x = 32;
- pixel_y = -6
- },
-/obj/structure/sign/directions/stairs_up{
- pixel_x = 32;
- pixel_y = 12
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"DZ" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"Eb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Ec" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Ee" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Ef" = (
-/turf/space/internal_edge/top,
-/area/stellardelight/deck1/starboard)
-"Eg" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Eh" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/security/armoury)
-"Ei" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -32;
- pixel_y = -25
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"Ek" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"Em" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"En" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Eo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"Ep" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Eq" = (
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Er" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenospace6";
- name = "6 Space Door";
- pixel_x = 10;
- pixel_y = -21;
- req_access = list(55)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Es" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"Et" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Civilian Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/civilian)
-"Eu" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Ev" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"Ew" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"Ex" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Ey" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Ez" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/material/phoron{
- amount = 6
- },
-/obj/machinery/reagentgrinder{
- pixel_y = 11
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"EA" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"EB" = (
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Virology Isolation Room Two";
- req_one_access = list(39)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"EC" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/structure/ore_box,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"ED" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"EF" = (
-/obj/structure/table/rack/shelf,
-/obj/item/device/radio{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/device/radio{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/device/radio{
- pixel_x = -4;
- pixel_y = 5
- },
-/obj/item/device/radio{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 28
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 36
- },
-/turf/simulated/floor/tiled,
-/area/stellardelight/deck1/explobriefing)
-"EG" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"EH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"EI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"EJ" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/shuttlebay)
-"EK" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"EM" = (
-/obj/structure/table/rack,
-/obj/item/device/defib_kit/compact/loaded,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"EN" = (
-<<<<<<< HEAD
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-=======
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-"EO" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"EP" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"EQ" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"ER" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm8)
-"ES" = (
-/obj/machinery/mass_driver{
- dir = 8;
- id = "torpedolauncher"
- },
-/obj/structure/sign/vacuum{
- pixel_y = 32
- },
-/turf/simulated/floor/airless,
-/area/chapel/chapel_morgue)
-"ET" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"EU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"EV" = (
-/obj/structure/stairs/spawner/south,
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"EW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/assembly/robotics)
-"EX" = (
-/obj/structure/cable/orange{
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"EY" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"EZ" = (
-/turf/space/internal_edge/bottomright,
-/area/stellardelight/deck1/starboard)
-"Fa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Fb" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Fc" = (
-/obj/machinery/vending/wardrobe/scidrobe,
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/researchequip)
-"Fd" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/curtain/open/privacy,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"Fe" = (
-/turf/simulated/wall/bay/red,
-/area/security/detectives_office)
-"Ff" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Fh" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/closet/secure_closet/detective,
-/obj/item/weapon/reagent_containers/spray/pepper,
-/obj/item/device/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Fi" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Fj" = (
-/obj/machinery/firealarm/angled,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"Fk" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/port)
-"Fl" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/research,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Fm" = (
-/obj/structure/morgue{
- dir = 2
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Fn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "researchwindowlockdown"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/researchhall)
-"Fo" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/hatch{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/portfore)
-"Fp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#8c1d11";
- name = "maintenance access";
- req_one_access = list(1);
- stripe_color = "#8c1d11"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/security_port)
-"Fq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Fr" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"Fs" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Ft" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Fu" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- name = "Unisex Restrooms";
- stripe_color = "#89bd66"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/crew_quarters/toilet)
-"Fv" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/halls{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Fw" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Fx" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Fy" = (
-/obj/structure/flora/pottedplant/orientaltree,
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/exploration{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Fz" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"FA" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"FB" = (
-/obj/structure/cable/white{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"FC" = (
-/obj/machinery/computer/prisoner,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"FD" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/milspec/color/black,
-/obj/structure/sign/department/armory{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"FE" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"FF" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"FG" = (
-/turf/simulated/wall/bay/white,
-/area/medical/patient_wing)
-"FH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"FI" = (
-/obj/structure/stairs/spawner/north,
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"FK" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"FL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/library)
-"FM" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_electronics/debugger{
- pixel_x = -5
- },
-/obj/item/device/integrated_electronics/wirer{
- pixel_x = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/research{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"FN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- name = "Recovery Room";
- req_access = list(6);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/patient_wing)
-"FO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"FP" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"FQ" = (
-/obj/structure/morgue{
- dir = 2
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"FR" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"FS" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_y = -4
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/device/multitool/sd_buffered{
- pixel_y = 2
- },
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"FT" = (
-/turf/simulated/wall/bay/brown,
-/area/library)
-"FU" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 25;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"FV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/closet/crate,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/maintenance/security,
-/obj/random/contraband,
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"FW" = (
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"FX" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"FY" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/stellardelight/deck1/researchserver)
-"FZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Ga" = (
-/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock,
-/turf/space,
-/area/space)
-"Gb" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Gc" = (
-/obj/machinery/requests_console/preset/research{
- pixel_y = 30
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Gd" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Cargo Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"Ge" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Gh" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"Gi" = (
-/obj/structure/closet{
- name = "Forensics Gear"
- },
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/evidence,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/briefcase/crimekit,
-/obj/item/weapon/storage/briefcase/crimekit,
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 5
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Gj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Gl" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Gm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/window/brigdoor/southleft{
- id = "Cell A";
- name = "Cell A";
- req_access = list(2)
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/prison/cell_block)
-"Gn" = (
-/obj/machinery/disease2/diseaseanalyser,
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"Go" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Gp" = (
-/obj/structure/table/bench/steel,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"Gq" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"Gr" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/tactical)
-"Gt" = (
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/obj/machinery/light_switch{
- pixel_y = 25
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"Gu" = (
-/obj/item/weapon/bedsheet/bluedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"Gv" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Gy" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"GA" = (
-/obj/machinery/light,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"GB" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"GC" = (
-/obj/structure/stairs/spawner/north,
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"GD" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"GE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"GF" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Research";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"GG" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/bodybags,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"GI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "researchwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/researchhall)
-"GK" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"GL" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"GM" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#785134"
- },
-/area/security/armoury)
-"GN" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"GP" = (
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/valve/digital{
- dir = 4;
- name = "supply isolation valve"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/security/armoury)
-"GQ" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"GR" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"GS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/blast/regular/open{
- id = "talon_boat_cockpit"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/stellardelight/deck1/miningshuttle)
-"GT" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Security"
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"GU" = (
-/obj/machinery/vending/wardrobe/robodrobe,
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/researchequip)
-"GV" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"GW" = (
-/obj/machinery/power/apc/angled{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"GX" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/computer/guestpass{
- dir = 8;
- pixel_x = 25
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"GZ" = (
-/obj/machinery/vending/loadout/uniform,
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"Ha" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/item/device/radio/beacon,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Hb" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- door_color = "#a6753d";
- name = "Shuttle Bay";
- req_access = list(31);
- req_one_access = null;
- stripe_color = "#3b2b1a"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/mining)
-"Hc" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Hd" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"He" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "explowindowlockdown"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/explobriefing)
-"Hf" = (
-/obj/structure/filingcabinet/filingcabinet,
-/obj/machinery/requests_console{
- department = "Exploration";
- name = "Exploration Requests Console";
- pixel_x = -30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"Hg" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Bar";
- sortType = "Bar"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Hi" = (
-/obj/machinery/computer/timeclock/premade/west,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Hj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/library)
-"Hk" = (
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"Hl" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Hn" = (
-/obj/machinery/mineral/processing_unit_console{
- density = 0;
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"Hp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/department/sci{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Hq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"Hr" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"Hs" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "securitylockdown"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/lobby)
-"Ht" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"Hu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/purple,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Hv" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Hw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Hx" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Hy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"Hz" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/projectile/shotgun/pump{
- ammo_type = /obj/item/ammo_casing/a12g/pellet;
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/item/weapon/gun/projectile/shotgun/pump{
- ammo_type = /obj/item/ammo_casing/a12g/pellet;
- pixel_x = 2;
- pixel_y = -6
- },
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"HA" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"HB" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "miningops"
- },
-/obj/structure/plasticflaps/mining,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"HC" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/obj/structure/sign/directions/medical{
- dir = 1;
- pixel_x = 32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/evac{
- dir = 1;
- pixel_x = 32
- },
-/obj/structure/sign/directions/stairs_up{
- dir = 1;
- pixel_x = 32;
- pixel_y = 12
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"HD" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/gun/energy/taser/xeno,
-/obj/item/weapon/gun/energy/taser/xeno,
-/obj/item/weapon/melee/baton/slime/loaded,
-/obj/item/weapon/melee/baton/slime/loaded,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"HE" = (
-/obj/machinery/conveyor{
- id = "miningops"
- },
-/obj/machinery/mineral/input,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"HF" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "securitylockdown"
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 2
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"HG" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Pathfinder's Office"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"HH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm2)
-"HI" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"HK" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"HL" = (
-/obj/machinery/vending/nifsoft_shop,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"HN" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"HO" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/structure/sign/painting/public{
- pixel_y = 30
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"HP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/sign/department/morgue{
- pixel_x = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"HR" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"HS" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave{
- pixel_y = 7
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"HT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/closet/walllocker_double/east{
- dir = 8;
- pixel_x = -32
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"HV" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"HW" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"HX" = (
-/obj/machinery/button/remote/airlock{
- id = "dorm1";
- name = "Room 1 Lock";
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"HY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"HZ" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/floor_decal/milspec/color/red/half,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Ib" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"Ic" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"Ie" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"If" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell B"
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"Ig" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/random/soap,
-/obj/random/soap,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/obj/item/clothing/under/bathrobe,
-/obj/item/clothing/under/bathrobe,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"Ih" = (
-/obj/structure/closet{
- name = "robotics equipment"
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000;
- pixel_x = 5;
- pixel_y = -5
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/clothing/glasses/omnihud/rnd,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/multitool{
- pixel_x = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/glasses/welding,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"Ii" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/purple,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Ik" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Il" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Im" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"In" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Io" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/suit_cycler/security,
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Ip" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Iq" = (
-/obj/effect/floor_decal/milspec/color/red,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/wall{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Ir" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Is" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"Iu" = (
-/obj/machinery/door/airlock/angled_bay/external/glass{
- dir = 4;
- door_color = "#525252";
- name = "Exploration Shuttle";
-
- stripe_color = "#408f3b"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
-
-/obj/machinery/atmospheric_field_generator/perma,
-/obj/machinery/door/firedoor/glass/talon,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/exploshuttle)
-"Iw" = (
-/obj/random/vendorfood,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/starboard)
-"Ix" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Iy" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Iz" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"IA" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"IB" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"IC" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm4)
-"ID" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorblack/full,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"IE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/storage)
-"IF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"IG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/mouse_hole_spawner{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"IH" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"IJ" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/valve/digital{
- dir = 4;
- name = "scrubber isolation valve"
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/security/armoury)
-"IK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"IL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"IM" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"IN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"IO" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"IP" = (
-/obj/machinery/r_n_d/protolathe{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research)
-"IQ" = (
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"IR" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"IS" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"IT" = (
-/turf/space/internal_edge/bottom,
-/area/stellardelight/deck1/starboard)
-"IU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"IV" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"IW" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/sign/directions/dorms{
- dir = 1;
- pixel_x = -32
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"IX" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/milspec/color/orange/half,
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/B)
-"IY" = (
-/turf/simulated/wall/bay/steel,
-/area/crew_quarters/toilet)
-"IZ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm8)
-"Ja" = (
-/obj/structure/closet/walllocker_double/west,
-/obj/item/weapon/shovel,
-/obj/item/weapon/shovel,
-/obj/item/weapon/shovel,
-/obj/item/weapon/shovel,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/tool/wrench,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/pickaxe,
-/obj/item/weapon/pickaxe,
-/obj/item/weapon/pickaxe,
-/obj/item/weapon/pickaxe,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"Jb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Jc" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stock_parts/scanning_module{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/scanning_module,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Jd" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"Je" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Jg" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"Jh" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/emergsuit_wall{
- dir = 8;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Jj" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Medical Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"Jk" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"Jl" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"Jn" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Jo" = (
-/obj/structure/table/steel,
-/obj/random/maintenance/research,
-/obj/random/medical,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Jp" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#e6ab22";
- name = "Atmospherics Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/atmospherics)
-"Jq" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Js" = (
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm7)
-"Jt" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/port)
-"Jv" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/stellardelight/deck1/port)
-"Jw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Jx" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Jz" = (
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"JA" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"JB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/closet/walllocker_double/east,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"JC" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/atmos,
-/obj/item/clothing/head/helmet/space/void/atmos,
-/obj/machinery/door/window/brigdoor{
- req_access = list(11,24)
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"JD" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"JE" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"JF" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/starboard)
-"JH" = (
-/obj/structure/bed/chair/sofa/corp/left,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"JI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"JJ" = (
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#5a19a8"
- },
-/area/gateway)
-"JK" = (
-/obj/machinery/door/firedoor,
-/obj/item/weapon/folder/white,
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/westright{
- dir = 4;
- name = "Research Desk";
- req_access = list(7);
- req_one_access = list(47)
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "rndshutters";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/rnd/research)
-"JL" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/pathfinder)
-"JM" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"JN" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"JO" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"JP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"JQ" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/xenobiology/xenoflora)
-"JR" = (
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"JS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/bookbinder,
-/turf/simulated/floor/wood,
-/area/library)
-"JT" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"JU" = (
-/obj/machinery/vending/loadout/uniform,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"JV" = (
-/obj/item/slime_extract/grey,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"JW" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"JX" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/milspec/color/orange/half,
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"JY" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/flasher/portable,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Ka" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Kb" = (
-/obj/machinery/conveyor{
- id = "miningops"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"Kc" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/transhuman/autoresleever,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"Kd" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Ke" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/machinery/camera/network/exploration{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"Kf" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Kg" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm6";
- name = "Room 6";
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm6)
-"Ki" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"Kj" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Kk" = (
-/obj/machinery/door/airlock/angled_bay/external/glass{
- dir = 4;
- frequency = 1379;
- id_tag = "ex_exterior";
- locked = 1;
- name = "Exterior Airlock"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/exploration)
-"Kl" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Km" = (
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Kp" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/wood,
-/area/library)
-"Kq" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder,
-/obj/item/device/tape/random,
-/obj/item/device/camera,
-/obj/item/device/retail_scanner/civilian,
-/obj/structure/sign/painting/library_private{
- pixel_y = 32
- },
-/obj/machinery/newscaster{
- pixel_x = 29
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Kr" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"Ks" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/structure/cable/orange{
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Kt" = (
-/obj/structure/table/reinforced,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Ku" = (
-/turf/simulated/wall/bay{
- desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#5a19a8"
- },
-/area/gateway)
-"Kv" = (
-/obj/effect/floor_decal/chapel,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Kw" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 8;
- frequency = 1380;
- id_tag = "explodocker";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"Ky" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Kz" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"KA" = (
-/obj/machinery/vending/wardrobe/janidrobe,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"KB" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"KC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"KD" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Atmospherics Substation Bypass"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"KE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/halls,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"KF" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm6)
-"KG" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 25
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"KH" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"KI" = (
-/obj/machinery/button/remote/driver{
- id = "torpedolauncher";
- pixel_y = 27
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"KJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"KK" = (
-/obj/machinery/disposal/wall{
- dir = 4;
- pixel_x = -24;
- plane = -34
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/sink/kitchen{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"KL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"KM" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = -24;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"KN" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"KO" = (
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"KP" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"KQ" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"KR" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"KS" = (
-/obj/machinery/light,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"KT" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"KU" = (
-/obj/machinery/camera/network/exploration{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"KV" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"KW" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"KX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"KY" = (
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"KZ" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"La" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Lc" = (
-/obj/machinery/door_timer/cell_3{
- id = "Cell B";
- name = "Cell B";
- pixel_x = 32;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Le" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#8c1d11";
- name = "Brig";
- req_access = null;
- req_one_access = list(38,63);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/lobby)
-"Lg" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/chapel/chapel_morgue)
-"Lh" = (
-/obj/effect/floor_decal/chapel,
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Li" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"Lj" = (
-/obj/structure/sink/kitchen{
- dir = 8;
- pixel_x = -11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"Lk" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"Ll" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"Lm" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Ln" = (
-/obj/structure/cable/orange{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Lo" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Lp" = (
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Lq" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Research Subgrid";
- name_tag = "Research Subgrid"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"Lr" = (
-/obj/structure/bed/chair/wheelchair{
- dir = 8
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Ls" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"Lt" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen4";
- name = "Pen 4 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Lu" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Lv" = (
-/obj/machinery/conveyor{
- id = "miningops"
- },
-/obj/machinery/mineral/output,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"Lw" = (
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"Lx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"Ly" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Lz" = (
-/obj/structure/closet/walllocker_double/east{
- dir = 8;
- pixel_x = -32
- },
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/robot_parts/l_arm,
-/obj/item/device/analyzer/plant_analyzer,
-/obj/item/device/analyzer/plant_analyzer,
-/obj/item/weapon/material/knife/machete/hatchet,
-/obj/item/weapon/material/knife/machete/hatchet,
-/obj/item/weapon/material/minihoe,
-/obj/item/weapon/material/minihoe,
-/obj/item/inflatable/door,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"LA" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"LB" = (
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/item/stack/material/plasteel{
- amount = 10
- },
-/obj/structure/closet/walllocker_double/east,
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"LC" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"LD" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"LE" = (
-/obj/structure/sign/directions/evac{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"LF" = (
-/turf/simulated/wall/bay/purple,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"LH" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"LI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#2e2e2e";
- fill_color = "#2e2e2e";
- name = "Chapel Morgue";
- req_access = list(6,27);
- stripe_color = "#deaf43"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/chapel/chapel_morgue)
-"LJ" = (
-/obj/machinery/button/remote/blast_door{
- id = "GatewayShutter";
- name = "Gateway Shutter";
- pixel_y = 24;
- req_access = list(62)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"LK" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"LL" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"LM" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/wood,
-/area/library)
-"LN" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"LO" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"LP" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"LQ" = (
-/obj/machinery/door/blast/angled{
- id = "xenobiodiv4";
- name = "Divider 4 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"LR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"LT" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Research Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/research)
-"LU" = (
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"LV" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/alarm/angled,
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- name = "Resleeving";
- sortType = "Resleeving"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"LW" = (
-/obj/structure/stairs/spawner/north,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/aft)
-"LX" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"LY" = (
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#785134"
- },
-/area/library)
-"LZ" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/exploration)
-"Ma" = (
-/obj/machinery/door/airlock/angled_bay/external/glass{
- dir = 4;
- door_color = "#a88860";
- name = "Mining Shuttle";
- req_access = list(31,5);
- stripe_color = "#69461a"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-
-
-/obj/machinery/atmospheric_field_generator/perma,
-/obj/machinery/door/firedoor/glass/talon,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/miningshuttle)
-"Mb" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"Mc" = (
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#785134"
- },
-/area/security/armoury)
-"Md" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"Me" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#8c1d11";
- name = "Forensics Lab";
- req_access = list(4);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/detectives_office)
-"Mf" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/curtain/open/privacy,
-/obj/structure/cable/white{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"Mg" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/purple,
-/turf/simulated/floor,
-/area/rnd/workshop)
-"Mh" = (
-/turf/space/internal_edge/topleft,
-/area/stellardelight/deck1/starboard)
-"Mi" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Mj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#2e2e2e";
- fill_color = "#2e2e2e";
- name = "Chapel Morgue";
- req_access = null;
- stripe_color = "#deaf43"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/chapel/main)
-"Mk" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
- id = "chapelmassdriver";
- name = "Window Lockdown";
- pixel_y = 27;
- req_one_access = list(6,27)
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Ml" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"Mm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atm{
- pixel_y = 30
- },
-/obj/structure/closet/emergsuit_wall{
- dir = 8;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Mn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Mq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Mr" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/bluegrid,
-/area/assembly/robotics)
-"Ms" = (
-/obj/machinery/door/window{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"Mt" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/halls{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Mu" = (
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Mv" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"My" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"MA" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/fore)
-"MB" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"MC" = (
-/obj/effect/mouse_hole_spawner{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"MD" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"ME" = (
-/obj/machinery/gateway/centerstation,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"MF" = (
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/mining,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/head/helmet/space/void/mining,
-/obj/item/weapon/mining_scanner,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"MG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/miner,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"MH" = (
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"MI" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"MJ" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/landmark/start/roboticist,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"MK" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"ML" = (
-/obj/structure/bed/chair/sofa/corp/right{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"MM" = (
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"MN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm6)
-"MO" = (
-/obj/machinery/button/remote/airlock{
- id = "bathroomstall1";
- name = "Toilet 1 Lock";
- pixel_x = -10;
- pixel_y = 22;
- specialfunctions = 4
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"MP" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-4"
- },
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"MQ" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/light_switch{
- dir = 1;
- pixel_x = 25;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"MR" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#ffffff";
- name = "Xenoflora Research";
- req_access = list(77);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/xenobiology/xenoflora_storage)
-"MS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#8c1d11";
- name = "maintenance access";
- req_access = list(4);
- req_one_access = null;
- stripe_color = "#8c1d11"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/detectives_office)
-"MT" = (
-/obj/machinery/suit_cycler/engineering{
- req_access = null
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"MV" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Exploration Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/exploration)
-"MW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "explowindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/pathfinder)
-"MX" = (
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"MZ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/shower)
-"Na" = (
-/obj/item/weapon/storage/box/nifsofts_mining,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"Nb" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "mechbay";
- name = "Mech Bay"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/assembly/robotics)
-"Nc" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/maintenance/security_port)
-"Nd" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"Ne" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "processinglockdown"
- },
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/security/security_processing)
-"Nf" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Ng" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/lowermed)
-"Nh" = (
-/obj/machinery/light/small,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Ni" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Warden's Office"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"Nj" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/milspec/color/red/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Nk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microscope,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Nl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Nm" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"No" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 25
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"Np" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Nq" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"Nr" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 25;
- pixel_y = 32
- },
-/obj/effect/landmark/start/janitor,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"Ns" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#a6753d";
- name = "Mining Equipment";
- req_access = list(31);
- stripe_color = "#3b2b1a"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/miningequipment)
-"Nt" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/security,
-/obj/random/maintenance/research,
-/obj/random/contraband,
-/obj/random/drinkbottle,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Nu" = (
-/obj/structure/table/standard,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/fiftyspawner/steel,
-/obj/fiftyspawner/glass,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Nv" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/firealarm/angled,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Nw" = (
-/obj/structure/closet/walllocker_double/medical/north,
-/obj/item/weapon/folder/white,
-/obj/item/device/healthanalyzer,
-/obj/item/weapon/cane,
-/obj/item/clothing/accessory/stethoscope,
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"Nx" = (
-/obj/structure/closet/secure_closet/sar,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"Nz" = (
-/obj/effect/floor_decal/chapel{
- dir = 8
- },
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"NA" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"NB" = (
-/obj/structure/closet/coffin,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"NC" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"ND" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/obj/structure/cable/pink,
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"NF" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"NG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/purple,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"NH" = (
-/turf/simulated/wall/bay/steel,
-/area/stellardelight/deck1/shower)
-"NI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"NJ" = (
-/obj/effect/shuttle_landmark/premade/sd/deck1/fore,
-/turf/space,
-/area/space)
-"NK" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"NL" = (
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"NM" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"NN" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/recharger{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"NP" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/portaft)
-"NQ" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/flora/pottedplant/minitree,
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"NR" = (
-/obj/machinery/mech_recharger,
-/obj/machinery/light,
-/turf/simulated/floor/bluegrid,
-/area/gateway)
-"NS" = (
-/obj/structure/stairs/spawner/west,
-/obj/structure/railing/grey{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "16-0"
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/mining)
-"NT" = (
-/turf/space/internal_edge/topright,
-/area/stellardelight/deck1/starboard)
-"NV" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"NW" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"NX" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen4";
- name = "Pen 4 Containment";
- pixel_x = 31;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen6";
- name = "Pen 6 Containment";
- pixel_x = 30;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "xenobiodiv4";
- name = "Divider 4 Blast Doors";
- pixel_x = 39;
- req_access = list(55)
- },
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"NY" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/pathfinder)
-"NZ" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"Oa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/floor_decal/milspec/color/emerald/half,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Ob" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"Oc" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Od" = (
-/obj/machinery/light,
-/obj/structure/sign/department/medbay{
- name = "RESLEEVING";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Oe" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"Og" = (
-/obj/machinery/optable,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"Oh" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/double{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Oj" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"Ok" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Ol" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/device/multitool,
-/obj/item/device/gps/medical{
- pixel_y = 3
- },
-/obj/item/device/gps/medical{
- pixel_x = -3
- },
-/obj/item/device/radio{
- pixel_x = 2
- },
-/obj/item/device/radio{
- pixel_x = -1;
- pixel_y = -3
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"Om" = (
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Cargo";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"On" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/milspec/color/red/half,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Oo" = (
-/obj/machinery/botany/extractor,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Op" = (
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/medical,
-/obj/item/clothing/suit/space/void/medical,
-/obj/item/clothing/head/helmet/space/void/medical,
-/obj/item/clothing/head/helmet/space/void/medical,
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 2;
- req_access = list(5)
- },
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Oq" = (
-/obj/machinery/door/blast/angled{
- id = "xenobiodiv1";
- name = "Divider 1 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Or" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Ot" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor,
-/area/stellardelight/deck1/starboard)
-"Ou" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Ov" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Ow" = (
-/obj/machinery/gateway{
- dir = 6
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Ox" = (
-/obj/structure/closet,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"Oy" = (
-/obj/structure/morgue/crematorium{
- dir = 2;
- id = "crematorium"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Oz" = (
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"OA" = (
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm2)
-"OB" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"OC" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 4;
- name = "Bar";
- sortType = "Bar"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"OD" = (
-/obj/structure/closet/emergsuit_wall{
- dir = 8;
- pixel_x = -27
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"OE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"OF" = (
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"OG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"OH" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/aft)
-"OI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#ffffff";
- fill_color = "#ead9ff";
- name = "Equipment Room";
- req_access = list(7);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/researchequip)
-"OJ" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"OL" = (
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"OM" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"ON" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/directions/evac{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"OO" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"OQ" = (
-/turf/simulated/wall/bay/brown,
-/area/security/detectives_office)
-"OR" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/structure/closet/crate,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance,
-/obj/random/maintenance,
-/obj/random/snack,
-/obj/random/mre,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"OT" = (
-/turf/simulated/wall/rshull,
-/area/stellardelight/deck1/exploshuttle)
-"OU" = (
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"OV" = (
-/obj/machinery/computer/rdservercontrol{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"OX" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"OY" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen1";
- name = "Pen 1 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"OZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/aft)
-"Pa" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Pb" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/black,
-/turf/simulated/floor,
-/area/chapel/main)
-"Pd" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Pf" = (
-/obj/structure/closet/l3closet/janitor,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"Pg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Ph" = (
-/obj/structure/cable/pink{
- icon_state = "1-4"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Pj" = (
-/obj/machinery/door_timer/cell_3{
- id = "Cell A";
- name = "Cell A";
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Pk" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/random/slimecore,
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Pl" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"Pm" = (
-/obj/effect/floor_decal/chapel,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Pn" = (
-/obj/machinery/mineral/output,
-/obj/machinery/conveyor{
- dir = 8;
- id = "miningops"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"Po" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -25;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Pp" = (
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Pr" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"Ps" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/brown,
-/turf/simulated/floor,
-/area/stellardelight/deck1/oreprocessing)
-"Pu" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/exploration)
-"Pv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Pw" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"Py" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Pz" = (
-/obj/structure/table/bench/marble,
-/obj/effect/landmark/start/paramedic,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"PA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/curtain/black{
- anchored = 1
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/stellardelight/deck1/dorms/dorm4)
-"PB" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"PC" = (
-/obj/structure/bed/chair/backed_red{
- dir = 8
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"PD" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"PE" = (
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"PF" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"PG" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"PH" = (
-/obj/structure/janitorialcart,
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"PI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"PJ" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"PL" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"PM" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/janitor)
-"PN" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"PO" = (
-/obj/effect/floor_decal/milspec/color/red/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"PP" = (
-/obj/structure/closet/crate,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"PQ" = (
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/storage/lockbox/vials,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/item/weapon/storage/box/masks,
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/monkeycubes,
-/obj/item/weapon/soap/nanotrasen,
-/obj/structure/closet/walllocker_double/medical/east,
-/obj/item/weapon/hand_labeler,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"PR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/closet/firecloset,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"PS" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"PU" = (
-/obj/structure/toilet{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"PV" = (
-/obj/machinery/light/small,
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/stellardelight/deck1/resleeving)
-"PW" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"PX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"PY" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"PZ" = (
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Civilian";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/civilian)
-"Qa" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"Qb" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "ex_airpump"
- },
-/obj/machinery/airlock_sensor{
- id_tag = "ex_sensor";
- pixel_y = 24
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Qc" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Qd" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"Qe" = (
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-<<<<<<< HEAD
-=======
-"Qf" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-"Qg" = (
-/obj/structure/table/steel,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/button/remote/blast_door{
- id = "processinglockdown";
- name = "Window Lockdown";
- pixel_x = -5;
- req_access = list(1)
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"Qh" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Qi" = (
-/turf/simulated/wall/bay/r_wall{
- desc = "It has a red stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#8c1d11"
- },
-/area/security/tactical)
-"Qj" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Qk" = (
-/turf/simulated/wall/bay/red,
-/area/prison/cell_block/C)
-"Ql" = (
-/obj/structure/cable/orange{
- icon_state = "0-2"
- },
-/obj/structure/cable/orange,
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Atmospherics";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/atmospherics)
-"Qm" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"Qn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/station_map{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"Qp" = (
-/obj/structure/table/glass,
-/obj/item/device/healthanalyzer,
-/obj/item/clothing/accessory/stethoscope,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Qq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"Qr" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Medical Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/medical)
-"Qt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"Qu" = (
-/turf/simulated/wall/bay{
- desc = "It has a red stripe! A huge chunk of metal used to seperate rooms.";
- stripe_color = "#8c1d11"
- },
-/area/security/security_processing)
-"Qv" = (
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Qw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "security_airlock";
- name = "exterior access button";
- pixel_x = -32;
- req_access = list(1)
- },
-/obj/machinery/door/airlock/angled_bay/external/glass{
- frequency = 1379;
- id_tag = "security_exterior";
- locked = 1;
- name = "Security Airlock"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/tactical)
-"Qx" = (
-/obj/machinery/gateway,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Qy" = (
-/obj/machinery/light/floortube{
- dir = 4;
- pixel_x = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Qz" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"QA" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"QB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"QC" = (
-/turf/simulated/wall/bay/red,
-/area/security/lobby)
-"QD" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"QE" = (
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"QF" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"QG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double/glass{
- door_color = "#8c1d11";
- id_tag = "BrigFoyer";
- name = "Security";
- req_one_access = list(38,63);
- stripe_color = "#d27428"
- },
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "securitylockdown"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/lobby)
-"QH" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"QI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"QJ" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"QK" = (
-/obj/structure/railing/grey{
- dir = 1
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/mining)
-"QM" = (
-/obj/item/weapon/bedsheet/orangedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"QO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/flora/pottedplant/decorative,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"QP" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/storage/box/trackimp{
- pixel_y = -4
- },
-/obj/item/weapon/storage/box/trackimp{
- pixel_x = 5;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/alarm/angled,
-/obj/effect/floor_decal/milspec/color/black,
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"QQ" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"QR" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"QS" = (
-/obj/machinery/vending/wallmed1/public{
- pixel_x = 29
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-<<<<<<< HEAD
-=======
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/disposalpipe/segment,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"QU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"QV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"QX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"QY" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "brigwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/security/security_equiptment_storage)
-"QZ" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"Ra" = (
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"Rb" = (
-/obj/structure/bed/padded,
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"Rc" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#2e2e2e";
- fill_color = "#2e2e2e";
- name = "Chapel Office";
- req_access = list(26);
- stripe_color = "#deaf43"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/chapel/office)
-"Rd" = (
-/obj/structure/bed/chair/wood/wings,
-/obj/effect/landmark/start/chaplain,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Re" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"Rf" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Rg" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"Rh" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Medical Subgrid";
- name_tag = "Medical Subgrid"
- },
-/obj/structure/cable/white,
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"Ri" = (
-/obj/machinery/button/remote/airlock{
- id = "bathroomstall3";
- name = "Toilet 3 Lock";
- pixel_x = -10;
- pixel_y = 22;
- specialfunctions = 4
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"Rj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera/network/civilian{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Rk" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Rl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Rm" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Rn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- id_tag = "resleeveexit";
- name = "Resleeving Lab";
- req_access = list(5);
- stripe_color = "#5a96bb"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/resleeving)
-"Ro" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"Rp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "librarywindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/library)
-"Rq" = (
-/obj/structure/janitorialcart,
-/obj/machinery/requests_console/preset/janitor{
- pixel_y = 30
- },
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/obj/item/clothing/suit/caution,
-/turf/simulated/floor/tiled/monotile,
-/area/janitor)
-"Rr" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = -32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"Rs" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#e6ab22";
- name = "Exploration Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/exploration)
-"Rt" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- name = "maintenance access";
- req_access = list(26);
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/janitor)
-"Ru" = (
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/machinery/door/window/brigdoor{
- dir = 2
- },
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Rv" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Rw" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "security_airpump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- dir = 4;
- id_tag = "security_airlock";
- pixel_x = -24;
- req_one_access = list(1);
- tag_airpump = "security_airpump";
- tag_chamber_sensor = "security_sensor";
- tag_exterior_door = "security_exterior";
- tag_interior_door = "security_interior"
- },
-/obj/machinery/airlock_sensor{
- dir = 8;
- id_tag = "security_sensor";
- pixel_x = 24
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor,
-/area/security/tactical)
-"Ry" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/purple,
-/turf/simulated/floor,
-/area/rnd/xenobiology/xenoflora_storage)
-"Rz" = (
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"RA" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"RB" = (
-/obj/machinery/gateway{
- dir = 10
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"RC" = (
-/turf/simulated/wall/bay/red,
-/area/security/warden)
-"RD" = (
-/obj/structure/closet/walllocker_double/north,
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/item/weapon/storage/briefcase/inflatable,
-/obj/item/weapon/storage/briefcase/inflatable,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"RE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"RF" = (
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"RG" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"RH" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -32;
- pixel_y = -32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"RI" = (
-/turf/space/internal_edge/bottomleft,
-/area/stellardelight/deck1/starboard)
-"RJ" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-<<<<<<< HEAD
-=======
-"RK" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/disposal/wall/cleaner{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-"RL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"RM" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"RN" = (
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"RP" = (
-/obj/structure/table/rack,
-/obj/item/weapon/rig/medical/equipped,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/paramedic)
-"RQ" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/sign/department/chapel{
- pixel_x = -32;
- plane = -34
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"RR" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/botany/editor,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"RS" = (
-/turf/simulated/wall/bay/purple,
-/area/stellardelight/deck1/pathfinder)
-"RT" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- id_tag = "resleeveclean";
- name = "Cleaning Room";
- req_access = list(5);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/resleeving)
-"RU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 29
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 38
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"RX" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/machinery/power/apc/angled{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"RY" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"RZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Sa" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/structure/disposalpipe/junction,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Sb" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Sc" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Sd" = (
-/obj/structure/cable/orange{
- icon_state = "1-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Se" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Sf" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"Sg" = (
-/obj/machinery/vending/wardrobe/chapdrobe,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Sh" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Si" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm1)
-"Sj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Sk" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/storage)
-"Sl" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"Sn" = (
-/obj/structure/flora/pottedplant/orientaltree,
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Sq" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"Sr" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"Ss" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"St" = (
-/obj/effect/landmark/start/xenobot,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Su" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"Sv" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"Sx" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Sy" = (
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Sz" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"SA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/chapel/main)
-"SB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"SC" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/security)
-"SD" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/camera/network/medbay,
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"SE" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"SF" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"SG" = (
-/obj/machinery/door/airlock/angled_bay/standard/color/common{
- dir = 4;
- id_tag = "bathroomstall2";
- name = "Toilet 2"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/tiled/steel_ridged,
-=======
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-/area/crew_quarters/toilet)
-"SH" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 25
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"SI" = (
-/obj/machinery/computer/security{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"SJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
- pixel_x = 32
- },
-/obj/structure/sign/directions/science{
- dir = 6;
- pixel_x = 32;
- pixel_y = -6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"SL" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"SM" = (
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"SN" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"SO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"SP" = (
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "dorm3";
- name = "Room 3 Lock";
- pixel_y = -22;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"SQ" = (
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"SR" = (
-/obj/machinery/door/blast/multi_tile/three_tile_ver{
- id = "xenospace6"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"SS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 25;
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"ST" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"SU" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"SV" = (
-/obj/item/weapon/bikehorn/rubberducky,
-/turf/simulated/floor/tiled/white,
-/area/stellardelight/deck1/shower)
-"SW" = (
-/obj/machinery/door/airlock/angled_bay/external/glass{
- dir = 4;
- frequency = 1379;
- id_tag = "ex_interior";
- locked = 1;
- name = "Exterior Airlock"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/exploration)
-"SX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock{
- name = "Unisex Showers"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/crew_quarters/toilet)
-"SY" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 25
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"SZ" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"Ta" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Tb" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Tc" = (
-/obj/item/weapon/bedsheet/orangedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"Td" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/portcent)
-"Te" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -1;
- pixel_y = -11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/purple{
- dir = 9
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"Tf" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Tg" = (
-/obj/structure/closet/emergsuit_wall{
- dir = 4;
- pixel_x = 27
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Th" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_processing)
-"Ti" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"Tj" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Tk" = (
-/obj/structure/bed/chair/comfy/black,
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"Tl" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#ffffff";
- name = "Xenoflora Research";
- req_access = list(77);
- stripe_color = "#5a19a8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/xenobiology/xenoflora)
-"Tm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#8c1d11";
- name = "Forensics Lab";
- req_access = list(4);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/detectives_office)
-"Tn" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"To" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"Tp" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#ffffff";
- name = "Xenobiology";
- req_access = null;
- req_one_access = list(47,55);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/rnd/xenobiology)
-"Tq" = (
-/obj/structure/cable/white,
-/obj/structure/cable/white{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Medical";
- output_attempt = 0
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"Tr" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"Ts" = (
-/obj/machinery/door/blast/angled{
- id = "xenobiodiv2";
- name = "Divider 2 Blast Door"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Tv" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/starboard)
-"Tx" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm3";
- name = "Room 3";
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm3)
-"Ty" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/obj/effect/landmark{
- name = "vinestart"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"TB" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"TC" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"TD" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"TE" = (
-/obj/effect/floor_decal/milspec/color/orange/half,
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block/C)
-"TF" = (
-/obj/structure/bed/chair/sofa/corp/right{
- dir = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"TG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"TH" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "processinglockdown"
- },
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/security/security_processing)
-"TI" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"TJ" = (
-/obj/structure/stairs/spawner/south,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"TK" = (
-/obj/machinery/clonepod/transhuman,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"TL" = (
-/obj/machinery/alarm/angled,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"TM" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/pink{
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"TN" = (
-/obj/item/weapon/bedsheet/orangedouble,
-/obj/structure/bed/double/padded,
-/obj/structure/curtain/black,
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"TO" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/directions/science{
- dir = 6;
- pixel_x = -32
- },
-/obj/structure/sign/directions/science{
- dir = 5;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- dir = 10;
- name = "\improper Exploration Department";
- pixel_x = -32;
- pixel_y = -6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"TP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"TQ" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"TR" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"TS" = (
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/contraband,
-/obj/random/mre,
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"TT" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/port)
-"TU" = (
-/obj/structure/closet/coffin,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"TV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/table/rack,
-/obj/item/canvas,
-/obj/item/canvas/nineteen_nineteen,
-/obj/item/canvas/twentyfour_twentyfour,
-/obj/item/canvas/twentythree_nineteen,
-/obj/item/canvas/twentythree_twentythree,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/item/paint_palette,
-/obj/item/paint_brush,
-/turf/simulated/floor/wood,
-/area/library)
-"TW" = (
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "chapelmassdriver"
- },
-/turf/simulated/floor/airless,
-/area/chapel/chapel_morgue)
-"TX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- id_tag = "recoveryexit";
- name = "Recovery Room";
- req_access = list(6);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/patient_wing)
-"TY" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"TZ" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Ua" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/exploration)
-"Ub" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/deck1/portcent)
-"Uc" = (
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_x = 32
- },
-/obj/structure/table/bench/sifwooden/padded,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24;
- pixel_y = -32
- },
-/obj/effect/landmark/start/pilot,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"Ud" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"Ue" = (
-/obj/machinery/light_switch{
- pixel_y = 25
- },
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Uf" = (
-/obj/machinery/newscaster{
- pixel_x = 29
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Ug" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "wardenoffice";
- name = "Privacy Shutters"
- },
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/security/warden)
-"Uh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Uj" = (
-/obj/structure/table/woodentable,
-/obj/random/paicard,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"Uk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Ul" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Um" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"Un" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Uo" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Up" = (
-/obj/machinery/chemical_analyzer,
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Uq" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Ur" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Us" = (
-/obj/structure/bed/chair/comfy/brown,
-/obj/machinery/newscaster{
- pixel_y = 28
- },
-/obj/effect/landmark/start/librarian,
-/turf/simulated/floor/wood,
-/area/library)
-"Ut" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 2";
- req_access = list(55)
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 2";
- req_access = list(55)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Uu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Uv" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/effect/mouse_hole_spawner{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Uw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Ux" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/machinery/camera/network/research{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"Uz" = (
-/obj/structure/bookcase/bookcart,
-/turf/simulated/floor/carpet,
-/area/library)
-"UA" = (
-/obj/machinery/r_n_d/destructive_analyzer,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research)
-"UB" = (
-/obj/machinery/power/apc/angled{
- cell_type = /obj/item/weapon/cell/super;
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"UD" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/research)
-"UE" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"UF" = (
-/obj/machinery/biogenerator,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"UG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"UH" = (
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"UI" = (
-/obj/structure/cable/pink{
- icon_state = "2-8"
- },
-/obj/structure/cable/pink{
- icon_state = "2-4"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"UJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"UK" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"UL" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Atmospherics Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/atmospherics)
-"UM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/table/rack,
-/obj/random/action_figure,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/obj/random/snack,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"UN" = (
-/obj/structure/table/steel,
-/obj/item/device/electronic_assembly/large/default,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"UO" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"UP" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/structure/table/rack,
-/obj/random/contraband,
-/obj/random/action_figure,
-/turf/simulated/floor,
-/area/maintenance/security_port)
-"UQ" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"UR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"US" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/glasses/hud/security,
-/obj/item/clothing/glasses/hud/security,
-/obj/item/clothing/glasses/hud/security,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"UT" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"UU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"UV" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "xenobiopen1";
- name = "Pen 1 Containment";
- pixel_x = -30;
- pixel_y = 8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- id = "xenobiopen3";
- name = "Pen 3 Containment";
- pixel_x = -31;
- pixel_y = -8;
- req_access = list(55)
- },
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "xenobiodiv1";
- name = "Divider 1 Blast Doors";
- pixel_x = -39;
- req_access = list(55)
- },
-/obj/machinery/light/floortube{
- dir = 8;
- pixel_x = -6
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"UW" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/closet/secure_closet/guncabinet/excursion,
-/obj/item/weapon/pickaxe/drill,
-/turf/simulated/floor/tiled/eris/steel/gray_platform,
-/area/stellardelight/deck1/exploshuttle)
-"UX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Research Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/research)
-"UY" = (
-/obj/machinery/suit_cycler/engineering{
- req_access = null
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"UZ" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/research)
-"Va" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"Vb" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/medical)
-"Vc" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Vd" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/steel/panels,
-/area/stellardelight/deck1/pilot)
-"Ve" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/prison/cell_block)
-"Vf" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"Vg" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/rnd/xenobiology)
-"Vh" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/stellardelight/deck1/pilot)
-"Vi" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Vj" = (
-/turf/simulated/wall/bay/purple,
-/area/stellardelight/deck1/exploequipment)
-"Vk" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "researchwindowlockdown"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/rnd/xenobiology/xenoflora_storage)
-"Vl" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 6";
- req_access = list(55)
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 6";
- req_access = list(55)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen6";
- name = "Pen 6 Blast Doors"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Vm" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/shuttle_landmark/shuttle_initializer/mining,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"Vn" = (
-/obj/machinery/door/blast/angled,
-/turf/simulated/floor,
-/area/stellardelight/deck1/shuttlebay)
-"Vo" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"Vp" = (
-/obj/structure/bookcase{
- name = "bookcase (Reference)"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/sign/painting/library_secure{
- pixel_x = 30
- },
-/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch,
-/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance,
-/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures,
-/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide,
-/obj/item/weapon/book/custom_library/reference/securityguidelines,
-/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization,
-/obj/item/weapon/book/manual/anomaly_spectroscopy,
-/obj/item/weapon/book/manual/anomaly_testing,
-/obj/item/weapon/book/manual/atmospipes,
-/obj/item/weapon/book/manual/bar_guide,
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/item/weapon/book/manual/casino,
-/obj/item/weapon/book/manual/chef_recipes,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/cook_guide,
-/obj/item/weapon/book/manual/detective,
-/obj/item/weapon/book/manual/engineering_construction,
-/obj/item/weapon/book/manual/engineering_guide,
-/obj/item/weapon/book/manual/engineering_hacking,
-/obj/item/weapon/book/manual/engineering_particle_accelerator,
-/obj/item/weapon/book/manual/engineering_singularity_safety,
-/obj/item/weapon/book/manual/evaguide,
-/obj/item/weapon/book/manual/excavation,
-/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/book/manual/mass_spectrometry,
-/obj/item/weapon/book/manual/materials_chemistry_analysis,
-/obj/item/weapon/book/manual/medical_cloning,
-/obj/item/weapon/book/manual/medical_diagnostics_manual,
-/obj/item/weapon/book/manual/research_and_development,
-/obj/item/weapon/book/manual/resleeving,
-/obj/item/weapon/book/manual/ripley_build_and_repair,
-/obj/item/weapon/book/manual/robotics_cyborgs,
-/obj/item/weapon/book/manual/rust_engine,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/obj/item/weapon/book/manual/stasis,
-/obj/item/weapon/book/manual/supermatter_engine,
-/obj/item/weapon/book/manual/tesla_engine,
-/obj/item/weapon/book/manual/virology,
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/wood,
-/area/library)
-"Vq" = (
-/obj/machinery/computer/centrifuge,
-/obj/machinery/embedded_controller/radio/airlock/access_controller{
- dir = 4;
- id_tag = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = -28;
- pixel_y = -16;
- tag_exterior_door = "virology_airlock_exterior";
- tag_interior_door = "virology_airlock_interior"
- },
-/obj/machinery/camera/network/medbay{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/virology)
-"Vr" = (
-/obj/machinery/camera/network/security{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Vs" = (
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"Vt" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"Vu" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"Vv" = (
-/obj/machinery/button/remote/airlock{
- id = "dorm7";
- name = "Room 7 Lock";
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"Vw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/port)
-"Vx" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Vy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm3)
-"Vz" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"VA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 8;
- door_color = "#ffffff";
- name = "EMT Bay";
- req_access = list(5);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/paramedic)
-"VB" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/security)
-"VC" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/white{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/resleeving)
-"VD" = (
-/obj/structure/railing/grey{
- dir = 8
- },
-/obj/structure/sign/directions/bar{
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/sign/directions/command{
- pixel_x = -32
- },
-/obj/structure/sign/directions/medical{
- pixel_x = -32;
- pixel_y = -6
- },
-/obj/structure/sign/directions/evac{
- pixel_x = -32;
- pixel_y = -12
- },
-/obj/structure/sign/directions/stairs_up{
- pixel_x = -32;
- pixel_y = 12
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"VE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/machinery/recharger{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"VF" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"VG" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"VH" = (
-/obj/structure/table/woodentable,
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"VI" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/suit/armor/vest/wolftaur{
- pixel_x = 4;
- pixel_y = 7
- },
-/obj/item/clothing/suit/armor/vest/wolftaur{
- pixel_x = -8;
- pixel_y = -4
- },
-/obj/item/weapon/storage/lockbox,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"VJ" = (
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"VK" = (
-/obj/structure/table/steel,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance,
-/obj/random/medical,
-/obj/random/drinkbottle,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardfore)
-"VL" = (
-/obj/effect/floor_decal/chapel{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"VM" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/black,
-/area/chapel/chapel_morgue)
-"VN" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"VO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "researchwindowlockdown"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/low_wall/bay/reinforced/steel,
-/turf/simulated/floor,
-/area/rnd/xenobiology/xenoflora_storage)
-"VP" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/crew_quarters/toilet)
-"VQ" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/miningshuttle)
-"VR" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/starboard)
-"VS" = (
-/obj/machinery/gateway{
- dir = 1
- },
-/obj/machinery/camera/network/command,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"VT" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "miningops"
- },
-/obj/structure/plasticflaps/mining,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"VV" = (
-/turf/simulated/wall/bay/red,
-/area/chapel/office)
-"VW" = (
-/obj/machinery/vending/wardrobe/detdrobe,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/milspec/color/red,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"VX" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"VY" = (
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"VZ" = (
-/obj/structure/table/woodentable,
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/angled{
- dir = 1;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/turf/simulated/floor/wood,
-/area/library)
-"Wa" = (
-/obj/machinery/button/remote/airlock{
- id = "dorm2";
- name = "Room 2 Lock";
- pixel_y = 24;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 4;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm2)
-"Wb" = (
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/green{
- color = "#42038a"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Wc" = (
-/obj/machinery/smartfridge/produce,
-/turf/simulated/wall/bay/r_wall/purple,
-/area/rnd/xenobiology/xenoflora_storage)
-"Wd" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/ore_box,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"We" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/obj/effect/landmark/start/xenobot,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Wf" = (
-/obj/structure/table/woodentable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/random/coin/sometimes,
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/port)
-"Wg" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Wh" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/table/rack,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance/research,
-/obj/random/contraband,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Wi" = (
-/obj/machinery/camera/network/research/xenobio{
- dir = 9;
- network = list("Xenobiology")
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Wj" = (
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Wk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm4)
-"Wl" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm8)
-"Wm" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Wn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- door_color = "#9c9c9c";
- fill_color = "#5c5c5c";
- id_tag = "dorm7";
- name = "Room 7";
- stripe_color = "#89bd66"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/dorms/dorm7)
-"Wo" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"Wp" = (
-/obj/structure/bed/chair/sofa/pew/left{
- dir = 1
- },
-/obj/structure/sign/painting/chapel_secure{
- pixel_y = -32
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Wq" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Wr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/chapel_morgue)
-"Ws" = (
-/obj/machinery/camera/network/halls{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Wt" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"Wu" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Wv" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"Ww" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/starboardaft)
-"Wx" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Wy" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"Wz" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/halls{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"WA" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "miningops";
- name = "Mining Ops conveyor switch";
- pixel_x = 10;
- pixel_y = 5;
- req_access = list(48);
- req_one_access = list(48)
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"WB" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/stellardelight/deck1/fore)
-"WC" = (
-/obj/structure/table/rack,
-/obj/random/maintenance/research,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/obj/random/maintenance/clean,
-/obj/random/maintenance,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"WD" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"WE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"WG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/prison/cell_block/B)
-"WH" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/effect/landmark/start/explorer,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"WJ" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/structure/sign/painting/library_secure{
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/library)
-"WK" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"WL" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/chapel/chapel_morgue)
-"WM" = (
-/turf/simulated/wall/bay/r_wall/purple,
-/area/stellardelight/deck1/explobriefing)
-"WP" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "miningops"
- },
-/obj/machinery/mineral/output,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/oreprocessing)
-"WQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24
- },
-/obj/machinery/mining/brace,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"WR" = (
-/turf/simulated/wall/bay/purple,
-/area/rnd/research)
-"WS" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"WT" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/effect/landmark/vermin,
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"WU" = (
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"WW" = (
-/obj/structure/table/woodentable,
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm6)
-"WX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/stellardelight/deck1/researchserver)
-"WY" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"WZ" = (
-/obj/machinery/vending/tool,
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"Xa" = (
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_x = -32;
- pixel_y = -5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"Xb" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/camera/network/command{
- dir = 9
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"Xc" = (
-/turf/simulated/wall/bay/r_wall/steel,
-/area/crew_quarters/toilet)
-"Xd" = (
-/obj/machinery/alarm/angled,
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Xe" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/alarm/angled,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Xf" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"Xg" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/structure/sign/vacuum{
- pixel_x = -32
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Xh" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Warden's Desk";
- req_access = list(3)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "wardenoffice";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"Xi" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/eris/white/cargo,
-/area/medical/virology)
-"Xj" = (
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/obj/machinery/disposal/wall{
- dir = 4;
- pixel_x = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/library)
-"Xk" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"Xl" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/turf/simulated/floor/reinforced,
-/area/stellardelight/deck1/shuttlebay)
-"Xm" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- door_color = "#e6ab22";
- name = "Security Substation";
- req_one_access = list(10);
- stripe_color = "#e6ab22"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/maintenance/stellardelight/substation/security)
-"Xn" = (
-/obj/structure/table/steel_reinforced,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/machinery/camera/network/research,
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"Xo" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/medical)
-"Xp" = (
-/obj/structure/table/steel,
-/obj/item/device/integrated_electronics/debugger{
- pixel_x = -5
- },
-/obj/item/device/integrated_electronics/wirer{
- pixel_x = 5
- },
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/rnd/workshop)
-"Xq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Xr" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/button/remote/blast_door{
- id = "mechbay";
- name = "Mech Bay";
- pixel_y = 25;
- req_access = list(29,47)
- },
-/obj/machinery/door/blast/angled{
- dir = 4;
- id = "mechbay";
- name = "Mech Bay"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/assembly/robotics)
-"Xs" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portcent)
-"Xt" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Xu" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"Xv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/reagent_dispensers/foam,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Xw" = (
-/obj/machinery/power/pointdefense{
- id_tag = "sd_pd"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/structure/cable/pink,
-/obj/structure/cable/pink{
- icon_state = "0-2"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"Xx" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"Xz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"XA" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-8"
- },
-/turf/simulated/floor/airless,
-/area/stellardelight/deck1/exterior)
-"XB" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/security_equiptment_storage)
-"XC" = (
-/obj/effect/floor_decal/milspec/color/red/half{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"XD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/hatch{
- dir = 4;
- door_color = "#ffffff";
- name = "maintenance access";
- req_one_access = list(19,43,67);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/explobriefing)
-"XE" = (
-/obj/structure/table/reinforced,
-/obj/item/roller,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/gray_platform,
-/area/gateway)
-"XF" = (
-/obj/effect/floor_decal/milspec/color/emerald/corner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"XG" = (
-/obj/structure/flora/pottedplant/dead,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/researchserver)
-"XH" = (
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"XJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/milspec/color/emerald/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"XL" = (
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Cell A"
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"XM" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"XN" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/landmark/start/scientist,
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchequip)
-"XO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- door_color = "#ffffff";
- name = "Mech Bay";
- req_access = list(29,47);
- stripe_color = "#5a19a8"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/assembly/robotics)
-"XP" = (
-/obj/machinery/door/airlock/angled_bay/standard/color/common{
- dir = 4;
- id_tag = "bathroomstall3";
- name = "Toilet 3"
- },
-<<<<<<< HEAD
-/turf/simulated/floor/tiled/steel_ridged,
-=======
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-/area/crew_quarters/toilet)
-"XQ" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/structure/disposaloutlet,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"XR" = (
-/turf/simulated/wall/bay/steel,
-/area/maintenance/stellardelight/substation/research)
-"XS" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/rnd/storage)
-"XT" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"XU" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/random/vendordrink,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"XV" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/purple,
-/turf/simulated/floor,
-/area/stellardelight/deck1/exploration)
-"XW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/mining,
-/obj/machinery/mining/drill,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"XX" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/library)
-"XY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"XZ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"Ya" = (
-/obj/structure/cable/pink{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Yb" = (
-/obj/machinery/light,
-/turf/simulated/floor/bluegrid,
-/area/assembly/robotics)
-"Yc" = (
-/obj/machinery/door/window/brigdoor/eastleft{
- name = "Slime Pen 5";
- req_access = list(55)
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Slime Pen 5";
- req_access = list(55)
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen5";
- name = "Pen 5 Blast Doors"
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/xenobiology)
-"Yd" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/substation/security)
-"Ye" = (
-/obj/structure/closet/secure_closet/hydroponics/sci{
- req_access = list(77)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris,
-/area/stellardelight/deck1/researchhall)
-"Yf" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_x = -4
- },
-/obj/structure/cable/white{
- icon_state = "1-8"
- },
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/structure/cable/white{
- icon_state = "2-4"
- },
-/obj/structure/cable/white{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/stellardelight/deck1/lowermed)
-"Yh" = (
-/obj/machinery/camera/network/mining{
- dir = 8
- },
-/obj/structure/ore_box,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"Yi" = (
-/obj/structure/table/woodentable,
-/obj/machinery/microwave,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"Yj" = (
-/obj/machinery/processor,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"Yk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Yl" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"Ym" = (
-/obj/structure/cable/pink{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/effect/floor_decal/milspec/color/red/half,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Yn" = (
-/obj/structure/table/rack,
-/obj/random/maintenance,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/obj/random/medical,
-/obj/random/snack,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Yo" = (
-/obj/structure/morgue{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/medical/morgue)
-"Yp" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/orange/half{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/prison/cell_block)
-"Yq" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/brown_platform,
-/area/stellardelight/deck1/miningshuttle)
-"Yr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/carpet/purcarpet,
-/area/stellardelight/deck1/dorms/dorm7)
-"Ys" = (
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "dorm5";
- name = "Room 5 Lock";
- pixel_y = -22;
- specialfunctions = 4
- },
-/obj/machinery/power/apc/angled{
- dir = 8;
- name = "night shift APC";
- nightshift_setting = 2
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/closet/crate/bin{
- anchored = 1
- },
-/turf/simulated/floor/carpet,
-/area/stellardelight/deck1/dorms/dorm5)
-"Yt" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Yu" = (
-/obj/machinery/alarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/storage)
-"Yv" = (
-/turf/simulated/wall/bay/black,
-/area/chapel/office)
-"Yw" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"Yx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Yy" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/recharger{
- pixel_y = 5
- },
-/obj/structure/sign/vacuum{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/tactical)
-"Yz" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"YA" = (
-/obj/structure/bookcase{
- desc = "There appears to be a shrine to WGW at the back...";
- name = "Forbidden Knowledge"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/sign/painting/library_private{
- pixel_y = 32
- },
-/obj/structure/sign/painting/library_private{
- pixel_x = -32
- },
-/obj/item/weapon/book/manual/engineering_hacking,
-/obj/item/weapon/book/manual/nuclear,
-/obj/item/weapon/book/custom_library/fiction/woodysgotwood,
-/turf/simulated/floor/wood,
-/area/library)
-"YB" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"YC" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora_storage)
-"YD" = (
-/obj/structure/bed/chair/backed_red{
- dir = 4
- },
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploration)
-"YE" = (
-/turf/simulated/floor,
-/area/maintenance/stellardelight/substation/cargo)
-"YF" = (
-/turf/simulated/wall/bay/r_wall/brown,
-/area/stellardelight/deck1/dorms/dorm7)
-"YG" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/airlock/angled_bay/standard/glass{
- dir = 4;
- door_color = "#a6753d";
- name = "Refinery";
- req_access = list(48);
- stripe_color = "#3b2b1a"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/stellardelight/deck1/oreprocessing)
-"YH" = (
-/obj/structure/bed/chair/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"YI" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"YJ" = (
-/obj/machinery/computer/ship/navigation/telescreen{
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"YK" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- dir = 4;
- door_color = "#8c1d11";
- fill_color = "#854a44";
- name = "Armory";
- req_access = list(3);
- stripe_color = "#d27428"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/security/armoury)
-"YL" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/department/robo{
- pixel_y = 32
- },
-/obj/machinery/door/blast/angled_shutter/open{
- dir = 4;
- id = "dontlooktmyrobotpenis";
- name = "Privacy Shutters"
- },
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 4;
- name = "Robotics Desk";
- req_access = list(7);
- req_one_access = list(47)
- },
-/turf/simulated/floor/tiled/monotile,
-/area/assembly/robotics)
-"YM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/purple,
-/turf/simulated/floor,
-/area/gateway)
-"YN" = (
-/obj/machinery/power/apc/angled{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"YO" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/security{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"YP" = (
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/maintenance/stellardelight/deck1/exploration)
-"YQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/camera/network/mining{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"YR" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_y = 4
- },
-/obj/item/weapon/pen{
- pixel_y = 4
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/patient_wing)
-"YS" = (
-/obj/structure/cable/white{
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"YT" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/port)
-"YU" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/pathfinder)
-"YV" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/turf/simulated/wall/bay/r_wall/steel,
-/area/security/tactical)
-"YW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"YX" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/machinery/firealarm/angled{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"YY" = (
-/obj/effect/floor_decal/chapel{
- dir = 4
- },
-/obj/structure/bed/chair/sofa/pew/right{
- dir = 1
- },
-/obj/effect/landmark/start/visitor,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"YZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/swabs{
- layer = 5
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/folder/blue{
- pixel_y = -3
- },
-/obj/item/weapon/folder/yellow{
- pixel_y = -5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"Za" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_grid,
-/area/assembly/robotics)
-"Zb" = (
-/obj/structure/closet/secure_closet/security,
-/obj/item/device/holowarrant,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/floor_decal/milspec/color/red,
-/obj/item/device/ticket_printer,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_lockerroom)
-"Zc" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/bluegrid,
-/area/assembly/robotics)
-"Zd" = (
-/obj/effect/landmark{
- name = "carpspawn"
- },
-/turf/space,
-/area/space)
-"Ze" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/structure/low_wall/bay/reinforced/black,
-/turf/simulated/floor,
-/area/chapel/chapel_morgue)
-"Zf" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/shuttlebay)
-"Zg" = (
-/obj/structure/closet/secure_closet/miner,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"Zh" = (
-/obj/structure/table/woodentable,
-/obj/machinery/recharger{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/explobriefing)
-"Zi" = (
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Zj" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/window/brigdoor/southleft{
- id = "Cell C";
- name = "Cell C";
- req_access = list(2)
- },
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_ridged,
-/area/prison/cell_block/C)
-"Zk" = (
-/obj/machinery/button/remote/airlock{
- id = "bathroomstall2";
- name = "Toilet 2 Lock";
- pixel_x = -10;
- pixel_y = 22;
- specialfunctions = 4
- },
-/obj/machinery/light/small,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"Zl" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/stellardelight/deck1/starboard)
-"Zm" = (
-/obj/structure/closet/walllocker_double/west,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/miningequipment)
-"Zn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/bay/reinforced,
-/obj/machinery/door/blast/angled/open{
- dir = 2;
- id = "wardenoffice";
- name = "Privacy Shutters"
- },
-/obj/structure/low_wall/bay/reinforced/red,
-/turf/simulated/floor,
-/area/security/warden)
-"Zo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/machinery/camera/network/civilian{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"Zp" = (
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "GatewayShutterE";
- name = "EVA Shutter";
- pixel_x = -23;
- req_one_access = list(18,19,43,67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/starboard)
-"Zq" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/eris/white/bluecorner,
-/area/medical/exam_room)
-"Zr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "dontlooktmyrobotpenis";
- name = "Privacy Shutter Control";
- pixel_y = 2
- },
-/obj/item/device/robotanalyzer,
-/turf/simulated/floor/tiled/steel,
-/area/assembly/robotics)
-"Zs" = (
-/obj/structure/table/woodentable,
-/obj/structure/sign/painting/chapel_secure{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Zt" = (
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"Zu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/starboardcent)
-"Zv" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/detectives_office)
-"Zw" = (
-/obj/effect/floor_decal/milspec/color/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_cell_hallway)
-"Zx" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- dir = 8;
- frequency = 1379;
- master_tag = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_y = -33;
- req_access = list(39)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/standard/color{
- autoclose = 0;
- dir = 4;
- door_color = "#ffffff";
- frequency = 1379;
- id_tag = "virology_airlock_interior";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access = list(39);
- stripe_color = "#5a96bb"
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/medical/virology)
-"Zy" = (
-/obj/machinery/photocopier,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/chapel/office)
-"Zz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/alarm/angled{
- dir = 4
- },
-/obj/structure/table/steel,
-/obj/random/maintenance/security,
-/obj/random/maintenance/security,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"ZA" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/xenobiology)
-"ZB" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_y = 29
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"ZC" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 20
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 29
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"ZD" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_equiptment_storage)
-"ZE" = (
-/obj/structure/stairs/spawner/south,
-/obj/structure/railing/grey{
- dir = 4
- },
-/turf/simulated/floor,
-/area/stellardelight/deck1/fore)
-"ZF" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/dnaforensics,
-/turf/simulated/floor/tiled/white,
-/area/security/detectives_office)
-"ZG" = (
-/turf/simulated/wall/bay/r_wall/red,
-/area/security/security_lockerroom)
-"ZI" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"ZJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/firealarm/angled{
- dir = 8
- },
-/turf/simulated/floor/tiled/eris/steel/cargo,
-/area/stellardelight/deck1/mining)
-"ZK" = (
-/obj/structure/cable/pink{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portfore)
-"ZM" = (
-/obj/machinery/seed_extractor,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/eris,
-/area/rnd/xenobiology/xenoflora)
-"ZN" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"ZO" = (
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/obj/machinery/station_map{
- dir = 4;
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/aft)
-"ZP" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "wardenoffice";
- name = "Privacy Shutters"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ZQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start/fieldmedic,
-/turf/simulated/floor/tiled/milspec,
-/area/stellardelight/deck1/exploequipment)
-"ZR" = (
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/lobby)
-"ZS" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/orange{
- icon_state = "0-4"
- },
-/obj/structure/cable/orange{
- icon_state = "16-0"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/exploration)
-"ZT" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/angled/open{
- dir = 4;
- id = "xenobiopen2";
- name = "Pen 2 Blast Doors"
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/xenobiology)
-"ZU" = (
-/obj/structure/bed/chair/comfy/brown{
- dir = 8
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/stellardelight/deck1/port)
-"ZV" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/department/chapel{
- pixel_x = -32;
- plane = -34
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/stellardelight/deck1/fore)
-"ZW" = (
-/obj/structure/cable/green{
- color = "#42038a";
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/rnd/research)
-"ZX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/angled_bay/double{
- name = "maintenance access";
- stripe_color = "#454545"
- },
-/turf/simulated/floor,
-/area/maintenance/stellardelight/deck1/portaft)
-"ZY" = (
-/obj/effect/floor_decal/borderfloorblack/full,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/deployable/barrier,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armoury)
-"ZZ" = (
-/turf/simulated/wall/bay/purple,
-/area/rnd/xenobiology)
-
-(1,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(2,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(3,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(4,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(5,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(6,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(7,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(8,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(9,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(10,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(11,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(12,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(13,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(14,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(15,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(16,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(17,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(18,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(19,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(20,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(21,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(22,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(23,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Ga
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(24,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(25,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(26,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(27,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(28,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(29,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(30,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(31,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(32,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(33,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(34,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(35,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(36,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(37,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(38,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(39,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-ea
-JE
-JE
-JE
-JE
-FP
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(40,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-SN
-JE
-JE
-JE
-JE
-JE
-sa
-RF
-hw
-uq
-uq
-uq
-uq
-uq
-uq
-pz
-JE
-JE
-GL
-RF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(41,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-bD
-ea
-EG
-RF
-RF
-uq
-uq
-uq
-vX
-JE
-GL
-RF
-bD
-bD
-bD
-bD
-RF
-RF
-RF
-RF
-vF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(42,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-ib
-kJ
-kJ
-kJ
-kJ
-kJ
-kJ
-Sd
-RF
-RF
-RF
-RF
-uo
-ga
-bD
-bD
-ra
-sW
-Kk
-ra
-Vi
-Gj
-ra
-ra
-ra
-ra
-Vi
-ra
-ra
-ra
-uF
-Vi
-Vi
-ra
-ra
-ra
-ra
-ra
-ra
-bD
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(43,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-RF
-RF
-RF
-RF
-DD
-kJ
-kJ
-kJ
-kJ
-Ks
-kJ
-Sd
-ra
-ra
-xM
-qd
-ra
-Oz
-Wx
-iU
-iU
-iU
-iU
-iU
-iU
-KZ
-vT
-tE
-Jo
-BP
-Cc
-gw
-xw
-vT
-Gy
-ra
-bD
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(44,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-RF
-RF
-RF
-RF
-RF
-RF
-uq
-uq
-YP
-ra
-ra
-Qb
-Zo
-ra
-Yn
-vT
-um
-um
-um
-um
-um
-um
-In
-wm
-Ag
-Ly
-wm
-wm
-rB
-wm
-Np
-Oz
-ra
-RF
-vF
-uq
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(45,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-RF
-RF
-bD
-bD
-ra
-YP
-ZS
-ra
-pI
-tx
-ra
-xl
-rf
-um
-lI
-Ql
-KD
-KP
-um
-if
-WM
-WM
-WM
-WM
-WM
-WM
-WM
-XD
-WM
-nk
-RF
-vF
-bD
-RF
-RF
-RF
-uq
-uq
-et
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(46,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-bD
-ra
-ra
-Km
-fE
-ra
-zd
-SW
-ra
-wU
-PG
-UL
-EX
-jm
-ng
-cC
-um
-if
-WM
-Cl
-wq
-mP
-Lp
-wk
-sT
-gS
-Sn
-nk
-bD
-hE
-JE
-JE
-sa
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(47,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-nn
-ND
-ag
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gc
-nn
-aK
-aK
-aK
-aK
-mC
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-sy
-nc
-nc
-nc
-nc
-hD
-RF
-uq
-uq
-uq
-uq
-uq
-bD
-ra
-UB
-jp
-rl
-RY
-RY
-FF
-Xg
-Ln
-vn
-um
-um
-um
-um
-Jp
-um
-if
-WM
-EF
-Rz
-Uo
-kg
-aJ
-kg
-ji
-kO
-He
-JE
-en
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(48,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gc
-RF
-bD
-bD
-uq
-uq
-uq
-uq
-bD
-bD
-nn
-yE
-uq
-gH
-RF
-bD
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-bD
-RF
-ap
-yE
-uq
-uq
-uq
-RF
-gH
-RF
-bD
-bD
-uq
-uq
-uq
-bD
-bD
-RF
-yz
-RF
-uq
-uq
-uq
-yz
-RF
-RF
-bD
-bD
-uq
-uq
-uq
-ra
-yn
-qq
-aA
-qq
-sF
-qq
-qq
-Yk
-pP
-qq
-UQ
-Tb
-Mn
-PL
-DQ
-XM
-WM
-Up
-Rz
-CN
-zZ
-yP
-zZ
-rv
-Rz
-ny
-bD
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(49,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-nn
-Ul
-Lg
-TW
-tL
-tL
-nM
-nM
-nM
-Ak
-iN
-SA
-xy
-xy
-as
-Vu
-Vu
-xy
-Vu
-Vu
-xy
-Vu
-Vu
-Vu
-xy
-xy
-Td
-td
-xW
-xW
-xW
-xW
-xW
-Yd
-Td
-Td
-NP
-EH
-EH
-NP
-NP
-NP
-NP
-ek
-NP
-NP
-NP
-NP
-ek
-NP
-NP
-NP
-NP
-EH
-EH
-ra
-ra
-IL
-wF
-wF
-wF
-wF
-wF
-wF
-vT
-NI
-Ua
-Rs
-Ua
-Ua
-Ua
-Ua
-Ec
-WM
-HS
-Rz
-TC
-oZ
-Zh
-rt
-OB
-Rz
-ny
-uq
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(50,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-WL
-Lg
-ES
-Ze
-Mk
-fZ
-Ey
-sd
-Ak
-mU
-OG
-xy
-Ox
-NW
-cB
-cB
-FV
-dS
-kx
-Zz
-Bb
-cB
-cB
-cB
-Dj
-gY
-aV
-SC
-rJ
-jV
-zH
-Sl
-SC
-gY
-gY
-ZX
-nm
-nm
-NP
-FI
-Ra
-bV
-Ml
-NL
-yN
-ld
-wQ
-Rg
-nm
-tB
-nm
-nm
-nm
-nm
-kA
-vT
-IL
-wF
-pb
-Jl
-TI
-YE
-wF
-pf
-nB
-Ua
-gV
-BW
-ex
-Pu
-Ua
-Ec
-WM
-eJ
-Rz
-NA
-em
-An
-em
-sN
-Rz
-ny
-bD
-vF
-uq
-RF
-by
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(51,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-nn
-yE
-WL
-Lg
-Dg
-Ze
-KI
-fk
-Ge
-cN
-Ak
-xP
-js
-Fo
-ZK
-is
-ZK
-ZK
-kh
-ZK
-ZK
-Ev
-ZK
-ZK
-ZK
-ZK
-nZ
-Gv
-kY
-Xm
-rs
-hb
-sP
-VB
-lq
-Wg
-cF
-rK
-CB
-CB
-CB
-CB
-CB
-RL
-Ib
-To
-bQ
-Dr
-aO
-Ib
-To
-Xz
-To
-To
-To
-To
-kf
-JP
-nP
-jO
-JW
-Gd
-Om
-BN
-pO
-Uw
-vT
-Ua
-Jg
-ne
-fQ
-nl
-MV
-gt
-WM
-ql
-TP
-CW
-Fx
-zm
-qk
-aC
-Fy
-nk
-bD
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(52,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Lg
-WL
-Fm
-Wr
-tK
-Wr
-Or
-qF
-AV
-LI
-aU
-pT
-AY
-AY
-pp
-pp
-pp
-AY
-pp
-pp
-AY
-pp
-pp
-pp
-AY
-AY
-Rf
-bH
-SC
-SC
-SC
-SC
-SC
-SC
-Wh
-gY
-PM
-PM
-PM
-PM
-Xc
-Xc
-Xc
-VP
-Xc
-Xc
-Xc
-Xc
-vm
-Xc
-qE
-qE
-qE
-qE
-qE
-qE
-qE
-qE
-Vh
-Vh
-Vh
-Vh
-Vh
-wF
-Xq
-yS
-pC
-pC
-pC
-pC
-pC
-pC
-pC
-pC
-Vj
-vy
-mW
-RS
-RS
-RS
-RS
-RS
-JL
-RF
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(53,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-nn
-yE
-Lg
-VM
-Oy
-fk
-jo
-ko
-Ak
-Ak
-Ak
-Ak
-ix
-hj
-Mj
-Rj
-ad
-Dw
-PX
-qN
-PX
-uj
-wb
-UH
-UH
-jB
-fV
-AY
-vG
-yw
-Vb
-Jd
-lm
-Xo
-HI
-us
-Nt
-gY
-PM
-KA
-Lj
-NC
-IY
-CA
-IY
-PU
-IY
-CA
-IY
-<<<<<<< HEAD
-vd
-EN
-IY
-bJ
-=======
-Um
-XP
-NH
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-in
-xS
-jd
-yl
-Ms
-ax
-NH
-vk
-jW
-vK
-wt
-Vh
-Pd
-Xq
-ma
-pC
-uc
-Ke
-CH
-Aa
-FS
-nd
-Nx
-Vj
-XH
-TR
-RS
-mH
-Yl
-fD
-Hf
-JL
-bD
-hE
-JE
-JE
-EG
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(54,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-MP
-yE
-Eh
-Eh
-aq
-tC
-Ak
-Ak
-Ak
-vx
-vx
-vx
-tC
-Kf
-Cf
-AY
-sU
-TU
-Am
-fW
-fW
-fW
-EY
-Nz
-UH
-lh
-cW
-Wp
-AY
-Hg
-GQ
-zw
-dy
-Jj
-Tq
-Rh
-Qr
-aP
-GV
-Rt
-no
-Eo
-Ki
-IY
-MO
-IY
-Zk
-IY
-Ri
-IY
-lQ
-Um
-IY
-Ig
-PF
-NH
-cu
-kW
-NH
-NH
-NH
-mf
-oR
-OF
-wt
-Vh
-fO
-vf
-fO
-pC
-Vo
-Tr
-Tr
-tW
-AE
-ZQ
-sO
-Vj
-CK
-jZ
-RS
-uf
-ay
-pd
-ve
-MW
-uq
-vF
-bD
-RF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(55,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-nn
-yE
-Eh
-Eh
-vx
-pc
-vx
-vx
-vx
-vx
-vx
-ua
-vx
-vx
-kB
-zB
-AY
-NB
-NB
-UH
-UH
-UH
-eq
-yZ
-Lh
-UH
-YY
-Pm
-zY
-AY
-ok
-sQ
-Vb
-Vb
-Vb
-Vb
-Vb
-Vb
-lr
-GN
-PM
-mv
-pN
-bv
-IY
-rZ
-IY
-SG
-IY
-XP
-IY
-lQ
-ob
-SX
-it
-zP
-NH
-cu
-SV
-Ms
-Dy
-NH
-ml
-SZ
-OF
-DV
-Aj
-vj
-vU
-uu
-Vj
-ZN
-yJ
-yJ
-GB
-tY
-na
-zK
-Vj
-By
-TD
-ux
-rM
-jS
-YU
-HG
-MW
-uq
-vF
-uq
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(56,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Eh
-Eh
-vx
-uy
-ID
-tt
-wh
-th
-Hz
-JR
-pE
-zp
-vx
-ph
-Bf
-Yv
-Yv
-eS
-eS
-eS
-Yv
-gm
-Un
-rN
-DI
-rN
-vD
-yo
-fc
-eC
-eE
-gY
-hh
-km
-QB
-gY
-gY
-HY
-GN
-PM
-PH
-Bz
-Pf
-IY
-mc
-wJ
-IU
-fb
-kQ
-kQ
-kQ
-vM
-IY
-oT
-Ew
-NH
-cu
-kW
-NH
-NH
-NH
-ct
-ri
-Ap
-nj
-Aj
-gn
-OZ
-Bl
-Vj
-te
-tY
-At
-vw
-tY
-tY
-pG
-Vj
-PE
-jZ
-RS
-Gt
-ay
-md
-tm
-JL
-bD
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(57,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Eh
-Mc
-vx
-QP
-Iy
-zE
-Hu
-mZ
-dD
-Ii
-ks
-Te
-vx
-og
-Bf
-Yv
-yV
-xh
-kk
-SQ
-Yv
-qQ
-VL
-HK
-UH
-CX
-mk
-Mu
-AY
-xK
-IS
-cF
-cF
-nz
-Ix
-cF
-FR
-Xs
-GN
-PM
-Rq
-Nr
-Fz
-IY
-Kz
-Ls
-LR
-oC
-ky
-QS
-<<<<<<< HEAD
-Ls
-kb
-IY
-oT
-DZ
-=======
-SG
-iR
-RK
-NH
-Ew
->>>>>>> 76e61a485c... Merge pull request #12764 from Very-Soft/timeforblue
-MZ
-OM
-kK
-Ms
-ax
-NH
-nF
-Vd
-Uc
-mK
-Aj
-rk
-OZ
-Bl
-Vj
-CT
-AE
-AE
-eu
-AD
-UR
-xk
-Vj
-Jz
-LO
-ey
-ey
-ey
-ey
-ey
-NY
-JE
-oq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(58,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Eh
-Mc
-vx
-rH
-pK
-NG
-Fa
-AX
-Pv
-VN
-lp
-lJ
-vx
-sp
-wa
-Yv
-Rd
-rY
-YH
-tX
-Rc
-Hv
-OC
-uL
-UH
-kt
-Kv
-bF
-AY
-Td
-Ub
-Td
-Td
-Td
-Td
-Td
-Td
-Td
-gG
-PM
-mM
-iF
-mM
-IY
-IY
-IY
-IY
-Fu
-IY
-IY
-IY
-IY
-IY
-NH
-NH
-NH
-NH
-NH
-NH
-NH
-NH
-Aj
-lz
-Aj
-Aj
-Aj
-Dm
-Gh
-Bl
-Vj
-tu
-tu
-Vj
-lO
-Vj
-tu
-tu
-Vj
-zL
-SE
-vz
-WH
-YD
-sE
-gh
-uB
-bD
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(59,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Eh
-Mc
-vx
-aF
-GP
-IJ
-dJ
-dJ
-dJ
-OJ
-JY
-bI
-vx
-ii
-Bf
-Yv
-Fw
-vE
-vp
-xv
-Yv
-wA
-Xf
-gi
-UH
-wV
-sB
-Nh
-BU
-qo
-uA
-HW
-IA
-Hi
-Dq
-aN
-hp
-YT
-YS
-rg
-rg
-LC
-rg
-JA
-wu
-Kd
-ia
-Sa
-xC
-hR
-ke
-rg
-Wz
-re
-MI
-nJ
-uG
-bu
-ZO
-IW
-qv
-iJ
-ET
-Qv
-dP
-hg
-hg
-nT
-cI
-sC
-yj
-jR
-Dt
-BC
-Pr
-YB
-cV
-Pr
-UT
-Md
-Qt
-Qt
-Qt
-Qt
-ho
-uB
-uq
-vF
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(60,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Eh
-Mc
-vx
-ts
-GR
-hC
-tg
-fq
-hu
-tg
-rO
-Cw
-vx
-UP
-Bf
-Yv
-gE
-Hw
-Yv
-Yv
-Yv
-BU
-AJ
-BU
-Pb
-Pb
-Pb
-BU
-BU
-jJ
-qm
-Vw
-ug
-ob
-nS
-bO
-zM
-GX
-Fv
-Ov
-bw
-kj
-WK
-nC
-ut
-WK
-wW
-oU
-sw
-Jv
-cK
-qy
-cG
-sG
-HP
-bs
-Dk
-lf
-WS
-tJ
-tJ
-tJ
-SJ
-YI
-oy
-sh
-Nl
-nY
-fS
-xb
-PN
-ys
-ce
-zs
-DO
-BH
-Pw
-DO
-iQ
-KU
-zh
-zh
-lw
-PC
-Ty
-uB
-bD
-vX
-JE
-JE
-Wb
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(61,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-fP
-Uq
-sv
-GM
-rF
-yM
-TM
-zN
-eA
-ub
-cM
-tn
-rO
-ZY
-vx
-TS
-Bf
-Yv
-Sg
-Pg
-Yv
-Mm
-RQ
-Hx
-ej
-Jn
-ZV
-py
-gr
-Ou
-ls
-ew
-AG
-CZ
-CZ
-ms
-hk
-YF
-YF
-YF
-YF
-YF
-ja
-KF
-KF
-KF
-KF
-KF
-uk
-ob
-HW
-TT
-Fk
-oE
-oE
-nx
-oE
-oE
-FG
-TX
-FG
-LW
-eV
-pa
-CG
-CG
-Rn
-CG
-CG
-nT
-SO
-uW
-uW
-uW
-uW
-uW
-uW
-uW
-uW
-uW
-BD
-uW
-uW
-XV
-XV
-XV
-uW
-LZ
-EJ
-EJ
-EJ
-EJ
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(62,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-nn
-yE
-Eh
-Eh
-vx
-vx
-VJ
-yk
-vx
-YK
-vx
-vx
-vx
-vx
-vx
-vx
-wf
-Bf
-Yv
-Zs
-ch
-Yv
-mA
-zW
-xZ
-KV
-KV
-KV
-EO
-hL
-rb
-hL
-YT
-Rk
-YT
-SL
-ob
-Je
-YF
-Vv
-Tc
-rS
-YF
-YF
-KF
-li
-TN
-pm
-KF
-kU
-ob
-BI
-Wf
-Jt
-oE
-hP
-bT
-Yo
-oE
-AS
-dq
-FG
-GC
-HC
-oc
-CG
-Kc
-oh
-cp
-CG
-mD
-rG
-dl
-dl
-sS
-pR
-rn
-Ja
-Zm
-vq
-pR
-aI
-UG
-iY
-uN
-uN
-uN
-uN
-uN
-uN
-Ax
-nA
-EJ
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(63,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Ve
-Ve
-ak
-XL
-DS
-FD
-La
-RC
-Fj
-Mb
-XZ
-sr
-cg
-Ni
-zD
-hc
-Bf
-Yv
-Zy
-SQ
-Yv
-xE
-zW
-xZ
-MA
-Zt
-gj
-Ku
-hY
-Ku
-hY
-Ku
-LV
-EN
-EN
-Pt
-Sh
-Wn
-SY
-mz
-SU
-YF
-Js
-KF
-TL
-Ar
-KM
-Kg
-Xx
-Mq
-SB
-lv
-ZU
-oE
-xi
-Va
-Yo
-oE
-Mf
-qn
-FG
-FG
-CG
-CG
-CG
-GZ
-ci
-PV
-CG
-Xe
-XY
-dl
-NS
-zz
-xf
-oJ
-MG
-vC
-Zg
-xf
-ww
-dI
-OT
-yb
-OT
-OT
-OT
-yb
-OT
-bo
-yK
-Vn
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(64,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-Ve
-dR
-qs
-qY
-ye
-Zw
-La
-Zn
-CI
-fI
-fI
-xA
-Mb
-fy
-zD
-Nc
-Fp
-VV
-VV
-VV
-VV
-jf
-zW
-hG
-WB
-DY
-ZE
-Ku
-RD
-UY
-nD
-Ku
-uD
-YT
-at
-KL
-of
-YF
-Ht
-Yr
-ML
-YF
-Js
-KF
-Ae
-Li
-WW
-KF
-uS
-ob
-YT
-cO
-cd
-oE
-FQ
-Va
-Yo
-oE
-eO
-Fr
-YR
-FG
-MX
-oY
-CG
-CU
-MK
-qR
-CG
-iS
-jT
-dl
-QK
-pV
-xf
-Na
-MG
-vC
-vi
-xf
-ww
-dI
-uh
-ih
-OL
-UW
-hy
-Ti
-OT
-OT
-yK
-Vn
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(65,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-fw
-dT
-qP
-pr
-Gm
-Vx
-Ph
-Zn
-FC
-bm
-CE
-vg
-ol
-oa
-zD
-iZ
-Xk
-OD
-ZR
-QG
-RX
-iX
-mT
-Ku
-Ku
-Ku
-Ku
-Ku
-DT
-ll
-nD
-YM
-Rk
-rw
-Ep
-Mt
-EK
-YF
-Yi
-KO
-Co
-YF
-Js
-KF
-qK
-tG
-xH
-KF
-XU
-bg
-iI
-Hl
-YT
-oE
-FB
-Vt
-nO
-rL
-mh
-KR
-nw
-FG
-VC
-gD
-CG
-CG
-RT
-CG
-CG
-yO
-hg
-dl
-sR
-pV
-xf
-qV
-MG
-dL
-kH
-xf
-zO
-dI
-uh
-ba
-Ll
-fi
-bY
-bY
-Ll
-OT
-yK
-Vn
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(66,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-fw
-to
-tM
-qY
-ye
-Pj
-su
-RC
-ZP
-Xh
-RC
-fa
-RC
-Ug
-zD
-Ue
-hT
-mu
-ZI
-Hs
-zb
-IF
-GA
-Ku
-Kt
-Ca
-vQ
-nD
-hX
-nD
-nD
-YM
-Rk
-kU
-ER
-ER
-ER
-ER
-ER
-bU
-bU
-YF
-YF
-KF
-MN
-MN
-vu
-vu
-vu
-vu
-vu
-ue
-YT
-oE
-ar
-tZ
-GG
-oE
-Nw
-Fr
-op
-FN
-Vs
-dH
-oW
-vb
-pA
-hv
-CG
-ZB
-hg
-dl
-ZC
-YQ
-xf
-MF
-MG
-vC
-Zg
-xf
-mY
-bS
-uh
-om
-Ll
-fi
-bY
-bY
-Ll
-OT
-yK
-Vn
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(67,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-gH
-fw
-IM
-Yp
-BY
-DS
-Ee
-UI
-rX
-Rv
-Rv
-MB
-fT
-RG
-PS
-Le
-IH
-JN
-QC
-QC
-QC
-wZ
-hU
-zW
-YM
-LD
-Se
-XE
-Kj
-hX
-nD
-uM
-YM
-Rk
-kU
-ER
-rW
-lC
-HT
-ER
-EZ
-qX
-qX
-qX
-qX
-qX
-NT
-vu
-Br
-AP
-Ys
-vu
-ue
-oF
-oE
-gC
-Og
-cf
-oE
-sl
-Rr
-Fd
-FG
-fL
-Hy
-fH
-hs
-ir
-ip
-CG
-cA
-hg
-dl
-Nm
-on
-pR
-rI
-SS
-Dn
-va
-pR
-Zf
-mG
-uh
-ih
-Kw
-iH
-yc
-KQ
-OT
-OT
-yK
-Vn
-vF
-uq
-uq
-uq
-yX
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(68,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Ah
-Ul
-Ve
-ye
-ye
-ye
-DS
-qS
-bX
-Ba
-wT
-wT
-wT
-UO
-yR
-wT
-QC
-vA
-hT
-qp
-SI
-jy
-mO
-zc
-zW
-JJ
-JJ
-JJ
-JJ
-JJ
-LJ
-nD
-NR
-Ku
-wL
-Nf
-wS
-SH
-jD
-PI
-IZ
-IT
-xe
-xe
-xe
-xe
-xe
-Ef
-AT
-Aq
-WE
-AB
-gf
-rP
-YT
-oE
-oE
-oE
-oE
-oE
-FG
-mR
-FG
-FG
-xg
-TK
-oM
-ev
-DA
-hv
-CG
-ck
-os
-dl
-wp
-pV
-pR
-pR
-Ns
-pR
-pR
-pR
-DN
-mG
-OT
-yb
-OT
-Iu
-OT
-yb
-OT
-bo
-yK
-Vn
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(69,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-gH
-jr
-eB
-wY
-fl
-WG
-lU
-On
-Qu
-Ne
-Ne
-Ne
-Qu
-xm
-wT
-QC
-lB
-GD
-mu
-SF
-HF
-mO
-zc
-zW
-YM
-un
-kE
-RB
-hH
-Av
-gx
-yd
-YM
-wy
-kU
-ER
-zg
-aj
-Wl
-IZ
-IT
-xe
-xe
-xe
-xe
-xe
-Ef
-AT
-Qd
-VH
-Qa
-vu
-QF
-YT
-hJ
-iG
-Jk
-pX
-hJ
-Eu
-bG
-ep
-CG
-CG
-CG
-CG
-CG
-qW
-CG
-CG
-mr
-Uk
-pH
-le
-Be
-Xa
-ZJ
-jF
-KC
-Su
-Hb
-lP
-Xl
-IB
-IB
-IB
-jN
-oG
-oG
-oG
-oG
-si
-Vn
-vX
-sa
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(70,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-NJ
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-jr
-hl
-sx
-IX
-eh
-Rv
-UK
-Qu
-iO
-jl
-xd
-Qu
-cy
-oB
-QC
-GT
-ya
-mu
-NN
-jy
-mO
-Ha
-df
-YM
-VS
-ME
-Qx
-gL
-zy
-En
-hz
-YM
-am
-wi
-bi
-bi
-bi
-bi
-bi
-IT
-xe
-xe
-xe
-xe
-xe
-Ef
-IC
-IC
-IC
-IC
-IC
-fN
-xc
-hJ
-zk
-bf
-pv
-uV
-oH
-Pp
-mJ
-dw
-Ng
-ec
-ik
-iB
-QJ
-Od
-ta
-gq
-mI
-dl
-VE
-EC
-Yh
-TB
-wp
-wp
-NZ
-st
-wN
-Lx
-CP
-cn
-CP
-CP
-CP
-CP
-cn
-CP
-JI
-Vn
-uq
-IV
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(71,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-gH
-jr
-Hk
-ic
-If
-WG
-Lc
-xU
-TH
-ti
-Aw
-eH
-Qu
-io
-wT
-QC
-CQ
-ah
-mu
-SF
-aY
-mO
-zc
-zW
-YM
-so
-jP
-Ow
-gL
-Cv
-db
-WT
-YM
-bn
-AQ
-bi
-Si
-gK
-LX
-wE
-IT
-xe
-xe
-xe
-xe
-xe
-Ef
-PA
-da
-dc
-zR
-IC
-Im
-ei
-hJ
-hJ
-Zx
-hJ
-hJ
-hJ
-hJ
-Nv
-Yf
-Jx
-Oc
-QA
-Jx
-MM
-QO
-ta
-Ie
-hg
-gQ
-Ps
-Ps
-gQ
-YG
-gQ
-Ps
-Ps
-gQ
-YJ
-mb
-Kr
-Kr
-Kr
-UU
-uN
-uN
-uN
-uN
-dA
-Vn
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(72,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Ah
-pn
-bk
-CM
-CM
-CM
-Qk
-wT
-fF
-TH
-Qg
-vs
-FH
-Qu
-kS
-wT
-QC
-tS
-hT
-Bt
-kG
-jy
-mO
-zc
-zW
-JJ
-JJ
-JJ
-JJ
-JJ
-vH
-nD
-NR
-Ku
-mE
-Ir
-br
-KG
-sn
-kL
-wE
-IT
-xe
-xe
-xe
-xe
-xe
-Ef
-PA
-Wk
-iT
-MQ
-qw
-ie
-ei
-hJ
-sf
-gT
-Vq
-lZ
-Gn
-hJ
-qh
-BF
-qh
-qh
-qh
-qD
-VA
-qD
-qD
-sM
-hg
-gQ
-xD
-pw
-uP
-uI
-dQ
-Wt
-hi
-gQ
-qM
-dI
-nK
-GS
-nK
-Ma
-nK
-GS
-nK
-VQ
-PY
-Vn
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(73,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-gH
-DF
-tH
-sA
-qO
-Qk
-wT
-xU
-TH
-hQ
-ab
-mj
-nq
-gW
-go
-ur
-Vc
-xa
-QC
-QC
-QC
-BA
-nW
-zW
-YM
-Op
-fh
-JC
-AK
-zy
-nD
-DL
-YM
-OO
-AQ
-bi
-HX
-Gu
-JB
-bi
-RI
-uw
-uw
-uw
-uw
-uw
-Mh
-IC
-RM
-De
-oA
-IC
-uC
-jn
-hJ
-BV
-RE
-QI
-zf
-wR
-hJ
-Lr
-RH
-Jq
-dd
-qh
-lX
-Df
-zn
-qD
-lt
-hg
-gQ
-dO
-sZ
-tz
-xu
-Do
-hA
-uJ
-Ps
-wO
-dI
-xJ
-VY
-zV
-Vm
-gO
-JD
-nK
-nK
-PY
-Vn
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(74,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-DF
-Lw
-dh
-TE
-CM
-zC
-xL
-Qu
-tF
-Th
-cE
-Qu
-LN
-jv
-QC
-zq
-he
-mu
-gy
-QG
-XC
-zc
-GA
-Ku
-Ru
-Xb
-EI
-WY
-ov
-WY
-Ft
-YM
-OO
-AQ
-bi
-bi
-bi
-bi
-bi
-HH
-HH
-nf
-nf
-fr
-jz
-jz
-IC
-IC
-IC
-IC
-IC
-nQ
-ei
-hJ
-fm
-Oj
-PQ
-uZ
-CJ
-hJ
-KW
-Qh
-Qp
-vW
-qh
-ef
-tv
-Ol
-qD
-YN
-hg
-gQ
-cQ
-gQ
-fK
-mV
-dQ
-vJ
-ff
-Ps
-XW
-dI
-xJ
-xO
-yH
-pe
-Hd
-Hd
-yH
-nK
-PY
-Vn
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(75,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-DF
-iD
-vZ
-JX
-Zj
-Rv
-Ym
-Qu
-Ne
-Ne
-Ne
-Qu
-cP
-wT
-QC
-Iq
-HN
-Tg
-Vr
-Hs
-EA
-zc
-zW
-Ku
-Ku
-Ku
-Ku
-Ku
-gs
-nD
-tb
-YM
-OO
-sg
-cU
-qL
-Ur
-nf
-uv
-zr
-TF
-nf
-OA
-fr
-fu
-jA
-FK
-fr
-cZ
-GK
-BL
-mm
-ei
-hJ
-hJ
-sI
-hJ
-EB
-hJ
-hJ
-HR
-Qh
-aR
-Zi
-qh
-RP
-yu
-EM
-qD
-bR
-hg
-gQ
-WP
-Ps
-PP
-dQ
-dQ
-Ps
-qb
-gQ
-WQ
-dI
-xJ
-qH
-yH
-pe
-Hd
-Hd
-yH
-nK
-PY
-Vn
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(76,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-bk
-kT
-mn
-TE
-CM
-qG
-PO
-QQ
-wT
-wT
-wT
-QQ
-Nj
-wT
-Fe
-Fe
-Me
-Fe
-Fe
-Fe
-Fe
-KE
-zW
-Dp
-Di
-VD
-EV
-Ku
-xn
-MT
-tb
-Ku
-Qc
-AQ
-RZ
-yi
-iW
-nf
-Oe
-rc
-pJ
-nf
-OA
-fr
-JH
-hK
-bt
-fr
-eW
-ei
-ei
-se
-Ws
-hJ
-SD
-gZ
-hJ
-ui
-sK
-hJ
-TY
-Au
-Zq
-gF
-qh
-cs
-LU
-Pz
-qD
-PD
-KX
-gQ
-HB
-Ps
-gp
-Hn
-WA
-Ps
-VT
-gQ
-Wd
-dI
-xJ
-VY
-VX
-eU
-wC
-Yq
-nK
-nK
-PY
-Vn
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(77,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-bk
-bk
-wM
-yB
-Qk
-dB
-GW
-RJ
-YO
-eG
-DE
-ze
-eQ
-qe
-Tm
-mw
-bE
-BS
-QV
-cm
-Fe
-Qn
-zW
-xZ
-MA
-Zt
-TJ
-Ku
-aH
-Ku
-rQ
-Ku
-Lo
-EQ
-Qj
-ei
-bd
-cJ
-No
-KJ
-Ay
-nf
-OA
-fr
-Qe
-Vy
-Cb
-Tx
-Ch
-Dz
-im
-aQ
-kn
-hJ
-CR
-Bj
-hJ
-Bj
-Xi
-hJ
-qh
-qh
-qh
-qh
-qh
-qa
-er
-wo
-qD
-bh
-Ok
-gQ
-do
-gQ
-Ps
-gQ
-Ps
-gQ
-Pn
-gQ
-lA
-dI
-nK
-dU
-nK
-nK
-dU
-dU
-nK
-VQ
-PY
-Vn
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(78,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Sy
-ag
-aS
-aS
-XB
-XB
-XB
-ZG
-ZG
-ZG
-Ao
-ZG
-ZG
-ZG
-ZG
-Zv
-Bd
-Ya
-xI
-mg
-nV
-Fe
-sz
-ao
-xZ
-KV
-KV
-KV
-Ky
-AF
-Zp
-ly
-ei
-OO
-ei
-qu
-ei
-Sz
-nf
-Wa
-QM
-dv
-nf
-nf
-fr
-Iz
-Dc
-SP
-fr
-AQ
-ei
-lD
-cl
-wn
-hJ
-Rb
-Ic
-hJ
-Ic
-Rb
-hJ
-an
-lR
-pU
-OH
-qD
-OU
-dr
-rm
-qD
-yt
-ht
-gQ
-dY
-Lv
-Kb
-Kb
-Kb
-HE
-qU
-gQ
-lV
-yL
-qg
-oG
-oG
-oG
-oG
-oG
-oG
-KT
-UJ
-EJ
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(79,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uH
-ag
-aS
-ZD
-pZ
-qI
-ZG
-we
-VW
-LL
-jc
-ae
-sL
-Zb
-Zv
-Bk
-HA
-Fh
-Cz
-Nk
-Fe
-px
-hS
-tR
-vB
-lF
-jY
-lM
-Jb
-za
-sb
-eN
-qj
-ei
-AQ
-ei
-DC
-nf
-nf
-nf
-nf
-nf
-NQ
-fr
-fr
-fr
-fr
-fr
-hN
-ei
-aE
-fz
-VR
-hJ
-hJ
-hJ
-hJ
-hJ
-hJ
-hJ
-an
-CL
-eV
-pa
-qD
-qD
-Da
-qD
-qD
-dn
-XF
-WR
-WR
-WR
-qA
-qA
-qA
-qA
-qA
-qA
-qA
-qA
-oX
-oX
-oX
-oX
-oX
-kP
-EJ
-EJ
-EJ
-EJ
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(80,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-QY
-VI
-ED
-rh
-ZG
-oO
-ed
-Sv
-LH
-vo
-vo
-IN
-Zv
-Fi
-fd
-YZ
-nh
-BO
-OQ
-FT
-wz
-FT
-iz
-dK
-FT
-wz
-wz
-FT
-FT
-HL
-vr
-vh
-Wy
-Sj
-Jb
-Sj
-mS
-vt
-Sj
-Sj
-pg
-MD
-nX
-Jh
-AZ
-nX
-dG
-nX
-nX
-Ot
-nX
-ON
-Wq
-DJ
-hW
-Vz
-gd
-KH
-zQ
-Xu
-Xu
-Xu
-TO
-jH
-iL
-nG
-Xu
-qT
-Oa
-WR
-Mi
-My
-qA
-zX
-jj
-nt
-FW
-kz
-OV
-qA
-XS
-kp
-tr
-Ux
-pu
-Db
-bD
-ea
-JE
-JE
-FP
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(81,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Dl
-CD
-gb
-wx
-Ei
-Bs
-oI
-WD
-LA
-BJ
-bq
-bq
-Gp
-Zv
-Xd
-QX
-Fh
-FZ
-xX
-OQ
-WJ
-JS
-Xj
-FL
-iq
-Ck
-AH
-iq
-mo
-FT
-kM
-lc
-Vf
-vL
-eP
-Uf
-LE
-xx
-id
-yx
-MC
-ou
-Yt
-ei
-aX
-mQ
-Wj
-Wj
-Wj
-Wj
-Wj
-WU
-tw
-Wj
-Wj
-Wj
-MH
-xx
-xF
-kl
-CV
-kv
-jg
-XJ
-DK
-yW
-XJ
-Hp
-RA
-Dd
-gM
-dp
-Jc
-qA
-FY
-WX
-hB
-pM
-GE
-cX
-qA
-ka
-Wv
-lN
-Ek
-pq
-Db
-uq
-vF
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(82,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-QY
-BM
-zx
-US
-ZG
-RU
-VG
-ws
-Bi
-IK
-IK
-mF
-cY
-OE
-Py
-xI
-pY
-ez
-OQ
-VZ
-Eg
-Eg
-Ta
-iq
-iq
-iq
-iq
-xB
-LY
-FE
-Cs
-FE
-FE
-FE
-FE
-FE
-FE
-FE
-FE
-Wu
-Tv
-Mv
-ei
-aD
-aD
-YL
-ry
-dW
-aD
-aD
-Ds
-aD
-aD
-Xr
-Nb
-Nb
-aD
-iM
-LF
-aM
-aM
-Mg
-Mg
-Mg
-aM
-aM
-nI
-nI
-nI
-WR
-sY
-LP
-qA
-zX
-yY
-yQ
-du
-XG
-es
-qA
-Sk
-vI
-yD
-IE
-Yu
-kP
-RF
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(83,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-aS
-vc
-BT
-dV
-ZG
-qZ
-oQ
-Re
-dm
-YX
-VF
-Is
-Zv
-Gi
-JM
-ZF
-xG
-Bv
-OQ
-fX
-iq
-iq
-bA
-zj
-LM
-Fb
-Bx
-Cj
-LY
-WC
-Ik
-Cg
-hI
-UM
-Xv
-wP
-lY
-Cg
-bz
-Wu
-Iw
-zl
-ei
-aD
-wK
-Bn
-Zr
-xs
-zG
-Ih
-ru
-aB
-aD
-Mr
-fo
-Yb
-aD
-Rl
-wg
-aM
-oS
-oL
-gu
-oL
-UN
-aM
-tI
-JK
-uR
-WR
-Gc
-yv
-qA
-qA
-qA
-qA
-ha
-qA
-qA
-qA
-oX
-oX
-pt
-oX
-oX
-kP
-RF
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(84,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-aS
-aS
-XB
-XB
-ZG
-ZG
-ZG
-hF
-ZG
-ZG
-ZG
-ZG
-Zv
-Fe
-MS
-Fe
-Fe
-Fe
-OQ
-FT
-jK
-lo
-xV
-oK
-iK
-XX
-jq
-yg
-Hj
-iA
-CC
-yT
-yT
-xT
-Zu
-yT
-yT
-yT
-eM
-Wu
-co
-zl
-ei
-aD
-mN
-sc
-cS
-hV
-LK
-IQ
-Qq
-sq
-aD
-vY
-AO
-vY
-aD
-nH
-QR
-aM
-Xp
-Pl
-ST
-Pl
-FM
-aM
-xz
-Wo
-jG
-OX
-BZ
-QE
-yq
-WR
-Xn
-Tn
-lH
-Nd
-pF
-WZ
-nN
-Cp
-AL
-cq
-Ye
-Fn
-JE
-en
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(85,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Sy
-ag
-ni
-ni
-eF
-eF
-Gr
-ee
-Po
-HZ
-nv
-fn
-mx
-Gr
-sJ
-bx
-LY
-YA
-TV
-iE
-FT
-zo
-NF
-xV
-eb
-Kp
-kw
-Kp
-Eb
-LY
-IG
-Ik
-bl
-bl
-bl
-bl
-bl
-bl
-Cg
-gz
-Kl
-Zl
-oD
-aE
-aD
-Es
-ig
-BK
-BK
-NM
-Za
-gU
-Sr
-XO
-fR
-jQ
-Sf
-fJ
-Sb
-Tf
-tq
-DP
-jI
-DW
-FU
-JT
-uU
-hM
-UE
-nE
-UA
-zU
-Bu
-BB
-ps
-de
-QH
-fx
-mt
-OI
-bN
-tD
-zS
-Lk
-mi
-dN
-GI
-uq
-vF
-uq
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(86,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-ro
-ag
-ni
-ni
-Qi
-Gr
-eT
-BG
-au
-ft
-Ac
-xN
-Gr
-Cr
-bx
-LY
-Us
-Uh
-rr
-rp
-jL
-AN
-me
-jC
-iq
-iq
-iq
-Eb
-LY
-AC
-Uu
-Et
-lx
-kc
-PZ
-od
-rA
-pi
-TQ
-Wu
-Tk
-Uj
-sm
-aD
-wc
-oo
-cD
-cD
-MJ
-sc
-QZ
-Bo
-aD
-Zc
-sc
-Zc
-aD
-fs
-Ab
-aM
-zA
-Dx
-eo
-Dx
-hx
-ZZ
-hm
-ZW
-cv
-UD
-Tj
-lG
-tO
-WR
-Fc
-iw
-vv
-tf
-JQ
-JQ
-JQ
-JQ
-Tl
-JQ
-JQ
-bj
-bD
-vF
-bD
-RF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(87,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Sy
-ag
-Qw
-Rw
-tp
-Yx
-di
-eX
-qB
-tU
-Pa
-Gr
-sD
-bx
-LY
-Kq
-EU
-pD
-FT
-eI
-CO
-Uz
-Vp
-Sx
-aG
-iq
-dx
-LY
-Cm
-Ip
-bl
-fj
-jh
-rC
-bZ
-bl
-Cg
-vP
-Wu
-HO
-dj
-sm
-aD
-JU
-LB
-nu
-yI
-lk
-lu
-rz
-ss
-aD
-bW
-rV
-EW
-aD
-uX
-Go
-aM
-kd
-Dx
-gX
-aZ
-gl
-ZZ
-Nu
-rD
-IP
-fp
-cw
-yU
-dZ
-WR
-GU
-bP
-XN
-hd
-JQ
-wI
-Xt
-UF
-Rm
-Lz
-RR
-iV
-bD
-Cx
-JE
-JE
-sa
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(88,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-ni
-ni
-Gr
-ac
-lS
-Fs
-eD
-xR
-NK
-qJ
-yy
-bx
-LY
-LY
-LY
-LY
-LY
-LY
-Rp
-Rp
-LY
-Rp
-Rp
-Rp
-LY
-LY
-yC
-TZ
-XR
-XR
-XR
-XR
-XR
-XR
-iy
-vP
-Wu
-JF
-JF
-JF
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-Ct
-yp
-Sc
-Dx
-Dx
-Dx
-be
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-Dx
-JQ
-JQ
-rj
-ox
-cT
-NV
-sj
-Oo
-iV
-uq
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(89,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Sy
-ag
-ni
-Gr
-Yy
-Il
-dt
-Io
-jt
-fG
-Gr
-tN
-PW
-jw
-ai
-cr
-fB
-yy
-Bw
-sV
-sV
-bM
-Ss
-Ss
-Ss
-Ss
-yF
-Em
-BR
-LT
-mL
-kr
-GF
-Lq
-UX
-Lm
-ul
-Oh
-Dv
-Dv
-Dv
-Dv
-Dv
-Dv
-Uv
-Dv
-lT
-Dv
-il
-OR
-CY
-Dv
-Qz
-Dv
-Dv
-bB
-kq
-Dx
-fM
-uY
-hq
-HD
-Dx
-XQ
-JV
-KS
-Dx
-XQ
-Pk
-KS
-Dx
-Cn
-RN
-ku
-Dx
-ZM
-FO
-Qy
-pj
-Qy
-wB
-DG
-PB
-iV
-bD
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(90,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-gH
-ni
-ni
-Gr
-pl
-Gr
-Gr
-Gr
-Gr
-Gr
-VK
-AI
-yy
-yy
-bx
-yy
-yy
-xq
-yy
-yy
-tP
-yy
-yy
-yy
-yy
-AW
-Cg
-yr
-XR
-UZ
-BQ
-Ud
-zt
-XR
-Fl
-Cg
-nL
-oe
-SM
-Wu
-aw
-mB
-oe
-Lu
-oe
-HV
-oe
-oe
-Lu
-oe
-oe
-KY
-oe
-oe
-QU
-PR
-Dx
-zT
-ZA
-vV
-uz
-Dx
-Ad
-RN
-RN
-Oq
-Ad
-RN
-RN
-lb
-Wi
-bL
-sH
-Dx
-xj
-We
-XT
-XT
-XT
-kC
-uT
-lW
-bj
-RF
-vF
-uq
-RF
-dk
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(91,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Sy
-yG
-YV
-YV
-wX
-ni
-ni
-ni
-ni
-ni
-ge
-aW
-wG
-wG
-aW
-ge
-ge
-wG
-ge
-ge
-wG
-ge
-ge
-ge
-wG
-wG
-FE
-Ka
-oz
-oz
-oz
-oz
-oz
-oz
-gP
-FE
-Wu
-uQ
-uQ
-Wu
-Wu
-Wu
-Wu
-Ww
-Wu
-Wu
-Wu
-Wu
-Ww
-Wu
-Wu
-Wu
-Wu
-uQ
-uQ
-Wu
-ym
-Yj
-ZA
-vV
-Ez
-Dx
-jx
-ln
-OY
-Dx
-Bm
-kI
-Ai
-Dx
-Qm
-Yc
-zI
-CS
-Gl
-tl
-KN
-Yw
-FA
-IR
-DG
-PB
-iV
-bD
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(92,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Hc
-RF
-bD
-bD
-uq
-uq
-uq
-uq
-bD
-bD
-Sy
-ag
-uq
-gH
-RF
-bD
-bD
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-bD
-RF
-vF
-RF
-uq
-uq
-uq
-ea
-tj
-EG
-bD
-bD
-uq
-uq
-uq
-bD
-bD
-RF
-vF
-RF
-uq
-uq
-uq
-vF
-RF
-RF
-bD
-bD
-uq
-uq
-uq
-fg
-dF
-xt
-vN
-sX
-Dx
-KK
-gg
-Ff
-UV
-bK
-gg
-rT
-cj
-bK
-gg
-KB
-iC
-XT
-St
-XT
-XT
-XT
-kC
-sj
-Oo
-iV
-uq
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(93,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Sy
-Xw
-yE
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Ci
-JE
-JE
-JE
-JE
-EG
-IV
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-JO
-JE
-JE
-JE
-JE
-EG
-RF
-uq
-uq
-uq
-uq
-uq
-bD
-fg
-la
-ZA
-TG
-Hq
-Tp
-pk
-eR
-zv
-Gb
-Fq
-Af
-eR
-Gb
-eR
-eR
-hZ
-iC
-PJ
-sj
-gk
-Wm
-BE
-As
-Jw
-bb
-iV
-bD
-vF
-uq
-RF
-vF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(94,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-bD
-ym
-ym
-hO
-YW
-bc
-Dx
-lK
-gg
-yf
-dg
-jk
-gg
-rT
-NX
-jk
-gg
-Er
-iC
-DH
-Ry
-Ry
-DH
-DH
-MR
-Wc
-DH
-pQ
-RF
-hE
-JE
-JE
-EG
-RF
-uq
-uq
-et
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(95,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-RF
-RF
-bD
-bD
-ym
-ym
-eY
-Hr
-Dx
-wv
-Ut
-ZT
-Dx
-Ex
-ju
-Lt
-Dx
-IO
-Vl
-or
-iC
-AR
-QD
-QD
-EP
-FX
-Ro
-hr
-qx
-Vk
-bD
-vF
-bD
-RF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(96,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-RF
-RF
-RF
-RF
-RF
-RF
-uq
-uq
-ym
-Vg
-el
-Dx
-aL
-RN
-RN
-Ts
-aL
-RN
-RN
-LQ
-tA
-bL
-wj
-iC
-rd
-iv
-iv
-iv
-pL
-Nq
-Yz
-YC
-Vk
-uq
-vF
-uq
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(97,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-RF
-RF
-RF
-RF
-RF
-ea
-JE
-JE
-JE
-AM
-JE
-JE
-oi
-ym
-Dx
-nb
-JV
-KS
-Dx
-nb
-fv
-KS
-Dx
-Cn
-RN
-Eq
-iC
-BX
-Gq
-BX
-mX
-xQ
-Ob
-Sq
-my
-Vk
-uq
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(98,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-pz
-JE
-JE
-JE
-JE
-JE
-JE
-JE
-EG
-RF
-RF
-RF
-vX
-FP
-bD
-bD
-ym
-ym
-RN
-RN
-jb
-ym
-RN
-RN
-kN
-ym
-RN
-RN
-SR
-Vg
-pQ
-Ce
-Ce
-pQ
-pQ
-Ce
-VO
-pQ
-pQ
-bD
-vF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(99,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-bD
-bD
-RF
-RF
-RF
-RF
-uq
-uq
-uq
-ea
-tT
-sa
-RF
-bD
-bD
-bD
-bD
-vX
-JE
-sa
-RF
-vF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(100,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-pz
-JE
-JE
-JE
-JE
-JE
-EG
-RF
-IV
-uq
-uq
-uq
-uq
-uq
-uq
-pz
-XA
-JE
-cb
-RF
-RF
-RF
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(101,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-RF
-vX
-JE
-JE
-JE
-JE
-FP
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(102,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(103,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(104,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(105,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(106,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(107,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(108,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(109,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(110,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(111,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(112,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(113,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(114,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(115,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-lg
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(116,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(117,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(118,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(119,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(120,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(121,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-Zd
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(122,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(123,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(124,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(125,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(126,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(127,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(128,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(129,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(130,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(131,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(132,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(133,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(134,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(135,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(136,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(137,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(138,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(139,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
-(140,1,1) = {"
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-uq
-"}
+no
\ No newline at end of file
diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm
index d896392229..d78b856480 100644
--- a/maps/stellar_delight/stellar_delight2.dmm
+++ b/maps/stellar_delight/stellar_delight2.dmm
@@ -558,8 +558,8 @@
pixel_y = 6
},
/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
+ desc = "A direction sign, pointing out the way to the shuttle bay.";
+ name = "\improper Shuttle Bay";
pixel_x = 32;
pixel_y = -6
},
@@ -627,8 +627,8 @@
pixel_y = 6
},
/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
- name = "\improper Exploration Department";
+ desc = "A direction sign, pointing out the way to the shuttle bay.";
+ name = "\improper Shuttle Bay";
pixel_x = -32;
pixel_y = -6
},
@@ -5312,9 +5312,9 @@
pixel_y = 6
},
/obj/structure/sign/directions{
- desc = "A direction sign, pointing out the way to Exploration.";
+ desc = "A direction sign, pointing out the way to the shuttle bay.";
dir = 1;
- name = "\improper Exploration Department";
+ name = "\improper Shuttle Bay";
pixel_x = 32;
pixel_y = -12
},
diff --git a/maps/stellar_delight/stellar_delight_jobs.dm b/maps/stellar_delight/stellar_delight_jobs.dm
index 312fc0befa..696f4950f7 100644
--- a/maps/stellar_delight/stellar_delight_jobs.dm
+++ b/maps/stellar_delight/stellar_delight_jobs.dm
@@ -1,5 +1,6 @@
//The pathfinder doesn't have a OM shuttle that they are in charge of, and so, doesn't need pilot access.
//Mostly to prevent explo from just commandeering the Starstuff as the explo shuttle without involving a pilot every round.
+/*
/datum/job/pathfinder
access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_explorer, access_gateway, access_pathfinder)
minimal_access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_explorer, access_gateway, access_pathfinder)
@@ -8,7 +9,7 @@
/datum/job/sar
access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_eva, access_maint_tunnels, access_external_airlocks)
minimal_access = list(access_medical, access_medical_equip, access_morgue)
-
+*/
/datum/job/hop
alt_titles = list("Crew Resources Officer" = /datum/alt_title/cro, "Deputy Manager" = /datum/alt_title/deputy_manager, "Staff Manager" = /datum/alt_title/staff_manager,
"Facility Steward" = /datum/alt_title/facility_steward, "First Mate" = /datum/alt_title/first_mate)
@@ -30,4 +31,4 @@
title = "Master-at-Arms"
/datum/job/pilot/get_request_reasons()
- return list("Moving Stellar Delight")
\ No newline at end of file
+ return list("Moving Stellar Delight")
diff --git a/maps/stellar_delight/stellar_delight_telecomms.dm b/maps/stellar_delight/stellar_delight_telecomms.dm
index 7b36a00971..57c26eef2d 100644
--- a/maps/stellar_delight/stellar_delight_telecomms.dm
+++ b/maps/stellar_delight/stellar_delight_telecomms.dm
@@ -13,7 +13,7 @@
network = "tcommsat"
autolinkers = list("hub",
"sd_relay", "c_relay", "m_relay", "r_relay",
- "science", "medical", "supply", "service", "common", "command", "engineering", "security", "explorer", "unused",
+ "science", "medical", "supply", "service", "common", "command", "engineering", "security", "Away Team", "unused",
"hb_relay", "receiverA", "broadcasterA"
)
@@ -29,7 +29,7 @@
/obj/machinery/telecomms/server/presets/service/sd
freq_listening = list(SRV_FREQ, EXP_FREQ)
- autolinkers = list("service", "explorer")
+ autolinkers = list("service", "Away Team")
// Telecommunications Satellite
/area/sd/surfacebase/tcomms
@@ -78,14 +78,14 @@
num2text(SCI_FREQ) = list(access_tox,access_robotics,access_xenobiology),
num2text(SUP_FREQ) = list(access_cargo),
num2text(SRV_FREQ) = list(access_janitor, access_hydroponics),
- num2text(EXP_FREQ) = list(access_explorer)
+ num2text(EXP_FREQ) = list(access_awayteam)
)
-/obj/item/device/multitool/sd_buffered
+/obj/item/device/multitool/station_buffered
name = "pre-linked multitool (sd hub)"
desc = "This multitool has already been linked to the SD telecomms hub and can be used to configure one (1) relay."
-/obj/item/device/multitool/sd_buffered/Initialize()
+/obj/item/device/multitool/station_buffered/Initialize()
. = ..()
buffer = locate(/obj/machinery/telecomms/hub/preset/sd)
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 5e1afa312d..9de4da08c6 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -360,9 +360,15 @@
/obj/item/weapon/tank/emergency/oxygen/double,
/obj/item/weapon/tank/emergency/oxygen/double,
/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/storage/belt/utility/holding,
-/obj/item/weapon/storage/belt/utility/holding,
-/obj/item/weapon/storage/belt/utility/holding,
+/obj/item/weapon/storage/belt/explorer/pathfinder{
+ name = "ERT belt"
+ },
+/obj/item/weapon/storage/belt/explorer/pathfinder{
+ name = "ERT belt"
+ },
+/obj/item/weapon/storage/belt/explorer/pathfinder{
+ name = "ERT belt"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"aC" = (
@@ -474,9 +480,15 @@
},
/obj/structure/table/rack/steel,
/obj/effect/floor_decal/industrial/outline/grey,
-/obj/item/weapon/storage/belt/medical/holding,
-/obj/item/weapon/storage/belt/medical/holding,
-/obj/item/weapon/storage/belt/medical/holding,
+/obj/item/weapon/storage/belt/explorer/pathfinder{
+ name = "ERT belt"
+ },
+/obj/item/weapon/storage/belt/explorer/pathfinder{
+ name = "ERT belt"
+ },
+/obj/item/weapon/storage/belt/explorer/pathfinder{
+ name = "ERT belt"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"aI" = (
@@ -499,7 +511,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"aJ" = (
-/obj/item/device/multitool/tether_buffered,
+/obj/item/device/multitool/station_buffered,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"aK" = (
@@ -6791,7 +6803,7 @@
/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
/obj/item/weapon/storage/belt/explorer/pathfinder,
/obj/item/weapon/storage/belt/explorer/pathfinder{
- name = "ERT Commander's belt"
+ name = "ERT belt"
},
/turf/simulated/floor/wood,
/area/ship/ert/commander)
diff --git a/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm b/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm
index 4813ca48e6..68155a233a 100644
--- a/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm
+++ b/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm
@@ -143,8 +143,16 @@
},
/turf/simulated/floor/tiled/white,
/area/submap/Blackshuttledown)
+"av" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark5";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
"aw" = (
-/turf/simulated/floor/tiled/steel_grid,
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
"ax" = (
/obj/structure/table/steel,
@@ -194,6 +202,20 @@
},
/turf/simulated/floor/tiled/white,
/area/submap/Blackshuttledown)
+"aG" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark9";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"aH" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark6";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
"aI" = (
/mob/living/simple_mob/mechanical/viscerator,
/mob/living/simple_mob/mechanical/viscerator,
@@ -206,6 +228,8 @@
dir = 4;
pixel_y = 0
},
+/obj/random/projectile/sec,
+/obj/random/projectile/sec,
/turf/simulated/floor/tiled/steel_grid,
/area/submap/Blackshuttledown)
"aK" = (
@@ -231,8 +255,12 @@
/turf/simulated/floor/tiled/white,
/area/submap/Blackshuttledown)
"aO" = (
-/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
-/turf/simulated/floor/tiled/white,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
"aP" = (
/obj/machinery/light{
@@ -253,7 +281,9 @@
/area/submap/Blackshuttledown)
"aR" = (
/obj/structure/table/steel,
-/obj/item/weapon/grenade/smokebomb,
+/obj/random/grenade/box,
+/obj/random/grenade/box,
+/obj/random/powercell,
/turf/simulated/floor/tiled/steel_grid,
/area/submap/Blackshuttledown)
"aS" = (
@@ -346,6 +376,13 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/white,
/area/submap/Blackshuttledown)
+"bf" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark10";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
"bg" = (
/obj/machinery/computer/communications,
/obj/effect/floor_decal/borderfloor{
@@ -420,6 +457,7 @@
/obj/effect/floor_decal/borderfloor{
dir = 8
},
+/obj/random/maintenance/foodstuff,
/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
"bs" = (
@@ -488,6 +526,7 @@
/area/submap/Blackshuttledown)
"bC" = (
/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
"bD" = (
@@ -525,7 +564,13 @@
/turf/simulated/floor/tiled/yellow,
/area/submap/Blackshuttledown)
"bI" = (
-/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
+/obj/item/stolenpackage,
+/obj/structure/closet/crate,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/material/precious,
+/obj/random/rigsuit/chancetofail,
+/obj/random/projectile,
/turf/simulated/floor/tiled/yellow,
/area/submap/Blackshuttledown)
"bJ" = (
@@ -576,6 +621,9 @@
/area/submap/Blackshuttledown)
"bQ" = (
/obj/structure/closet/toolcloset,
+/obj/random/tool/power,
+/obj/random/tool/power,
+/obj/random/tool/power,
/turf/simulated/floor/tiled/yellow,
/area/submap/Blackshuttledown)
"bR" = (
@@ -609,6 +657,9 @@
/area/submap/Blackshuttledown)
"bV" = (
/obj/structure/table/steel,
+/obj/random/rigsuit/chancetofail,
+/obj/random/projectile,
+/obj/random/projectile,
/turf/simulated/floor/tiled/steel_grid,
/area/submap/Blackshuttledown)
"bW" = (
@@ -682,13 +733,15 @@
/area/submap/Blackshuttledown)
"ch" = (
/obj/structure/table/steel,
-/obj/random/energy,
+/obj/random/energy/highend,
+/obj/random/energy/highend,
/turf/simulated/floor/tiled/steel_grid,
/area/submap/Blackshuttledown)
"ci" = (
/obj/structure/toilet{
dir = 1
},
+/obj/random/mob/merc/all,
/turf/simulated/floor/tiled/hydro,
/area/submap/Blackshuttledown)
"cj" = (
@@ -727,6 +780,7 @@
/area/submap/Blackshuttledown)
"cn" = (
/obj/structure/table/woodentable,
+/obj/random/contraband/nofail,
/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
"co" = (
@@ -757,10 +811,45 @@
/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
"cs" = (
+/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"jW" = (
+/obj/item/weapon/stool,
+/mob/living/simple_mob/humanoid/merc/ranged/ionrifle/poi,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"pX" = (
+/obj/random/mob/merc/all,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"rE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/random/mob/merc/all,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"vW" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/random/mob/merc/all,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"AL" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/mob/living/simple_mob/humanoid/merc/ranged/laser/poi,
+/obj/random/mob/merc/all,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"DG" = (
+/obj/structure/table/steel,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"RP" = (
+/obj/machinery/computer,
+/obj/effect/floor_decal/borderfloor/full,
/turf/simulated/floor/tiled/steel,
/area/submap/Blackshuttledown)
@@ -1000,14 +1089,14 @@ ab
ab
ab
ab
-ai
+aH
aj
bq
bx
bx
bG
aj
-cp
+av
ab
ab
ab
@@ -1036,16 +1125,16 @@ ab
ab
ab
ab
-ai
+aH
aj
bg
+aO
br
br
-br
-br
+aO
bJ
aj
-cp
+av
ab
ab
ab
@@ -1071,8 +1160,8 @@ ad
ai
aj
aj
-cp
-ai
+av
+aH
aj
bb
bh
@@ -1083,8 +1172,8 @@ bl
bF
bT
aj
-cp
-ai
+av
+aH
aj
aj
cp
@@ -1110,14 +1199,14 @@ aj
aj
aj
aj
-aQ
+RP
bc
-az
+AL
az
aK
aS
az
-cs
+AL
bU
aQ
aj
@@ -1182,9 +1271,9 @@ ab
aj
aj
aj
-aw
+cb
aI
-aw
+cg
bd
bi
bs
@@ -1193,8 +1282,8 @@ bF
bs
bL
bd
-aw
-cb
+cg
+cg
cg
aj
aj
@@ -1223,12 +1312,12 @@ ax
aJ
aR
aj
-aL
+rE
bl
bl
bl
bl
-aT
+vW
aj
bV
cc
@@ -1333,14 +1422,14 @@ ao
az
aK
aS
-az
+AL
az
bt
bl
bl
bt
bM
-az
+AL
bW
aS
cr
@@ -1483,10 +1572,10 @@ aj
aj
aj
bl
-bu
+jW
bB
-bC
-bu
+DG
+jW
bl
aj
aj
@@ -1558,8 +1647,8 @@ aW
aj
bn
bu
-bC
-bC
+DG
+bB
bu
bn
aj
@@ -1591,7 +1680,7 @@ aj
as
aD
aN
-aE
+pX
be
bl
bl
@@ -1600,7 +1689,7 @@ bl
bl
bl
bA
-bl
+bn
bY
bY
cm
@@ -1630,12 +1719,12 @@ aE
aE
aX
aj
+aw
bl
bl
bl
bl
-bl
-bl
+aw
aj
bl
bl
@@ -1663,8 +1752,8 @@ ab
af
aj
au
+pX
aE
-aO
aY
aj
aj
@@ -1742,10 +1831,10 @@ aP
ba
aj
bo
+bn
bl
-bl
-bl
-bl
+cs
+bn
bR
aj
ca
@@ -1812,18 +1901,18 @@ aj
aj
aj
aj
-cq
+aG
ab
-ak
+bf
aj
bw
bK
bK
bI
aj
-cq
+aG
ab
-ak
+bf
aj
aj
aj
@@ -1848,20 +1937,20 @@ ab
aj
aj
aj
-cq
+aG
ab
ab
ab
-ak
+bf
al
al
al
al
-cq
+aG
ab
ab
ab
-ak
+bf
al
al
cq
diff --git a/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm b/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm
index e66333ed1d..c1db842a64 100644
--- a/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm
+++ b/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm
@@ -1,2103 +1,2340 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/template_noop,
-/area/template_noop)
-"ab" = (
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"ac" = (
-/obj/effect/decal/remains/human,
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"ad" = (
-/turf/simulated/mineral/ignore_mapgen,
-/area/submap/Blackshuttledown)
-"ae" = (
-/obj/effect/decal/cleanable/blood,
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"af" = (
-/obj/structure/flora/tree/sif,
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"ag" = (
-/obj/structure/table/steel,
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"ah" = (
-/mob/living/simple_mob/humanoid/merc/ranged/smg/sol,
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"ai" = (
-/turf/template_noop,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark6";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"aj" = (
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark0";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"ak" = (
-/turf/template_noop,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark10";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"al" = (
-/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater"
- },
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark0";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"am" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion_l"
- },
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"an" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/rack,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"ao" = (
-/obj/structure/dispenser/oxygen,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"ap" = (
-/obj/machinery/door/airlock/external{
- density = 1;
- frequency = 1331;
- id_tag = "merc_shuttle_outer";
- name = "Ship External Access";
- req_access = list(150)
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aq" = (
-/obj/effect/floor_decal/corner/green/border{
- dir = 9;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"ar" = (
-/obj/effect/floor_decal/corner/green/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/obj/structure/morgue{
- dir = 8;
- icon_state = "morgue1"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"as" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"at" = (
-/obj/machinery/bodyscanner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"au" = (
-/obj/machinery/body_scanconsole,
-/obj/effect/floor_decal/corner/green/border{
- dir = 5;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"av" = (
-/turf/simulated/floor/tiled/steel,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark5";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"aw" = (
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"ax" = (
-/obj/structure/table/steel,
-/obj/item/weapon/gun/projectile/automatic/wt550,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"ay" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"az" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aA" = (
-/obj/machinery/door/airlock/external,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aB" = (
-/obj/effect/floor_decal/corner/green/border{
- dir = 8;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aC" = (
-/obj/machinery/optable,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aD" = (
-/obj/structure/janitorialcart,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"aE" = (
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aF" = (
-/obj/machinery/organ_printer/flesh,
-/obj/effect/floor_decal/corner/green/border{
- dir = 5;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aG" = (
-/turf/simulated/floor/tiled/steel,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark9";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"aH" = (
-/turf/simulated/floor/tiled/steel,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark6";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"aI" = (
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/mob/living/simple_mob/mechanical/viscerator/mercenary,
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"aJ" = (
-/obj/structure/table/steel,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"aK" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aN" = (
-/obj/structure/ore_box,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"aO" = (
-/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aP" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aQ" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloor/full,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aR" = (
-/obj/structure/table/steel,
-/obj/item/weapon/grenade/smokebomb,
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"aS" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aT" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aU" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"aV" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/effect/floor_decal/corner/green/border{
- dir = 10;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aW" = (
-/obj/structure/table/standard,
-/obj/item/weapon/tank/anesthetic,
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aX" = (
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aY" = (
-/obj/structure/table/standard,
-/obj/item/clothing/gloves/sterile,
-/obj/item/clothing/gloves/sterile,
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"aZ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/spray/sterilizine,
-/obj/item/weapon/reagent_containers/spray/sterilizine,
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"ba" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/masks,
-/obj/effect/floor_decal/corner/green/border{
- dir = 6;
- icon_state = "bordercolor"
- },
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"bb" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bc" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bd" = (
-/obj/machinery/door/airlock/security{
- locked = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"be" = (
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled/white,
-/area/submap/Blackshuttledown)
-"bf" = (
-/turf/simulated/floor/tiled/steel,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark10";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"bg" = (
-/obj/machinery/computer/communications,
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bh" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bj" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bk" = (
-/obj/structure/table/steel,
-/obj/item/weapon/material/knife,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bl" = (
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bm" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bn" = (
-/obj/structure/curtain/open/shower/security,
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 1;
- icon_state = "fwindow"
- },
-/obj/structure/window/reinforced/tinted/frosted,
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"bo" = (
-/obj/structure/table/steel,
-/obj/random/toolbox,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bp" = (
-/obj/structure/table/steel,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bq" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/submap/Blackshuttledown)
-"br" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bs" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bt" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bu" = (
-/obj/item/weapon/stool,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bv" = (
-/obj/structure/table/steel,
-/obj/random/projectile,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bw" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -16
- },
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"bx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/submap/Blackshuttledown)
-"by" = (
-/obj/machinery/door/airlock/glass,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bz" = (
-/obj/effect/floor_decal/corner/grey,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bA" = (
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bB" = (
-/obj/structure/table/steel,
-/obj/item/pizzabox,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bC" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bD" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bE" = (
-/obj/machinery/door/airlock/glass,
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bF" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/submap/Blackshuttledown)
-"bH" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "BSD APC";
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bI" = (
-/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bJ" = (
-/obj/machinery/computer/area_atmos,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bK" = (
-/mob/living/simple_mob/humanoid/merc/ranged/laser/poi,
-/turf/template_noop,
-/area/submap/Blackshuttledown)
-"bL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bM" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bN" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper{
- info = "We need to take a short stop. The engine's are in need of minor repairs due to turbulence, should be a week's time. We've got reserve food supplies but pleanty of locale fauna to subsist on too if need be. PCRC is keeping most of there assets near New Reykjavik and locale authorities are more mindful then most to travel in this kind of weather. Our outfit should be at the rendezvous point in less then ten days assuming the upper ecehelon hasn't dropped ties with us yet.";
- name = "Operation Progress/M-53"
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bO" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bP" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bQ" = (
-/obj/structure/closet/toolcloset,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bR" = (
-/obj/machinery/portable_atmospherics/canister/empty/oxygen,
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bS" = (
-/obj/machinery/atmospherics/pipe/tank/oxygen,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"bT" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bU" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bV" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"bW" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bX" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bY" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"bZ" = (
-/obj/machinery/door/airlock,
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"ca" = (
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"cb" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/structure/curtain/open/shower/security,
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 1;
- icon_state = "fwindow"
- },
-/obj/structure/window/reinforced/tinted/frosted,
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"cc" = (
-/obj/structure/table/steel,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"cd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"ce" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/structure/bed,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"cf" = (
-/obj/structure/urinal{
- dir = 4;
- icon_state = "urinal";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"cg" = (
-/obj/structure/toilet{
- dir = 4;
- icon_state = "toilet00"
- },
-/obj/structure/curtain,
-/obj/structure/window/reinforced/tinted/frosted{
- dir = 1;
- icon_state = "fwindow"
- },
-/turf/simulated/floor/tiled/hydro,
-/area/submap/Blackshuttledown)
-"ch" = (
-/obj/structure/table/steel,
-/obj/random/energy,
-/turf/simulated/floor/tiled/steel_grid,
-/area/submap/Blackshuttledown)
-"ci" = (
-/turf/simulated/floor/tiled/yellow,
-/area/submap/Blackshuttledown)
-"cj" = (
-/obj/machinery/light,
-/obj/structure/table/rack,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/head/helmet/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/item/clothing/suit/space,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"ck" = (
-/obj/structure/dispenser/oxygen,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"cl" = (
-/obj/structure/table/woodentable,
-/obj/random/projectile,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"cm" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"cp" = (
-/turf/template_noop,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark5";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"cq" = (
-/turf/template_noop,
-/turf/simulated/shuttle/wall/dark{
- icon_state = "dark9";
- name = "Unknown Shuttle"
- },
-/area/submap/Blackshuttledown)
-"cr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/mob/living/simple_mob/humanoid/merc/melee/sword/poi,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"cs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/mob/living/simple_mob/humanoid/merc/ranged/laser/poi,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-"ct" = (
-/mob/living/simple_mob/humanoid/merc/ranged/smg/sol,
-/turf/simulated/floor/tiled/steel,
-/area/submap/Blackshuttledown)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(3,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-af
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-af
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-aa
-"}
-(4,1,1) = {"
-aa
-ab
-ab
-ab
-af
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-af
-ab
-ad
-ad
-ad
-ab
-ab
-ab
-aa
-"}
-(5,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ad
-ad
-ad
-ab
-af
-ab
-aa
-"}
-(6,1,1) = {"
-aa
-ab
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-af
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(7,1,1) = {"
-aa
-ac
-ab
-ab
-ad
-ad
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aH
-aj
-bq
-bx
-bx
-bG
-aj
-av
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(8,1,1) = {"
-aa
-ab
-ae
-ab
-ad
-ad
-ad
-ab
-ab
-ab
-ab
-ab
-aH
-aj
-bg
-br
-br
-br
-br
-bJ
-aj
-av
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-ab
-ad
-ab
-aa
-"}
-(9,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ad
-ad
-ai
-aj
-aj
-av
-aH
-aj
-bb
-bh
-bl
-bl
-bl
-bl
-bF
-bT
-aj
-av
-aH
-aj
-aj
-cp
-ab
-ab
-ab
-ab
-ad
-ad
-ad
-aa
-"}
-(10,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aQ
-bc
-az
-az
-aK
-aS
-az
-cs
-bU
-aQ
-aj
-aj
-aj
-aj
-aj
-ab
-ab
-ab
-ad
-ad
-ad
-ad
-aa
-"}
-(11,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ac
-af
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-by
-bE
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-af
-ab
-ab
-ab
-af
-ab
-ab
-aa
-"}
-(12,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-aj
-aj
-aw
-aI
-aw
-bd
-bi
-bs
-bh
-bF
-bs
-bL
-bd
-aw
-aI
-aw
-aj
-aj
-aj
-ab
-af
-ab
-ab
-ab
-ab
-ac
-aa
-"}
-(13,1,1) = {"
-aa
-ab
-ab
-ab
-af
-ab
-ab
-ak
-aj
-aj
-ax
-aJ
-aR
-aj
-aL
-bl
-bl
-bl
-bl
-aT
-aj
-bV
-cc
-ch
-aj
-aj
-cq
-ab
-ab
-ae
-ab
-ab
-ab
-ab
-aa
-"}
-(14,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aL
-bl
-bz
-bl
-bl
-aT
-aj
-aj
-aj
-aj
-aj
-aj
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(15,1,1) = {"
-aa
-ab
-ab
-ad
-ab
-ab
-ab
-ab
-aj
-an
-ay
-ay
-ay
-ay
-bh
-bl
-bl
-bl
-bl
-bF
-ay
-ay
-ay
-ay
-cj
-aj
-ab
-ab
-ab
-ab
-ab
-af
-ab
-ab
-aa
-"}
-(16,1,1) = {"
-aa
-ad
-ad
-ad
-ab
-ag
-ag
-ag
-aj
-ao
-az
-aK
-aS
-az
-az
-bt
-bl
-bl
-bt
-bM
-az
-bW
-aS
-cr
-ck
-aj
-ag
-ag
-ag
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(17,1,1) = {"
-aa
-ad
-ad
-ab
-ab
-ag
-ah
-ab
-aj
-aj
-aj
-aL
-aT
-aj
-aj
-aj
-bA
-bA
-aj
-aj
-aj
-aL
-aT
-aj
-aj
-aj
-bK
-ab
-ag
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(18,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ag
-ab
-ab
-ab
-ap
-aA
-aL
-aT
-aj
-bj
-bl
-bl
-bl
-bl
-bN
-aj
-aL
-aT
-aA
-ap
-ab
-ab
-ab
-ag
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(19,1,1) = {"
-aa
-ac
-ab
-ab
-ab
-ag
-ab
-ab
-ab
-ap
-aA
-aM
-aU
-aj
-bk
-bl
-bl
-bl
-bl
-bO
-aj
-bX
-cd
-aA
-ap
-ab
-ab
-ab
-ag
-ab
-ab
-ab
-af
-ab
-aa
-"}
-(20,1,1) = {"
-aa
-ab
-ab
-af
-ab
-ag
-ab
-bK
-aj
-aj
-aj
-aj
-aj
-aj
-bl
-bu
-bB
-bC
-bu
-bl
-aj
-aj
-aj
-aj
-aj
-aj
-ab
-ah
-ag
-ab
-ab
-ac
-ab
-ab
-aa
-"}
-(21,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ag
-ag
-ag
-aj
-aq
-aB
-aB
-aV
-aj
-bm
-bu
-bC
-bC
-bu
-bP
-aj
-bY
-ce
-bY
-bY
-aj
-ag
-ag
-ag
-ab
-ab
-ab
-ad
-ab
-aa
-"}
-(22,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-ar
-aC
-aE
-aW
-aj
-bl
-bu
-bC
-bC
-bu
-ct
-aj
-bl
-bl
-bl
-cl
-aj
-ab
-ab
-ab
-ab
-ab
-ad
-ad
-ab
-aa
-"}
-(23,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-as
-aE
-aE
-aE
-be
-ct
-bl
-bl
-bl
-bl
-bl
-bA
-bl
-bY
-bY
-cm
-aj
-ab
-ab
-ab
-ab
-ad
-ad
-ad
-ab
-aa
-"}
-(24,1,1) = {"
-aa
-ab
-ab
-af
-ab
-ab
-ab
-ab
-aj
-at
-aE
-aE
-aX
-aj
-bl
-bl
-bl
-bl
-bl
-bl
-aj
-bZ
-aj
-aj
-aj
-aj
-ab
-af
-ab
-ad
-ad
-ad
-ad
-ad
-aa
-"}
-(25,1,1) = {"
-aa
-ac
-ab
-ab
-ab
-ab
-ab
-af
-aj
-au
-aE
-aO
-aY
-aj
-aj
-aj
-bD
-bD
-aj
-aj
-aj
-ca
-bw
-cf
-cg
-aj
-cp
-ab
-ab
-ad
-ad
-af
-ab
-ae
-aa
-"}
-(26,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ai
-aj
-aj
-aE
-aE
-aZ
-aj
-bo
-bv
-bl
-bl
-bH
-bQ
-aj
-ca
-ca
-ca
-ca
-aj
-aj
-af
-ac
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(27,1,1) = {"
-aa
-ab
-ab
-ae
-ab
-ac
-ab
-aj
-aj
-aj
-aF
-aP
-ba
-aj
-bo
-bl
-bl
-bl
-bl
-bR
-aj
-bn
-cb
-bn
-bn
-aj
-aj
-ab
-ab
-ab
-ab
-ab
-ab
-ac
-aa
-"}
-(28,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-bp
-bl
-ct
-bl
-bl
-bS
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ab
-ab
-ab
-ab
-ab
-ab
-af
-aa
-"}
-(29,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-af
-ab
-aj
-aj
-aj
-aj
-aG
-ab
-bf
-aj
-aD
-aN
-ci
-bI
-aj
-aG
-ab
-bf
-aj
-aj
-aj
-aj
-ab
-ad
-ad
-ab
-ab
-ab
-ab
-aa
-"}
-(30,1,1) = {"
-aa
-ab
-ad
-ad
-ad
-ab
-ab
-aj
-aj
-aj
-aG
-ab
-ab
-ab
-bf
-al
-al
-al
-al
-aG
-ab
-ab
-ab
-bf
-al
-al
-cq
-ad
-ad
-ad
-ad
-ab
-ab
-ab
-aa
-"}
-(31,1,1) = {"
-aa
-ab
-af
-ad
-ad
-ad
-ab
-ak
-al
-al
-ab
-ab
-ab
-ab
-ab
-am
-am
-am
-am
-ab
-ab
-ab
-af
-ab
-am
-am
-ab
-ad
-ad
-ad
-ad
-ab
-ab
-ab
-aa
-"}
-(32,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-am
-am
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ad
-ad
-ad
-ab
-ab
-af
-ab
-aa
-"}
-(33,1,1) = {"
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-af
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(34,1,1) = {"
-aa
-ab
-ac
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/template_noop)
+"ab" = (
+/turf/template_noop,
+/area/submap/Blackshuttledown)
+"ac" = (
+/obj/effect/decal/remains/human,
+/turf/template_noop,
+/area/submap/Blackshuttledown)
+"ad" = (
+/turf/simulated/mineral/ignore_mapgen,
+/area/submap/Blackshuttledown)
+"ae" = (
+/obj/effect/decal/cleanable/blood,
+/turf/template_noop,
+/area/submap/Blackshuttledown)
+"af" = (
+/obj/structure/flora/tree/sif,
+/turf/template_noop,
+/area/submap/Blackshuttledown)
+"ag" = (
+/obj/effect/alien/weeds,
+/mob/living/simple_mob/animal/space/alien/queen/empress,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"ah" = (
+/mob/living/simple_mob/animal/space/alien/drone,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"ai" = (
+/turf/template_noop,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark6";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"aj" = (
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark0";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"ak" = (
+/turf/template_noop,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark10";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"al" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4;
+ icon_state = "heater"
+ },
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark0";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"am" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_l"
+ },
+/turf/template_noop,
+/area/submap/Blackshuttledown)
+"an" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"ao" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"ap" = (
+/obj/machinery/door/airlock/external{
+ density = 1;
+ frequency = 1331;
+ id_tag = "merc_shuttle_outer";
+ name = "Ship External Access"
+ },
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aq" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"ar" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1;
+ icon_state = "bordercolor"
+ },
+/obj/structure/morgue{
+ dir = 8;
+ icon_state = "morgue1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"as" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1;
+ icon_state = "bordercolor"
+ },
+/obj/structure/table/standard,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"at" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"au" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"av" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark5";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"aw" = (
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"ax" = (
+/obj/structure/closet/crate,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/random/contraband/nofail,
+/obj/random/contraband/nofail,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/item/clothing/suit/space/pirate,
+/obj/item/clothing/head/hgpiratecap,
+/turf/simulated/floor/tiled/red,
+/area/submap/Blackshuttledown)
+"ay" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/mob/living/simple_mob/animal/space/alien/drone,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"az" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/mob/living/simple_mob/animal/space/alien/sentinel/praetorian,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aA" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aB" = (
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aC" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aD" = (
+/obj/effect/alien/weeds,
+/obj/structure/closet/secure_closet/egg/xenomorph,
+/obj/random/maintenance/research,
+/obj/random/material/precious,
+/obj/random/maintenance/cargo,
+/obj/item/stolenpackage,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"aE" = (
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aF" = (
+/obj/machinery/organ_printer/flesh,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aG" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark9";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"aH" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark6";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"aI" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/random/projectile,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aJ" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/structure/closet/crate,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/random/contraband/nofail,
+/obj/random/contraband/nofail,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/item/clothing/under/pirate,
+/turf/simulated/floor/tiled/red,
+/area/submap/Blackshuttledown)
+"aK" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aN" = (
+/obj/structure/closet/crate,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/item/stolenpackage,
+/obj/random/contraband/nofail,
+/obj/random/contraband/nofail,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/item/clothing/head/helmet/space/pirate,
+/obj/item/weapon/melee/energy/sword/pirate,
+/turf/simulated/floor/tiled/red,
+/area/submap/Blackshuttledown)
+"aO" = (
+/mob/living/simple_mob/animal/space/alien/queen/empress/mother,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aP" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aQ" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor/full,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aS" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aT" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aU" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"aV" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aW" = (
+/obj/structure/table/standard,
+/obj/item/weapon/tank/anesthetic,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aX" = (
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aY" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/sterile,
+/obj/item/clothing/gloves/sterile,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"aZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/item/weapon/reagent_containers/spray/sterilizine,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"ba" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/masks,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6;
+ icon_state = "bordercolor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"bb" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bc" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bd" = (
+/obj/machinery/door/airlock/security{
+ locked = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"be" = (
+/obj/machinery/door/airlock/glass,
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"bf" = (
+/turf/simulated/floor/tiled/steel,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark10";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"bg" = (
+/obj/machinery/computer/communications,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bh" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bj" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bk" = (
+/obj/structure/table/steel,
+/obj/item/weapon/material/knife,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bl" = (
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bm" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bn" = (
+/obj/structure/curtain/open/shower/security,
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1;
+ icon_state = "fwindow"
+ },
+/obj/structure/window/reinforced/tinted/frosted,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"bo" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bp" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/plating,
+/area/submap/Blackshuttledown)
+"br" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/obj/item/weapon/cell/super,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bs" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bt" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bu" = (
+/obj/item/weapon/stool,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bv" = (
+/obj/structure/table/steel,
+/obj/random/toolbox,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bw" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -16
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"bx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/plating,
+/area/submap/Blackshuttledown)
+"by" = (
+/obj/random/maintenance/foodstuff,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bz" = (
+/mob/living/simple_mob/humanoid/merc/ranged/smg/sol{
+ faction = "neutral"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"bA" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bB" = (
+/obj/structure/table/steel,
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bC" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bD" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bE" = (
+/obj/effect/alien/weeds,
+/obj/structure/closet/secure_closet/egg/xenomorph,
+/obj/random/maintenance/security,
+/obj/random/material/precious,
+/obj/random/maintenance/cargo,
+/obj/item/stolenpackage,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/plating,
+/area/submap/Blackshuttledown)
+"bH" = (
+/obj/effect/alien/weeds,
+/obj/item/frame/apc,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bI" = (
+/mob/living/simple_mob/animal/space/alien/sentinel/praetorian,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bJ" = (
+/obj/machinery/computer/area_atmos,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bK" = (
+/obj/machinery/door/airlock/glass,
+/obj/machinery/door/blast/regular{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bN" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bO" = (
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bP" = (
+/obj/machinery/light,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bQ" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bR" = (
+/obj/machinery/portable_atmospherics/canister/empty/oxygen,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bS" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"bT" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bU" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/mob/living/simple_mob/animal/space/alien/drone,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bW" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bX" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bY" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"bZ" = (
+/obj/machinery/door/airlock,
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"ca" = (
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"cb" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/structure/curtain/open/shower/security,
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1;
+ icon_state = "fwindow"
+ },
+/obj/structure/window/reinforced/tinted/frosted,
+/mob/living/simple_mob/humanoid/merc/ranged/smg/sol{
+ faction = "neutral"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"cc" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/structure/bed,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"cd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"ce" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/bed,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"cf" = (
+/obj/structure/urinal{
+ dir = 4;
+ icon_state = "urinal";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"cg" = (
+/obj/structure/toilet{
+ dir = 4;
+ icon_state = "toilet00"
+ },
+/obj/structure/curtain,
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 1;
+ icon_state = "fwindow"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/submap/Blackshuttledown)
+"ch" = (
+/obj/structure/bed,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"ci" = (
+/obj/structure/alien/wall,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark0";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"cj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"ck" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"cl" = (
+/obj/structure/table/woodentable,
+/obj/random/projectile,
+/obj/random/maintenance/security,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"cm" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"cp" = (
+/turf/template_noop,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark5";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"cq" = (
+/turf/template_noop,
+/turf/simulated/shuttle/wall/dark{
+ icon_state = "dark9";
+ name = "Unknown Shuttle"
+ },
+/area/submap/Blackshuttledown)
+"cr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"cs" = (
+/mob/living/simple_mob/humanoid/merc/ranged/laser/poi{
+ faction = "neutral"
+ },
+/turf/simulated/floor/tiled/white,
+/area/submap/Blackshuttledown)
+"ct" = (
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"hS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/mob/living/simple_mob/animal/space/alien/drone,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"iF" = (
+/obj/effect/floor_decal/borderfloor,
+/mob/living/simple_mob/animal/space/alien/drone,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"mZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/submap/Blackshuttledown)
+"so" = (
+/obj/structure/table/steel,
+/obj/random/toolbox,
+/obj/effect/alien/weeds,
+/obj/item/weapon/module/power_control,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"uQ" = (
+/obj/effect/alien/weeds,
+/obj/structure/closet/secure_closet/egg/xenomorph,
+/obj/random/maintenance/security,
+/obj/random/material/precious,
+/obj/random/maintenance/cargo,
+/obj/random/rigsuit/chancetofail,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"BR" = (
+/obj/effect/alien/weeds,
+/obj/structure/closet/secure_closet/egg/xenomorph,
+/obj/random/maintenance/research,
+/obj/random/material/precious,
+/obj/random/maintenance/cargo,
+/obj/random/rigsuit/chancetofail,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"Gj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"JN" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/mob/living/simple_mob/animal/space/alien/drone,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"KB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"NI" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/alien/weeds,
+/obj/machinery/button/remote/blast_door{
+ id = "blueshuttle"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"PE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/red,
+/area/submap/Blackshuttledown)
+"Ql" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"Ri" = (
+/mob/living/simple_mob/humanoid/pirate/armored,
+/turf/simulated/floor/tiled/yellow,
+/area/submap/Blackshuttledown)
+"TF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/alien/weeds,
+/obj/structure/alien/wall,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"Vz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/mob/living/simple_mob/animal/space/alien/drone,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+"Ym" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/red,
+/area/submap/Blackshuttledown)
+"Yy" = (
+/obj/structure/table/steel,
+/obj/random/projectile,
+/obj/effect/alien/weeds,
+/turf/simulated/floor/tiled/steel,
+/area/submap/Blackshuttledown)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(3,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+af
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+af
+ab
+ab
+ab
+ab
+ab
+ab
+ad
+ab
+ab
+ab
+ab
+aa
+"}
+(4,1,1) = {"
+aa
+ab
+ab
+ab
+af
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+af
+ab
+ad
+ad
+ad
+ab
+ab
+ab
+aa
+"}
+(5,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ad
+ad
+ad
+ad
+ab
+af
+ab
+aa
+"}
+(6,1,1) = {"
+aa
+ab
+ab
+ab
+ad
+ab
+ab
+ab
+ab
+af
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(7,1,1) = {"
+aa
+ac
+ab
+ab
+ad
+ad
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aH
+aj
+bq
+bx
+bx
+bG
+aj
+av
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(8,1,1) = {"
+aa
+ab
+ae
+ab
+ad
+ad
+ad
+ab
+ab
+ab
+ab
+ab
+aH
+aj
+bg
+br
+aI
+aI
+NI
+bJ
+aj
+av
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+ab
+ad
+ab
+aa
+"}
+(9,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ad
+ad
+ai
+aj
+aj
+av
+aH
+aj
+bb
+JN
+ct
+ct
+ct
+ct
+Vz
+bT
+aj
+av
+aH
+aj
+aj
+cp
+ab
+ab
+ab
+ab
+ad
+ad
+ad
+aa
+"}
+(10,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aj
+aj
+aj
+aj
+aQ
+bc
+cr
+az
+aK
+aS
+az
+cr
+bU
+aQ
+aj
+aj
+aj
+aj
+aj
+ab
+ab
+ab
+ad
+ad
+ad
+ad
+aa
+"}
+(11,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ac
+af
+aj
+aj
+aj
+aj
+aj
+aj
+ci
+ci
+ci
+aL
+aT
+ci
+ci
+ci
+ci
+aj
+aj
+aj
+aj
+aj
+af
+ab
+ab
+ab
+af
+ab
+ab
+aa
+"}
+(12,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aj
+aj
+PE
+mZ
+Ym
+bd
+bi
+bs
+bh
+bF
+Gj
+bL
+bd
+aw
+Ri
+aw
+aj
+aj
+aj
+ab
+af
+ab
+ab
+ab
+ab
+ac
+aa
+"}
+(13,1,1) = {"
+aa
+ab
+ab
+ab
+af
+ab
+ab
+ak
+aj
+aj
+aN
+aJ
+ax
+ci
+aL
+ct
+ag
+ct
+ct
+aT
+ci
+ch
+cc
+ch
+aj
+aj
+cq
+ab
+ab
+ae
+ab
+ab
+ab
+ab
+aa
+"}
+(14,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aj
+ci
+ci
+ci
+ci
+TF
+ct
+ct
+bO
+ct
+aT
+ci
+bq
+bx
+bG
+ci
+aj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(15,1,1) = {"
+aa
+ab
+ab
+ad
+ab
+ab
+ab
+ab
+aj
+an
+ay
+aR
+aR
+aR
+bh
+bI
+ct
+ct
+bI
+bF
+aR
+aR
+Gj
+Gj
+cj
+aj
+ab
+ab
+ab
+ab
+ab
+af
+ab
+ab
+aa
+"}
+(16,1,1) = {"
+aa
+ad
+ad
+ad
+ab
+ab
+ab
+ab
+aj
+ao
+KB
+Ql
+aS
+cr
+KB
+bt
+ct
+ct
+bt
+bM
+cr
+bW
+aS
+hS
+ck
+aj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(17,1,1) = {"
+aa
+ad
+ad
+ab
+ab
+ab
+ab
+ab
+aj
+aj
+aj
+aL
+iF
+ci
+ci
+ci
+bA
+bA
+ci
+ci
+ci
+bV
+bN
+aj
+aj
+aj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(18,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+aA
+aL
+aT
+ci
+bj
+ah
+ct
+ct
+ah
+bO
+ci
+aL
+aT
+aA
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(19,1,1) = {"
+aa
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ap
+aA
+aM
+aU
+ci
+bk
+ct
+bO
+ct
+bO
+bO
+ci
+bX
+cd
+aA
+ap
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+af
+ab
+aa
+"}
+(20,1,1) = {"
+aa
+ab
+ab
+af
+ab
+ab
+ab
+ab
+aj
+aj
+aj
+aj
+aj
+ci
+ah
+bu
+bB
+by
+bu
+ah
+ci
+ci
+ci
+aj
+aj
+aj
+ab
+ab
+ab
+ab
+ab
+ac
+ab
+ab
+aa
+"}
+(21,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aq
+aB
+aB
+aV
+ci
+bm
+bO
+bO
+bC
+bu
+bP
+ci
+bY
+ce
+bY
+bY
+aj
+ab
+ab
+ab
+ab
+ab
+ab
+ad
+ab
+aa
+"}
+(22,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+ar
+aC
+aE
+aW
+ci
+ct
+bu
+bC
+Yy
+bu
+bO
+ci
+bl
+cl
+bl
+cl
+aj
+ab
+ab
+ab
+ab
+ab
+ad
+ad
+ab
+aa
+"}
+(23,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+as
+bz
+aE
+aE
+be
+ct
+bI
+ct
+ct
+bI
+ct
+bK
+bl
+bY
+bY
+cm
+aj
+ab
+ab
+ab
+ab
+ad
+ad
+ad
+ab
+aa
+"}
+(24,1,1) = {"
+aa
+ab
+ab
+af
+ab
+ab
+ab
+ab
+aj
+at
+aE
+aE
+aX
+aj
+bO
+ct
+ct
+ct
+bO
+ct
+ci
+bZ
+aj
+aj
+aj
+aj
+ab
+af
+ab
+ad
+ad
+ad
+ad
+ad
+aa
+"}
+(25,1,1) = {"
+aa
+ac
+ab
+ab
+ab
+ab
+ab
+af
+aj
+au
+cs
+aE
+aY
+aj
+ci
+ci
+bD
+bD
+ci
+ci
+aj
+ca
+bw
+cf
+cg
+aj
+cp
+ab
+ab
+ad
+ad
+af
+ab
+ae
+aa
+"}
+(26,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ai
+aj
+aj
+aE
+aE
+aZ
+aj
+bv
+so
+ct
+ct
+bH
+bQ
+aj
+ca
+ca
+ca
+ca
+aj
+aj
+af
+ac
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(27,1,1) = {"
+aa
+ab
+ab
+ae
+ab
+ac
+ab
+aj
+aj
+aj
+aF
+aP
+ba
+aj
+bo
+bI
+ct
+ct
+bI
+bR
+aj
+bn
+cb
+bn
+bn
+aj
+aj
+ab
+ab
+ab
+ab
+ab
+ab
+ac
+aa
+"}
+(28,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+bp
+ct
+ct
+aO
+ct
+bS
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ab
+ab
+ab
+ab
+ab
+ab
+af
+aa
+"}
+(29,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+af
+ab
+aj
+aj
+aj
+aj
+aG
+ab
+bf
+aj
+bE
+BR
+uQ
+aD
+aj
+aG
+ab
+bf
+aj
+aj
+aj
+aj
+ab
+ad
+ad
+ab
+ab
+ab
+ab
+aa
+"}
+(30,1,1) = {"
+aa
+ab
+ad
+ad
+ad
+ab
+ab
+aj
+aj
+aj
+aG
+ab
+ab
+ab
+bf
+al
+al
+al
+al
+aG
+ab
+ab
+ab
+bf
+al
+al
+cq
+ad
+ad
+ad
+ad
+ab
+ab
+ab
+aa
+"}
+(31,1,1) = {"
+aa
+ab
+af
+ad
+ad
+ad
+ab
+ak
+al
+al
+ab
+ab
+ab
+ab
+ab
+am
+am
+am
+am
+ab
+ab
+ab
+af
+ab
+am
+am
+ab
+ad
+ad
+ad
+ad
+ab
+ab
+ab
+aa
+"}
+(32,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+am
+am
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ad
+ad
+ad
+ab
+ab
+af
+ab
+aa
+"}
+(33,1,1) = {"
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+af
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(34,1,1) = {"
+aa
+ab
+ac
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/maps/submaps/surface_submaps/wilderness/derelictengine.dmm b/maps/submaps/surface_submaps/wilderness/derelictengine.dmm
index 29330f2c7c..4c6487f2fb 100644
--- a/maps/submaps/surface_submaps/wilderness/derelictengine.dmm
+++ b/maps/submaps/surface_submaps/wilderness/derelictengine.dmm
@@ -73,6 +73,7 @@
/obj/effect/floor_decal/techfloor/orange{
dir = 1
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/floor/plating,
/area/submap/DerelictEngine)
"bk" = (
@@ -238,6 +239,10 @@
/obj/random/trash,
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
+"ez" = (
+/obj/item/weapon/stock_parts/capacitor,
+/turf/simulated/shuttle/floor/alien,
+/area/submap/DerelictEngine)
"eR" = (
/obj/effect/floor_decal/techfloor{
dir = 1
@@ -367,6 +372,7 @@
pixel_x = 7;
pixel_y = 10
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"hb" = (
@@ -461,6 +467,13 @@
dir = 4
},
/obj/item/weapon/cell/device/weapon/recharge/alien,
+/obj/structure/prop/alien/dispenser{
+ pixel_x = -27
+ },
+/turf/simulated/shuttle/floor/alienplating/external,
+/area/submap/DerelictEngine)
+"iu" = (
+/obj/random/mob/robotic/hivebot,
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
"iz" = (
@@ -475,6 +488,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"iB" = (
@@ -540,7 +554,7 @@
/obj/structure/table/alien,
/obj/item/weapon/gun/energy/alien,
/obj/item/prop/alien/phasecoil,
-/obj/item/clothing/suit/armor/alien/tank,
+/obj/item/clothing/suit/armor/alien,
/obj/item/stack/material/diamond{
amount = 15
},
@@ -622,13 +636,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"lr" = (
-/obj/structure/prop/alien/dispenser{
- pixel_x = -27
- },
-/obj/effect/floor_decal/techfloor{
+/obj/structure/loot_pile/surface/alien/end,
+/obj/effect/floor_decal/techfloor/orange{
dir = 4
},
-/turf/simulated/shuttle/floor/alienplating/external,
+/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"ls" = (
/obj/item/weapon/surgical/circular_saw/alien,
@@ -641,6 +653,13 @@
/obj/effect/gibspawner/human,
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
+"lE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/radiation,
+/turf/simulated/shuttle/floor/alienplating/external,
+/area/submap/DerelictEngine)
"lV" = (
/obj/effect/floor_decal/techfloor{
dir = 9
@@ -687,6 +706,18 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
+"mE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/weapon/stock_parts/micro_laser,
+/turf/simulated/shuttle/floor/alienplating/external,
+/area/submap/DerelictEngine)
+"mI" = (
+/obj/effect/decal/remains/xeno,
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,
+/turf/simulated/shuttle/floor/alien/blue,
+/area/submap/DerelictEngine)
"mM" = (
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -981,6 +1012,23 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
+"rh" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 4
+ },
+/obj/random/mob/robotic/hivebot,
+/turf/simulated/floor/tiled/techfloor,
+/area/submap/DerelictEngine)
+"rl" = (
+/obj/random/mob/robotic/hivebot,
+/turf/simulated/floor/greengrid,
+/area/submap/DerelictEngine)
"rI" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 4
@@ -1006,6 +1054,11 @@
/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline,
/turf/simulated/shuttle/floor/alien/blue,
/area/submap/DerelictEngine)
+"sn" = (
+/obj/random/trash,
+/obj/random/mob/robotic/hivebot,
+/turf/simulated/shuttle/floor/alienplating/external,
+/area/submap/DerelictEngine)
"sq" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 9
@@ -1014,7 +1067,7 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/port_gen/pacman,
+/obj/structure/frame,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"st" = (
@@ -1088,6 +1141,7 @@
/obj/effect/floor_decal/techfloor{
dir = 9
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/shuttle/floor/alien/blue,
/area/submap/DerelictEngine)
"tB" = (
@@ -1385,6 +1439,7 @@
/obj/effect/floor_decal/techfloor{
dir = 6
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"xQ" = (
@@ -1442,7 +1497,7 @@
dir = 10
},
/obj/item/prop/alien/junk,
-/obj/item/device/perfect_tele/alien/bluefo,
+/obj/item/weapon/implantcase/surge,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"yB" = (
@@ -1574,7 +1629,7 @@
/obj/effect/floor_decal/techfloor/orange{
dir = 8
},
-/obj/item/weapon/storage/belt/utility/alien,
+/obj/item/weapon/storage/belt/utility/alien/full,
/obj/item/weapon/paper/alien{
icon_state = "alienpaper_words";
info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]"
@@ -1709,6 +1764,7 @@
/obj/effect/floor_decal/techfloor{
dir = 5
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/shuttle/floor/alien/blue,
/area/submap/DerelictEngine)
"Cz" = (
@@ -1868,6 +1924,13 @@
},
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
+"FC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/random/mob/robotic/hivebot,
+/turf/simulated/shuttle/floor/alienplating/external,
+/area/submap/DerelictEngine)
"FE" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 9
@@ -1931,7 +1994,7 @@
/obj/effect/floor_decal/techfloor/hole/right{
dir = 8
},
-/obj/random/mob/robotic/hivebot,
+/mob/living/simple_mob/mechanical/hivebot/support/commander,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"GU" = (
@@ -2261,6 +2324,10 @@
/obj/effect/decal/cleanable/molten_item,
/turf/simulated/floor/plating,
/area/submap/DerelictEngine)
+"Ma" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,
+/turf/simulated/shuttle/floor/alien/blue,
+/area/submap/DerelictEngine)
"MD" = (
/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid,
/obj/effect/floor_decal/techfloor{
@@ -2305,10 +2372,10 @@
/obj/structure/closet/alien,
/obj/item/prop/alien/junk,
/obj/item/prop/alien/junk,
-/obj/item/shield_projector/rectangle/weak,
/obj/item/stack/material/phoron{
amount = 10
},
+/obj/item/device/perfect_tele/alien,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"Nm" = (
@@ -2499,6 +2566,13 @@
/obj/item/clothing/under/psysuit,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
+"Qm" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/random/mob/robotic/hivebot,
+/turf/simulated/shuttle/floor/alienplating/external,
+/area/submap/DerelictEngine)
"Qv" = (
/turf/simulated/floor/outdoors/dirt/sif/planetuse,
/area/template_noop)
@@ -2603,7 +2677,7 @@
"RU" = (
/obj/structure/closet/alien,
/obj/item/weapon/weldingtool/alien,
-/obj/item/weapon/storage/belt/utility/alien/full,
+/obj/item/weapon/storage/belt/utility/alien,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"RW" = (
@@ -2675,6 +2749,19 @@
},
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
+"TK" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 4
+ },
+/obj/random/mob/robotic/hivebot,
+/turf/simulated/floor/tiled/techfloor,
+/area/submap/DerelictEngine)
"TO" = (
/obj/effect/floor_decal/techfloor/orange/corner,
/obj/structure/cable/green{
@@ -2694,6 +2781,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"TV" = (
@@ -2873,6 +2961,7 @@
icon_state = "alienpaper_words";
info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]"
},
+/obj/item/weapon/stock_parts/matter_bin,
/turf/simulated/shuttle/floor/alien,
/area/submap/DerelictEngine)
"WB" = (
@@ -2983,7 +3072,7 @@
/obj/effect/floor_decal/techfloor/orange{
dir = 8
},
-/obj/item/clothing/suit/armor/alien,
+/obj/item/weapon/circuitboard/pacman,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"Yr" = (
@@ -3027,6 +3116,7 @@
pixel_x = -9;
pixel_y = -7
},
+/obj/random/mob/robotic/hivebot,
/turf/simulated/floor/tiled/techfloor,
/area/submap/DerelictEngine)
"YI" = (
@@ -3044,6 +3134,10 @@
},
/turf/simulated/shuttle/floor/alienplating/external,
/area/submap/DerelictEngine)
+"YW" = (
+/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/emp,
+/turf/simulated/shuttle/floor/alien,
+/area/submap/DerelictEngine)
"Zh" = (
/obj/effect/floor_decal/techfloor/orange{
dir = 1
@@ -3391,7 +3485,7 @@ YJ
YJ
YJ
YJ
-YJ
+lE
YJ
xs
fO
@@ -3443,7 +3537,7 @@ je
iB
iB
je
-je
+iu
gy
bp
TB
@@ -3575,7 +3669,7 @@ zH
fO
fO
AX
-HS
+rl
jD
fO
gy
@@ -3596,7 +3690,7 @@ QT
YJ
YJ
YJ
-YJ
+Qm
Um
fO
fO
@@ -3722,7 +3816,7 @@ tx
DJ
QT
fO
-LG
+Ma
VA
fO
cH
@@ -3839,7 +3933,7 @@ je
BR
je
je
-je
+iu
je
je
je
@@ -3851,7 +3945,7 @@ yg
iO
WV
je
-je
+iu
Pw
gy
or
@@ -3918,7 +4012,7 @@ ql
JX
UV
gy
-wM
+rh
Yp
fO
Uv
@@ -4035,7 +4129,7 @@ cQ
BR
je
je
-je
+iu
je
je
je
@@ -4047,7 +4141,7 @@ iB
je
eq
je
-eq
+sn
BG
gy
or
@@ -4084,7 +4178,7 @@ je
BR
Wk
iB
-iB
+ez
iB
Iv
pF
@@ -4114,7 +4208,7 @@ Ct
tj
zk
fO
-aG
+mI
CV
fO
DA
@@ -4282,7 +4376,7 @@ Fd
il
Vb
xQ
-lr
+FC
vC
fO
fO
@@ -4316,7 +4410,7 @@ gy
ms
ht
Yl
-rg
+TK
jU
vl
iQ
@@ -4409,7 +4503,7 @@ SF
fO
gy
yi
-yi
+lr
gy
zn
je
@@ -4420,7 +4514,7 @@ TV
Yu
Yl
je
-iB
+YW
iB
je
je
@@ -4468,7 +4562,7 @@ Vb
Vb
Vb
Vb
-Vb
+mE
Vb
Vb
Ki
diff --git a/maps/tether/submaps/tether_centcom.dmm b/maps/tether/submaps/tether_centcom.dmm
index c305c472e9..69905fa72b 100644
--- a/maps/tether/submaps/tether_centcom.dmm
+++ b/maps/tether/submaps/tether_centcom.dmm
@@ -8430,6 +8430,7 @@
pixel_x = -24;
pixel_y = 25
},
+/mob/living/simple_mob/vore/alienanimals/catslug/custom/pilotslug,
/turf/simulated/floor/tiled,
/area/centcom/holding)
"HK" = (
diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm
index ea409adb7d..d09d479a73 100644
--- a/maps/tether/tether-05-station1.dmm
+++ b/maps/tether/tether-05-station1.dmm
@@ -151,16 +151,11 @@
/turf/simulated/wall/r_wall,
/area/engineering/engine_room)
"aao" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/white,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
/area/tether/exploration/hallway)
+<<<<<<< HEAD
"aap" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -180,6 +175,11 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled/white,
/area/tether/station/dock_two)
+=======
+"aaq" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/station/exploration)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"aar" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -372,6 +372,22 @@
},
/turf/simulated/floor,
/area/engineering/engine_smes)
+<<<<<<< HEAD
+=======
+"aaM" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/hole{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"aaN" = (
/turf/simulated/wall/r_wall,
/area/storage/tech)
@@ -510,6 +526,71 @@
"abk" = (
/turf/simulated/floor/reinforced,
/area/engineering/engine_room)
+<<<<<<< HEAD
+=======
+"abl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/atrium)
+"abm" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/atrium)
+"abn" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/teleporter/departing)
+"abo" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"abp" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"abq" = (
/obj/machinery/door/airlock/maintenance_hatch{
frequency = 1379;
@@ -864,9 +945,7 @@
pixel_y = -24
},
/obj/structure/table/standard,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -1486,6 +1565,7 @@
})
>>>>>>> bb3cfe95f0... Merge pull request #10765 from Very-Soft/messeswithstuff
"adc" = (
+<<<<<<< HEAD
/obj/effect/floor_decal/borderfloor{
dir = 9
},
@@ -1501,6 +1581,24 @@
/obj/structure/closet/secure_closet/pilot,
/turf/simulated/floor/tiled,
/area/tether/exploration/pilot_office)
+=======
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
+"add" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/entrance{
+ name = "\improper Telecomms Entrance"
+ })
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ade" = (
/obj/machinery/atmospherics/portables_connector,
/turf/simulated/floor/tiled,
@@ -2084,6 +2182,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/tcommsat/chamber)
<<<<<<< HEAD
+<<<<<<< HEAD
>>>>>>> 82938b4671b... Merge pull request #12192 from Heroman3003/accesses-and-buttons
=======
"adO" = (
@@ -2109,6 +2208,28 @@
/turf/simulated/floor/tiled/white,
/area/tether/station/dock_two)
>>>>>>> 2b91289349e... Merge pull request #12326 from Heroman3003/tetherfix2
+=======
+"adP" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/monotile,
+/area/quartermaster/foyer)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"adQ" = (
/obj/machinery/computer/power_monitor{
dir = 4;
@@ -3884,17 +4005,24 @@
/turf/simulated/floor/tiled/techmaint,
/area/engineering/storage)
"ahS" = (
-/obj/machinery/sleeper{
- dir = 4
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_outer";
+ locked = 1;
+ name = "EVA External Access";
+ req_one_access = list()
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "eva_airlock";
+ name = "exterior access button";
+ pixel_y = 32
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/hallway)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"ahT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -3989,28 +4117,27 @@
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"aii" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light_switch{
+/obj/structure/table/rack{
dir = 8;
- pixel_x = 24
+ layer = 2.9
},
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/hallway)
+/obj/machinery/door/window/brigdoor/westleft{
+ req_access = list(5)
+ },
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"aij" = (
/turf/simulated/wall/r_wall,
/area/engineering/break_room)
@@ -4235,32 +4362,36 @@
/turf/simulated/floor,
/area/storage/tech)
"aiJ" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/hallway)
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"aiL" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 9
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_inner";
+ locked = 1;
+ name = "EVA Internal Access";
+ req_one_access = list()
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/hallway)
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "eva_airlock";
+ name = "interior access button";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"aiM" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_airlock)
@@ -4285,18 +4416,11 @@
/turf/simulated/floor,
/area/engineering/storage)
"aiU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/hallway)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"aiV" = (
/obj/machinery/space_heater,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -4309,30 +4433,24 @@
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
"aiZ" = (
-/obj/machinery/door/airlock/glass_science{
- name = "Exploration Triage Room";
- req_one_access = list(19,43,67)
+/obj/machinery/suit_cycler/mining{
+ req_access = null
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/hallway)
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"ajb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
@@ -4342,12 +4460,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"ajd" = (
@@ -4367,8 +4481,11 @@
},
/area/tcommsat/chamber)
"ajj" = (
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"ajp" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -4378,14 +4495,14 @@
/turf/simulated/wall/r_wall,
/area/engineering/engine_room)
"ajq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 6
- },
+/obj/structure/table/reinforced,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"ajr" = (
/obj/machinery/ntnet_relay,
/turf/simulated/floor/tiled/dark{
@@ -4417,37 +4534,28 @@
},
/area/tcommsat/chamber)
"ajv" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_inner";
+ locked = 1;
+ name = "EVA Internal Access";
+ req_one_access = list()
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"ajw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eng_starboard_pump"
},
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin,
-/obj/item/device/taperecorder,
-/obj/item/weapon/pen,
-/obj/effect/floor_decal/corner/green/border{
- dir = 5
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"ajx" = (
/obj/machinery/telecomms/server/presets/medical,
/turf/simulated/floor/tiled/dark{
@@ -4467,6 +4575,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
+<<<<<<< HEAD
"ajz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -4481,6 +4590,8 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/pathfinder_office)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ajA" = (
/obj/machinery/telecomms/server/presets/common,
/turf/simulated/floor/tiled/dark{
@@ -4506,20 +4617,12 @@
/turf/simulated/floor,
/area/engineering/storage)
"ajE" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/machinery/suit_cycler/engineering{
+ req_access = null
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"ajF" = (
/turf/simulated/floor/carpet,
/area/engineering/break_room)
@@ -4603,9 +4706,6 @@
temperature = 80
},
/area/tcommsat/chamber)
-"ajY" = (
-/turf/simulated/wall,
-/area/tether/exploration/equipment)
"ajZ" = (
/obj/item/weapon/stock_parts/manipulator,
/obj/item/weapon/stock_parts/matter_bin,
@@ -4623,60 +4723,20 @@
/obj/structure/table/steel,
/turf/simulated/floor,
/area/storage/tech)
-"akc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
-"akd" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 11;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"ake" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized/full{
- id = "pathfinder_office"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/tether/exploration/pathfinder_office)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Public Emergency Triage";
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tether/exploration/hallway)
"akf" = (
/obj/structure/cable/green{
d2 = 4;
@@ -4687,23 +4747,17 @@
name = "west bump";
pixel_x = -28
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 6
},
-/obj/effect/floor_decal/corner/green/bordercorner2{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 10
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
@@ -5071,14 +5125,12 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"alj" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/landmark/start{
- name = "Field Medic"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
"alk" = (
/obj/structure/table/steel,
/obj/item/device/integrated_electronics/debugger{
@@ -5090,17 +5142,14 @@
/turf/simulated/floor,
/area/storage/tech)
"all" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
},
-/obj/effect/landmark/start{
- name = "Pilot"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
"alm" = (
/turf/simulated/floor/tiled,
/area/engineering/gravity_lobby)
@@ -5404,13 +5453,6 @@
/obj/vehicle/train/trolley,
/turf/simulated/floor/tiled/monotile,
/area/engineering/hallway)
-"alV" = (
-/obj/structure/table/woodentable,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"alW" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/effect/floor_decal/steeldecal/steel_decals_central6{
@@ -5428,33 +5470,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engineering_monitoring)
-"alY" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"alZ" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/circuitboard/rdserver{
@@ -5571,14 +5586,14 @@
/turf/simulated/floor/tiled,
/area/engineering/hallway)
"ami" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/equipment)
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"amj" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
@@ -5610,21 +5625,6 @@
/obj/item/clothing/glasses/meson,
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"amm" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
"amn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -5681,19 +5681,21 @@
/turf/simulated/floor/carpet,
/area/engineering/foyer)
"amy" = (
-/obj/machinery/shower{
- pixel_y = 16
+/obj/machinery/gateway{
+ density = 0;
+ dir = 5;
+ layer = 4.1;
+ plane = -25
},
-/obj/structure/curtain/open/shower,
-/obj/item/weapon/soap/nanotrasen,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
},
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/pilot_office)
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"amz" = (
/obj/machinery/telecomms/server/presets/unused,
/turf/simulated/floor/tiled/dark{
@@ -5745,18 +5747,6 @@
"amK" = (
/turf/simulated/floor,
/area/storage/tech)
-"amM" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Pathfinder's Office"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"amO" = (
/obj/structure/dispenser,
/turf/simulated/floor,
@@ -5765,17 +5755,6 @@
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
-"amT" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"amU" = (
/obj/machinery/power/apc{
alarms_hidden = 1;
@@ -5794,6 +5773,7 @@
name = "Shuttle Blast Doors"
>>>>>>> de1f9190b8b... Merge pull request #12143 from Very-Soft/returntotether
},
+<<<<<<< HEAD
/obj/structure/cable,
/turf/simulated/floor/tiled/eris/white,
/area/shuttle/medivac/general)
@@ -5819,6 +5799,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/pathfinder_office)
+=======
+/turf/simulated/floor/plating,
+/area/shuttle/medivac/cockpit)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"amY" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/firstaid/regular,
@@ -5901,30 +5885,11 @@
/turf/simulated/floor/plating,
/area/storage/tech)
"anc" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/expedition_medical,
-/obj/item/clothing/head/helmet/space/void/expedition_medical,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/area/ai_monitored/storage/eva)
"and" = (
/obj/machinery/computer/atmoscontrol{
dir = 4
@@ -5974,6 +5939,12 @@
/obj/machinery/vending/assist,
/turf/simulated/floor,
/area/storage/tech)
+"ans" = (
+/obj/item/weapon/storage/box/nifsofts_pilot,
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"ant" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6830,12 +6801,19 @@
name = "\improper Telecomms Solar Field"
})
"apf" = (
+<<<<<<< HEAD
/obj/machinery/gateway{
dir = 5
},
/turf/simulated/floor/tiled/dark,
/area/gateway)
>>>>>>> 45e710fa51... Merge pull request #10235 from Enzo-Leon/asteroid
+=======
+/obj/machinery/camera/network/command,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"apg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -7319,12 +7297,15 @@
/turf/simulated/floor/tiled,
/area/engineering/break_room)
"apY" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/floor_decal/industrial/outline{
+ color = "#5c00ad"
},
-/turf/simulated/floor,
-/area/maintenance/station/exploration)
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/suit_cycler/exploration,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"aqa" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/tiled,
@@ -8047,31 +8028,15 @@
/turf/simulated/floor/tiled/steel_grid,
/area/engineering/break_room)
"ash" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/machinery/suit_cycler/medical{
+ req_access = null
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/light{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"ask" = (
/obj/structure/cable/green{
d1 = 2;
@@ -8228,28 +8193,14 @@
/turf/simulated/floor/tiled,
/area/engineering/workshop)
"asF" = (
-/obj/structure/table/rack/shelf,
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 5
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/area/ai_monitored/storage/eva)
"asG" = (
/turf/simulated/floor/airless,
/area/space)
@@ -8307,9 +8258,6 @@
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
-"asP" = (
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
"asS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -8506,18 +8454,13 @@
/turf/simulated/floor,
/area/quartermaster/delivery)
"atx" = (
-/obj/machinery/door/airlock/multi_tile/metal{
- dir = 2;
- name = "Gateway Prep Room"
- },
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "PubPrepFront";
- layer = 3.3;
- name = "Gateway Prep Shutter"
- },
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Gateway/EVA Prep Room";
+ req_access = list(18,19,43,67)
+ },
+/turf/simulated/floor/tiled/steel_ridged,
/area/gateway/prep_room)
"atA" = (
/obj/effect/floor_decal/industrial/warning{
@@ -8714,14 +8657,11 @@
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"aul" = (
-/obj/structure/catwalk,
-/obj/machinery/firealarm{
- layer = 3.3;
- pixel_y = 26
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/station/exploration)
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/storage/eva)
"auo" = (
/obj/machinery/telecomms/bus/preset_three,
/turf/simulated/floor/tiled/dark{
@@ -8886,11 +8826,12 @@
/turf/simulated/floor/tiled,
/area/engineering/atmos/backup)
"avb" = (
-/obj/effect/landmark/start{
- name = "Explorer"
+/obj/machinery/suit_cycler/security{
+ req_access = null
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"avc" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -10341,13 +10282,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
- },
/obj/structure/catwalk,
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/machinery/light/small,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
"azK" = (
@@ -10673,12 +10612,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"aAV" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"aAW" = (
/turf/simulated/wall,
/area/crew_quarters/sleep/engi_wash)
@@ -11151,19 +11084,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
-"aCz" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"aCA" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6{
@@ -11175,11 +11095,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"aCB" = (
@@ -11791,14 +11706,13 @@
name = "\improper Telecomms Solar Field"
})
"aEK" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized/full{
+ id = "pathfinder_office"
},
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
+/turf/simulated/floor/plating,
+/area/tether/exploration/pilot_office)
"aEM" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -11992,11 +11906,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"aGs" = (
@@ -12051,15 +11960,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
-"aHc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/machinery/meter{
- frequency = 1443;
- id = "dist_aux_meter";
- name = "Distribution Loop"
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"aHe" = (
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -12215,11 +12115,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"aIG" = (
@@ -12412,13 +12307,13 @@
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"aKJ" = (
-/obj/structure/table/reinforced,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/roller,
/obj/machinery/light{
dir = 1
},
+<<<<<<< HEAD
+=======
+/obj/machinery/mineral/equipment_vendor/survey,
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"aKN" = (
@@ -12729,20 +12624,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"aLV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
"aLY" = (
/obj/structure/cable/green{
d1 = 4;
@@ -13653,8 +13534,9 @@
/area/crew_quarters/heads/chief)
"aTV" = (
/obj/structure/table/reinforced,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/roller,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"aTX" = (
@@ -13888,7 +13770,9 @@
/area/tether/exploration)
"aWJ" = (
/obj/structure/table/reinforced,
-/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"aXm" = (
@@ -14044,13 +13928,12 @@
/turf/simulated/shuttle/plating/airless/carry,
/area/shuttle/mining_outpost/shuttle)
"aZv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"aZP" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -14098,6 +13981,9 @@
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"bbb" = (
@@ -14155,6 +14041,9 @@
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"bcc" = (
@@ -14307,8 +14196,7 @@
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
"bdy" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/chemical_analyzer,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"bdF" = (
@@ -14506,18 +14394,17 @@
/area/shuttle/medivac/general)
>>>>>>> de1f9190b8b... Merge pull request #12143 from Very-Soft/returntotether
"beY" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
+ dir = 6
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
@@ -14548,6 +14435,9 @@
"bfH" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/station/exploration)
"bfJ" = (
@@ -14679,13 +14569,6 @@
/turf/simulated/floor/tiled,
/area/engineering/gravity_lobby)
"bhK" = (
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "PubPrepFront";
- name = "Gateway Shutter";
- pixel_x = -26;
- req_access = list(62)
- },
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/industrial/warning/corner,
/obj/effect/floor_decal/industrial/warning/corner{
@@ -14711,6 +14594,10 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
/turf/simulated/floor,
/area/maintenance/station/exploration)
"bjF" = (
@@ -14726,23 +14613,17 @@
/turf/simulated/floor/tiled/asteroid_steel/airless,
/area/quartermaster/belterdock)
"bkI" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/borderfloor,
-/obj/item/device/camera,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/effect/floor_decal/corner/green/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/item/device/cataloguer,
+/obj/item/device/cataloguer,
+/obj/item/device/cataloguer/compact,
+/obj/item/device/cataloguer/compact,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"bkU" = (
/obj/machinery/light{
dir = 8
@@ -14756,31 +14637,19 @@
/turf/simulated/shuttle/wall/hard_corner,
/area/shuttle/mining_outpost/shuttle)
"bmv" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/machinery/requests_console{
- department = "Exploration";
- dir = 1;
- name = "Exploration Requests Console";
- pixel_y = -30
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_y = 3
},
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/green/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = -3
},
+/obj/structure/table/reinforced,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"bmA" = (
/obj/machinery/light{
dir = 8
@@ -14850,18 +14719,16 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"box" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
+"boC" = (
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration/pilot_office)
"bpi" = (
-/obj/machinery/camera/network/command,
-/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"bpT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -14962,22 +14829,19 @@
/turf/simulated/floor/tiled,
/area/engineering/gravity_gen)
"bth" = (
-/obj/machinery/door/airlock/glass_science{
- name = "Pilots Office";
- req_one_access = list(67)
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
},
+<<<<<<< HEAD
/turf/simulated/floor/tiled/steel_grid,
/area/tether/exploration/pilot_office)
<<<<<<< HEAD
=======
+=======
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"btm" = (
/obj/machinery/atmospherics/unary/engine/fancy_shuttle{
dir = 1
@@ -15108,6 +14972,7 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
"bxi" = (
+<<<<<<< HEAD
/obj/structure/cable/green,
/obj/machinery/power/apc{
name = "south bump";
@@ -15117,12 +14982,16 @@
/obj/effect/floor_decal/corner/green/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
+=======
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
+/obj/machinery/alarm{
+ pixel_y = 22
},
/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/area/ai_monitored/storage/eva)
"bxo" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -15170,13 +15039,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/engineering/gravity_lobby)
-"bzq" = (
-/obj/machinery/suit_cycler/medical{
- req_access = null
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"bzw" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/regular{
@@ -15237,26 +15099,10 @@
/turf/simulated/floor/tiled/techmaint,
/area/engineering/gravity_lobby)
"bDi" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 6
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 26;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"bEu" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -15266,19 +15112,6 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
-"bEW" = (
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for exiting EVA.";
- dir = 4;
- id = "evadoors";
- name = "EVA Door Control";
- pixel_x = -26
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"bFI" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -15376,29 +15209,6 @@
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
-"bHG" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eva_inner";
- locked = 1;
- name = "EVA Internal Access";
- req_one_access = list()
- },
-/obj/effect/map_helper/airlock/door/int_door,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"bHN" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "eva_pump"
- },
-/obj/effect/map_helper/airlock/atmos/chamber_pump,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"bHV" = (
/obj/machinery/light{
dir = 4
@@ -15438,10 +15248,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/gravity_lobby)
-"bJm" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"bJG" = (
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Exploration";
@@ -15602,7 +15408,6 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
"bPl" = (
-/obj/machinery/floodlight,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"bPp" = (
@@ -15714,8 +15519,11 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
@@ -15738,27 +15546,10 @@
/turf/simulated/floor,
/area/maintenance/station/cargo)
"bQG" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/equipment)
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/adv,
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"bQS" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
@@ -15812,6 +15603,15 @@
/area/tcommsat/chamber)
"bTZ" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
+<<<<<<< HEAD
+=======
+/obj/machinery/newscaster{
+ pixel_x = 28
+ },
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"bUj" = (
@@ -15867,6 +15667,7 @@
"bWY" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor,
/area/maintenance/station/exploration)
"bXv" = (
@@ -15910,25 +15711,8 @@
/turf/simulated/floor/tiled,
/area/engineering/foyer)
"bYa" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "PubPrep";
- layer = 3.3;
- name = "Gateway Access Shutters"
- },
-/turf/simulated/floor/tiled/steel_grid,
+/obj/structure/closet/excavation,
+/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"bYg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/black,
@@ -15998,6 +15782,9 @@
/obj/machinery/alarm{
pixel_y = 22
},
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/station/exploration)
"bZi" = (
@@ -16056,6 +15843,16 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cockpit)
+"bZX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
"cah" = (
/obj/machinery/computer/telecomms/server{
dir = 8;
@@ -16152,11 +15949,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"cce" = (
@@ -16174,10 +15966,14 @@
/turf/simulated/floor,
/area/engineering/storage)
"ccz" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "GateShut";
+ name = "Gateway Shutter";
+ pixel_x = 26;
+ pixel_y = -32;
+ req_access = list(62)
},
-/obj/structure/closet/excavation,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"ccL" = (
@@ -16223,16 +16019,7 @@
/turf/simulated/floor/tiled/steel_grid,
/area/engineering/foyer)
"cfy" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eva_outer";
- locked = 1;
- name = "EVA External Access";
- req_one_access = list()
- },
-/obj/effect/map_helper/airlock/door/ext_door,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
"cfB" = (
/obj/machinery/light/small{
@@ -16274,7 +16061,10 @@
/area/gateway/prep_room)
"cii" = (
/obj/structure/closet/secure_closet/xenoarchaeologist,
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"cik" = (
/obj/structure/table/standard,
@@ -16358,14 +16148,8 @@
/turf/simulated/floor/tiled,
/area/storage/tools)
"ckR" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "PubPrep";
- layer = 3.3;
- name = "Gateway Access Shutters"
- },
-/turf/simulated/floor/tiled/steel_grid,
+/obj/machinery/floodlight,
+/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
"cme" = (
/obj/machinery/camera/network/telecom{
@@ -16395,18 +16179,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
/area/maintenance/substation/tcomms)
-"col" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
"coR" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -16435,9 +16207,6 @@
/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
"cqC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
@@ -16485,32 +16254,38 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"ctz" = (
-/obj/machinery/gateway{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+"ctB" = (
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
-"ctB" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
+/area/ai_monitored/storage/eva)
"ctD" = (
-/obj/machinery/gateway/centerstation,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
-"ctI" = (
-/obj/machinery/gateway{
- dir = 4
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_outer";
+ locked = 1;
+ name = "EVA External Access";
+ req_one_access = list()
},
+/obj/effect/map_helper/airlock/door/ext_door,
/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/area/ai_monitored/storage/eva)
+"ctI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/tether,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"cue" = (
/obj/machinery/status_display{
layer = 4;
@@ -16732,9 +16507,10 @@
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
"cCM" = (
-/obj/effect/mouse_hole_spawner{
- dir = 8
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
},
+/obj/machinery/portable_atmospherics/canister/air/airlock,
/turf/simulated/floor,
/area/maintenance/station/exploration)
"cDf" = (
@@ -16765,6 +16541,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+<<<<<<< HEAD
"cDF" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -16783,6 +16560,8 @@
/area/ai_monitored/storage/eva)
<<<<<<< HEAD
=======
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"cDU" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -16814,11 +16593,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"cFG" = (
@@ -16832,12 +16606,11 @@
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
@@ -17057,16 +16830,6 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
-"cTd" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/dispenser{
- phorontanks = 0
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"cTD" = (
/obj/random/trash_pile,
/obj/structure/railing{
@@ -17120,15 +16883,15 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
"cUD" = (
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "GateShut";
- name = "Gateway Shutter";
- pixel_x = -26;
- req_access = list(62)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"cUF" = (
/obj/machinery/computer/shuttle_control/belter{
dir = 1
@@ -17175,8 +16938,7 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/effect/floor_decal/corner/green/border,
-/obj/machinery/light,
+/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"cXs" = (
@@ -17266,6 +17028,7 @@
/turf/simulated/floor/tiled,
/area/engineering/hallway)
"dch" = (
+<<<<<<< HEAD
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -17284,6 +17047,10 @@
/obj/structure/closet/secure_closet/pilot,
/turf/simulated/floor/tiled,
/area/tether/exploration/pilot_office)
+=======
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ddj" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled,
@@ -17305,18 +17072,6 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"dge" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
"dgF" = (
/obj/machinery/mineral/input,
/obj/machinery/conveyor{
@@ -17508,8 +17263,31 @@
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
"djU" = (
-/turf/simulated/wall/r_wall,
-/area/tether/exploration/pilot_office)
+/obj/structure/table/glass,
+/obj/item/weapon/backup_implanter{
+ pixel_y = 9
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 2
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -5
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = -12
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/machinery/newscaster{
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"dkG" = (
/obj/machinery/door/airlock/highsecurity{
name = "Satellite Teleporter";
@@ -17572,6 +17350,12 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
+"dnh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration/pilot_office)
"dnU" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -17790,10 +17574,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/tcommsat/chamber)
-"duP" = (
-/obj/machinery/camera/network/tether,
-/turf/space,
-/area/space)
"dwj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -18164,6 +17944,7 @@
/turf/simulated/floor,
/area/quartermaster/storage)
"dQR" = (
+<<<<<<< HEAD
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -18178,6 +17959,11 @@
/area/tether/exploration/pilot_office)
<<<<<<< HEAD
=======
+=======
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"dRZ" = (
/obj/machinery/power/terminal{
dir = 4
@@ -18226,12 +18012,6 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
-"dUk" = (
-/obj/effect/landmark/start{
- name = "Pilot"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
"dUA" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -18252,13 +18032,9 @@
/turf/simulated/floor,
/area/storage/tech)
"dVT" = (
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/clean,
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/junk,
+/obj/machinery/atmospherics/pipe/tank/air/full{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/station/exploration)
"dWh" = (
@@ -18325,16 +18101,13 @@
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
"dYV" = (
-/obj/machinery/gateway{
- dir = 10
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"dZL" = (
/obj/machinery/door/unpowered/shuttle,
/turf/simulated/shuttle/floor/yellow/airless,
@@ -18354,12 +18127,12 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"ebM" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock{
- name = "Pilot Showers"
+/obj/machinery/gateway/centerstation{
+ layer = 4.1;
+ plane = -25
},
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/pilot_office)
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"edF" = (
/obj/machinery/camera/network/tether{
dir = 4
@@ -18375,10 +18148,10 @@
/turf/simulated/floor/tiled,
/area/engineering/hallway)
"egy" = (
-/obj/machinery/gateway,
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"egC" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -18455,12 +18228,6 @@
},
/turf/simulated/floor/outdoors/grass/forest,
/area/quartermaster/qm)
-"ekj" = (
-/obj/structure/table/reinforced,
-/obj/fiftyspawner/rglass,
-/obj/fiftyspawner/rods,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"emi" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -18491,16 +18258,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
-"eom" = (
-/obj/machinery/suit_cycler/security{
- req_access = null
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"epv" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -18606,7 +18363,17 @@
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
<<<<<<< HEAD
+<<<<<<< HEAD
=======
+=======
+"euy" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/tether/exploration/pilot_office)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ewT" = (
/turf/simulated/wall/fancy_shuttle/low{
fancy_shuttle_tag = "medbus";
@@ -18936,11 +18703,14 @@
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"eLn" = (
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/gateway{
+ density = 0;
+ dir = 4;
+ layer = 4.1;
+ plane = -25
},
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/pilot_office)
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"eLX" = (
/obj/structure/shuttle/engine/heater{
dir = 1
@@ -19120,15 +18890,9 @@
/turf/simulated/floor/airless,
/area/shuttle/medivac/cockpit)
"eVP" = (
-/obj/structure/closet/secure_closet/pilot,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
+/obj/machinery/light,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
"eWv" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -19154,18 +18918,6 @@
/obj/random/maintenance/cargo,
/turf/simulated/floor,
/area/maintenance/cargo)
-"eZg" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/mask/breath,
-/obj/item/weapon/rig/eva/equipped,
-/obj/machinery/door/window/brigdoor{
- req_access = list(11,24)
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"eZN" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
@@ -19251,6 +19003,9 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
+"fgh" = (
+/turf/simulated/wall,
+/area/gateway/prep_room)
"fgA" = (
/obj/structure/cable{
d1 = 4;
@@ -19354,6 +19109,14 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
+"fkr" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"fkL" = (
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/breath,
@@ -19443,7 +19206,23 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
+<<<<<<< HEAD
"fmg" = (
+=======
+"fnM" = (
+/obj/machinery/suit_cycler/pilot,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
+"fpk" = (
+/turf/simulated/floor/airless,
+/area/tether/outpost/solars_outside{
+ name = "\improper Telecomms Solar Field"
+ })
+"fpK" = (
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -19460,6 +19239,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
+<<<<<<< HEAD
/area/maintenance/cargo)
"fpk" = (
/turf/simulated/floor/airless,
@@ -19489,6 +19269,9 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
+=======
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"fqP" = (
/obj/machinery/power/apc{
dir = 8;
@@ -19562,6 +19345,16 @@
},
/turf/space,
/area/space)
+"fvo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
"fvt" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -19631,6 +19424,20 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
+"fxc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor,
+/area/maintenance/cargo)
"fxO" = (
/obj/structure/cable/green{
d1 = 1;
@@ -19755,13 +19562,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/effect/floor_decal/corner/green/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 9
- },
+/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"fFq" = (
@@ -19843,9 +19644,11 @@
/area/shuttle/excursion/cargo)
>>>>>>> 067510fd66... Merge pull request #11360 from VOREStation/Arokha/fancy2
"fIw" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
+/obj/machinery/gateway{
+ density = 0;
dir = 6
},
+<<<<<<< HEAD
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 5
},
@@ -19870,6 +19673,13 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
+=======
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"fKr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -20017,6 +19827,7 @@
/obj/effect/overmap/visitable/ship/landable/excursion,
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
+<<<<<<< HEAD
"fQr" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -20043,6 +19854,8 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"fRm" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
@@ -20149,6 +19962,7 @@
/obj/machinery/light,
/turf/simulated/floor,
/area/quartermaster/storage)
+<<<<<<< HEAD
"fWt" = (
/obj/machinery/access_button{
command = "cycle_interior";
@@ -20168,23 +19982,12 @@
/obj/machinery/camera/network/tether,
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"fYY" = (
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "PubPrep";
- name = "Public Access Shutter";
- pixel_x = 25;
- pixel_y = -6;
- req_access = list(62)
- },
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"gaW" = (
@@ -20325,7 +20128,7 @@
"geM" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"gfX" = (
/turf/simulated/wall/r_wall,
@@ -20440,6 +20243,12 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
+"gjU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"gjW" = (
/obj/structure/cable/green{
d1 = 1;
@@ -20582,37 +20391,6 @@
fancy_shuttle_tag = "explo"
},
/area/shuttle/excursion/cargo)
-"gnV" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
-"goL" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/hallway)
"goO" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -20752,12 +20530,20 @@
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
"gCX" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/vending/wallmed1/public{
+ pixel_x = -28
},
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"gCZ" = (
/obj/effect/landmark{
name = "maint_pred"
@@ -20765,6 +20551,7 @@
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
"gDl" = (
+<<<<<<< HEAD
/obj/machinery/light_switch{
dir = 1;
pixel_x = -12;
@@ -20773,10 +20560,13 @@
/obj/machinery/power/apc{
name = "south bump";
pixel_y = -32
+=======
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
},
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"gDA" = (
/obj/machinery/blackbox_recorder,
/turf/simulated/floor/tiled/dark,
@@ -20852,6 +20642,9 @@
"gGC" = (
/obj/structure/catwalk,
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/station/exploration)
"gHF" = (
@@ -20863,13 +20656,12 @@
},
/area/shuttle/excursion/cargo)
"gIp" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"gIs" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 4
@@ -20935,12 +20727,15 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+<<<<<<< HEAD
"gLW" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"gMr" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -21273,19 +21068,13 @@
/turf/simulated/floor/wood,
/area/quartermaster/qm)
"hcw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 4
},
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/obj/machinery/mineral/equipment_vendor/survey,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"hcW" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Exploration Substation Bypass"
@@ -21513,6 +21302,18 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
+"hkY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration/pilot_office)
"hln" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
@@ -21540,17 +21341,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
"hlX" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/rnd{
- req_one_access = list(19,43,67)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/tether/exploration/crew)
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/welding,
+/obj/item/weapon/storage/belt/utility,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"hmd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/universal{
dir = 4
@@ -21604,6 +21399,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"hqp" = (
@@ -21650,24 +21446,6 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor,
/area/maintenance/cargo)
-"hqU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"hqW" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -21698,6 +21476,15 @@
},
/turf/simulated/shuttle/floor/yellow,
/area/shuttle/mining_outpost/shuttle)
+"hrI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
"hrR" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -22380,28 +22167,17 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/button/remote/blast_door{
- id = "PubPrepFront";
- name = "Public Access Shutter";
- pixel_y = 26;
- req_access = list(62)
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
@@ -22766,12 +22542,6 @@
/obj/effect/floor_decal/corner/green/border{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 5
- },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"icz" = (
@@ -22802,16 +22572,18 @@
/turf/simulated/floor,
/area/maintenance/station/cargo)
"ieS" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/photocopier,
-/obj/effect/floor_decal/corner/green/border{
- dir = 9
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/device/bluespaceradio/tether_prelinked,
+/obj/machinery/door/window/brigdoor{
+ req_access = list(43)
},
+<<<<<<< HEAD
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"ieY" = (
@@ -22821,6 +22593,10 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/tether/station/dock_two)
+=======
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ifp" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 9
@@ -22835,19 +22611,13 @@
/turf/simulated/floor/tiled,
/area/engineering/engineering_airlock)
"ifV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 4
},
-/obj/machinery/chemical_analyzer,
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"igN" = (
/obj/machinery/button/remote/blast_door{
dir = 8;
@@ -22864,54 +22634,29 @@
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
"iie" = (
-/obj/structure/table/rack/shelf,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/item/stack/marker_beacon/thirty{
- pixel_x = 5;
- pixel_y = 4
+/obj/machinery/door/window/brigdoor/westright{
+ req_access = list(5)
},
-/obj/item/stack/marker_beacon/thirty{
- pixel_x = -5;
- pixel_y = 4
- },
-/obj/item/device/gps{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = -6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/item/device/gps{
- pixel_x = 6;
- pixel_y = -4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"iii" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/turf/simulated/floor/tiled/dark,
/area/gateway/prep_room)
+<<<<<<< HEAD
"iiQ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -22925,18 +22670,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"iiU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/flora/pottedplant/orientaltree,
-/obj/effect/floor_decal/corner/green/border{
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/binary/passive_gate{
dir = 1
},
+<<<<<<< HEAD
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
"ijn" = (
@@ -22953,6 +22694,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
+=======
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ijv" = (
/obj/structure/railing{
dir = 8
@@ -23009,26 +22754,10 @@
/turf/simulated/floor/carpet,
/area/engineering/foyer)
"ins" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/camera/network/exploration,
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/obj/structure/table/woodentable,
-/obj/machinery/microwave{
- pixel_y = 3
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
+/obj/machinery/camera/network/command,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"iol" = (
/obj/machinery/light{
dir = 1
@@ -23097,6 +22826,11 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
+"iss" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cargo)
"isD" = (
/obj/machinery/atmospherics/portables_connector{
dir = 1
@@ -23109,6 +22843,10 @@
fancy_shuttle_tag = "explo"
},
/area/shuttle/excursion/cockpit)
+"itz" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"iuB" = (
/obj/structure/cable/green{
d1 = 4;
@@ -23210,6 +22948,9 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
+"iyt" = (
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
"izZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -23222,28 +22963,6 @@
/area/tcomfoyer{
name = "\improper Telecomms Storage"
})
-"iAk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 4
- },
-/obj/machinery/suit_cycler/pilot,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
"iAr" = (
/obj/structure/cable{
d1 = 4;
@@ -23290,29 +23009,24 @@
/obj/effect/map_helper/airlock/door/int_door,
/turf/simulated/floor/plating,
/area/quartermaster/belterdock)
-"iBE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/cargo)
-"iDc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"iBk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration/pilot_office)
+"iBE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/cargo)
"iDj" = (
/obj/machinery/light/small{
dir = 1
@@ -23386,29 +23100,24 @@
/turf/simulated/wall,
/area/tether/exploration/hallway)
"iHb" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/device/mapping_unit,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(43)
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -28
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"iIf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"iIk" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -23476,15 +23185,6 @@
/area/tether/outpost/solars_outside{
name = "\improper Telecomms Solar Field"
})
-"iKm" = (
-/obj/structure/table/rack,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/security,
-/obj/item/clothing/head/helmet/space/void/security,
-/obj/machinery/door/window/brigdoor/eastright,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"iKq" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -23494,24 +23194,19 @@
name = "\improper Telecomms Solar Field"
})
"iKY" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"iMe" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dist_aux_meter";
+ name = "Distribution Loop"
},
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Exploration Briefing"
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"iMk" = (
/obj/structure/ore_box,
/turf/simulated/shuttle/floor/yellow/airless,
@@ -23648,6 +23343,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+"iUE" = (
+/obj/machinery/gateway{
+ density = 0;
+ dir = 8;
+ layer = 4.1;
+ plane = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"iUV" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -23801,13 +23505,27 @@
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"jgd" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
+<<<<<<< HEAD
/obj/structure/closet/emcloset,
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/dark,
/area/gateway)
+=======
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"jgU" = (
/obj/structure/shuttle/engine/propulsion{
dir = 8
@@ -23826,10 +23544,6 @@
/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
@@ -23858,12 +23572,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
-"jkV" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"jlx" = (
/obj/machinery/teleport/hub{
dir = 2
@@ -23932,6 +23640,20 @@
"jou" = (
/turf/simulated/wall/r_wall,
/area/hallway/station/docks)
+"joY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"jqE" = (
/obj/machinery/computer/shuttle_control/tether_backup{
dir = 8
@@ -23999,12 +23721,11 @@
name = "\improper Telecomms Lobby"
})
"jsP" = (
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"jsY" = (
/obj/effect/floor_decal/industrial/loading{
dir = 8
@@ -24015,12 +23736,13 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
"jtH" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Field Medic"
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"jtT" = (
/obj/effect/landmark{
name = "morphspawn"
@@ -24066,12 +23788,27 @@
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
"juI" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Pilot"
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+<<<<<<< HEAD
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
+=======
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
+"juV" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "dock_d2a1";
+ landmark_tag = "tether_dockarm_d2a1";
+ name = "Tether Dock D2A1"
+ },
+/turf/space,
+/area/space)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"jvg" = (
/obj/random/maintenance/medical,
/obj/structure/table/rack{
@@ -24136,6 +23873,9 @@
pixel_y = -25
},
/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/station/exploration)
"jzz" = (
@@ -24186,6 +23926,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
+<<<<<<< HEAD
"jCo" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -24199,6 +23940,17 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
+=======
+"jDI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"jDU" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/briefcase/inflatable,
@@ -24232,15 +23984,10 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"jEf" = (
-/obj/machinery/gateway{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/light{
- dir = 4
- },
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/area/ai_monitored/storage/eva)
"jEs" = (
/obj/structure/table/rack,
/obj/item/device/suit_cooling_unit,
@@ -24359,6 +24106,11 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar)
+"jLF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"jOc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -24405,27 +24157,21 @@
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
"jPM" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/machinery/vending/wallmed1/public{
- pixel_x = -28
- },
-/obj/machinery/vending/wallmed1/public{
- pixel_y = -28
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/hallway)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"jQR" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"jRG" = (
/obj/machinery/access_button{
command = "cycle_exterior";
@@ -24626,26 +24372,21 @@
/turf/simulated/floor/tiled/dark,
/area/bridge/secondary/teleporter)
"jZT" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
@@ -24655,11 +24396,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -24689,39 +24425,29 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"kbz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/structure/table/rack,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/machinery/door/window/brigdoor,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"kcy" = (
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
-"kcy" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"kcH" = (
/obj/structure/cable/green{
d2 = 2;
@@ -24799,14 +24525,12 @@
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"kdF" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/effect/landmark/start{
- name = "Pilot"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"kdL" = (
/obj/structure/shuttle/window,
/obj/effect/shuttle_landmark{
@@ -24817,25 +24541,14 @@
},
/turf/simulated/floor/airless,
/area/shuttle/mining_outpost/shuttle)
-"kel" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"key" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/folder/yellow,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
-"kfa" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/effect/landmark/start{
- name = "Explorer"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/station/exploration)
"kff" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/entrance{
@@ -25033,16 +24746,6 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/tether/station/dock_one)
-"knk" = (
-/obj/structure/closet,
-/obj/random/tool,
-/obj/random/tool,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/engineering,
-/turf/simulated/floor,
-/area/maintenance/station/eng_lower)
"knu" = (
/obj/random/trash_pile,
/obj/structure/railing{
@@ -25121,23 +24824,10 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
-"kpr" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "eva_airlock";
- name = "exterior access button";
- pixel_y = 25
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/airless,
-/area/ai_monitored/storage/eva)
"kpK" = (
-/obj/effect/landmark/vermin,
+/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"kqW" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25191,22 +24881,12 @@
/turf/simulated/floor/wood,
/area/quartermaster/qm)
"kvF" = (
-/obj/machinery/shower{
- pixel_y = 16
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/structure/curtain/open/shower,
-/obj/item/weapon/soap/nanotrasen,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/equipment)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"kvI" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -25229,22 +24909,13 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
"kxm" = (
-/obj/machinery/shower{
- pixel_y = 16
+/obj/effect/floor_decal/techfloor/orange,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/structure/curtain/open/shower,
-/obj/item/weapon/soap/nanotrasen,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/exploration/equipment)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
"kxC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -25253,11 +24924,15 @@
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"kxG" = (
-/obj/structure/table/woodentable,
-/obj/item/device/universal_translator,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/teleporter/departing)
"kxL" = (
/obj/machinery/computer/shuttle_control/surface_mining_outpost{
dir = 8
@@ -25368,6 +25043,18 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/cargo)
+"kCj" = (
+/obj/machinery/gateway{
+ density = 0;
+ dir = 1;
+ layer = 4.1;
+ plane = -25
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"kCl" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -25447,39 +25134,18 @@
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
"kIR" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/structure/table/rack,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/machinery/door/window/brigdoor/eastright,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"kJj" = (
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/teleporter/departing)
"kJl" = (
/obj/machinery/door/airlock/hatch{
name = "Telecoms Control Room";
@@ -25506,6 +25172,7 @@
/obj/machinery/cell_charger,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
+<<<<<<< HEAD
"kJJ" = (
/obj/structure/bed/chair/office/dark{
dir = 4
@@ -25524,6 +25191,22 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
+=======
+"kKe" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/structure/closet/emergsuit_wall{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "secbus";
+ name = "secbus"
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/securiship/general)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"kKj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 6;
@@ -25826,27 +25509,14 @@
},
/area/maintenance/station/eng_lower)
"kVE" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Exploration Hangar";
- sortType = "Exploration Hangar"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"kVK" = (
@@ -25867,22 +25537,12 @@
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"kWH" = (
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/green/border{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"kWQ" = (
@@ -25902,6 +25562,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/cargo)
+<<<<<<< HEAD
"kXm" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_science{
@@ -25922,6 +25583,15 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/tether/exploration/crew)
+=======
+"kXu" = (
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "medbus";
+ name = "medbus"
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/medivac/general)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"kXF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment,
@@ -25933,48 +25603,31 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/storage)
-"kXK" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -26;
- pixel_y = -24
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"kZA" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/closet/walllocker_double{
+ dir = 8;
+ pixel_x = -28
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/structure/symbol/sa{
+ pixel_x = -19;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"kZW" = (
/obj/structure/cable/green{
d1 = 4;
@@ -26012,21 +25665,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"lbi" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Field Medic"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"lbI" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 6
@@ -26055,6 +25693,7 @@
/obj/machinery/mineral/processing_unit_console,
/turf/simulated/wall,
/area/quartermaster/belterdock/refinery)
+<<<<<<< HEAD
"lcm" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -26096,6 +25735,20 @@
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures
+=======
+"ldJ" = (
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/tether/exploration/pilot_office)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lfI" = (
/obj/machinery/access_button{
command = "cycle_interior";
@@ -26111,15 +25764,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
-"lfK" = (
-/obj/machinery/sleep_console{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
"lhm" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Exploration Substation Bypass"
@@ -26149,6 +25793,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+<<<<<<< HEAD
"liG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/wall/rshull,
@@ -26170,6 +25815,8 @@
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"liV" = (
/obj/machinery/light/small{
dir = 4
@@ -26273,6 +25920,7 @@
},
/turf/simulated/mineral/floor/vacuum,
/area/mine/explored/upper_level)
+<<<<<<< HEAD
"lnG" = (
/obj/machinery/sleeper{
dir = 4
@@ -26283,6 +25931,8 @@
/area/tether/station/dock_two)
<<<<<<< HEAD
=======
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lof" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 8
@@ -26422,11 +26072,33 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
+<<<<<<< HEAD
"lvV" = (
/obj/effect/floor_decal/industrial/warning/corner,
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+"lvZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "dock_d2l_pump"
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "dock_d2l_sensor";
+ pixel_x = -30;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/dark,
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lwa" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 8
@@ -26485,30 +26157,17 @@
/turf/simulated/floor/tiled,
/area/engineering/engineering_airlock)
"lxl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
+/obj/item/clothing/mask/breath,
+/obj/item/weapon/rig/eva/equipped,
+/obj/machinery/door/window/brigdoor{
+ req_access = list(11,24)
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"lxK" = (
/obj/structure/ore_box,
/obj/effect/floor_decal/borderfloor{
@@ -26574,6 +26233,7 @@
"lzi" = (
/turf/simulated/wall,
/area/engineering/engineering_airlock)
+<<<<<<< HEAD
"lzl" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -26603,6 +26263,8 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/belterdock/refinery)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lzB" = (
/obj/structure/closet/crate,
/obj/random/maintenance/engineering,
@@ -26627,9 +26289,16 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"lAt" = (
-/obj/machinery/hologram/holopad,
+/obj/structure/table/reinforced,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
+"lBQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
"lBS" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/structure/table/standard,
@@ -26645,6 +26314,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
+<<<<<<< HEAD
"lCO" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
@@ -26666,6 +26336,10 @@
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
+=======
+"lCR" = (
+/obj/machinery/power/terminal{
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
dir = 8
},
/obj/structure/cable/green{
@@ -26795,6 +26469,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
+<<<<<<< HEAD
"lHr" = (
/obj/machinery/door/airlock/maintenance/cargo{
req_access = list(50);
@@ -26830,55 +26505,35 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lIB" = (
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
-"lIF" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_y = -4
- },
-/obj/item/weapon/hand_labeler,
-/obj/item/device/multitool/tether_buffered{
- pixel_y = 2
- },
-/obj/item/weapon/hand_labeler,
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+<<<<<<< HEAD
+/area/tether/exploration/equipment)
+=======
+/area/ai_monitored/storage/eva)
+"lJl" = (
+/obj/structure/bed/chair/shuttle{
dir = 1
},
-/obj/machinery/camera/network/exploration,
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list();
+ req_one_access = list(11,67)
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "medbus";
+ name = "medbus"
},
/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
-"lIZ" = (
-/obj/structure/table/rack/shelf,
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/exploration,
-/obj/item/clothing/head/helmet/space/void/exploration,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/area/shuttle/medivac/general)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lJN" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -27022,22 +26677,19 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
"lML" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -22
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(11,24)
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"lMS" = (
/obj/machinery/holoposter{
pixel_y = -30
@@ -27083,6 +26735,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+<<<<<<< HEAD
"lPD" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -27123,6 +26776,9 @@
||||||| parent of 067510fd66... Merge pull request #11360 from VOREStation/Arokha/fancy2
"lSs" = (
/obj/structure/disposalpipe/segment,
+=======
+"lRe" = (
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/obj/effect/floor_decal/borderfloor{
dir = 4
},
@@ -27139,6 +26795,7 @@
pixel_x = 30
},
/turf/simulated/floor/tiled,
+<<<<<<< HEAD
/area/hallway/station/atrium)
=======
"lSs" = (
@@ -27160,6 +26817,9 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+=======
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"lSw" = (
/obj/structure/closet/emergsuit_wall{
pixel_y = 32
@@ -27177,35 +26837,10 @@
/area/shuttle/excursion/cockpit)
>>>>>>> 067510fd66... Merge pull request #11360 from VOREStation/Arokha/fancy2
"lSR" = (
-/obj/effect/landmark/start{
- name = "Pilot"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
-"lTD" = (
-/obj/item/device/radio/intercom{
- pixel_y = -24
- },
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/borderfloor,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/structure/table/gamblingtable,
+/obj/random/coin/sometimes,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
"lTY" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
@@ -27305,24 +26940,9 @@
},
/turf/simulated/floor/outdoors/grass/forest,
/area/quartermaster/qm)
-"mau" = (
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = 4;
- pixel_y = -6
- },
-/obj/item/weapon/storage/backpack/parachute{
- pixel_x = -4;
- pixel_y = -6
- },
+"mcE" = (
/obj/structure/table/rack/shelf,
+<<<<<<< HEAD
/obj/item/weapon/storage/backpack/parachute{
pixel_x = -4;
pixel_y = 4
@@ -27360,6 +26980,18 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/cockpit)
+=======
+/obj/item/weapon/tank/oxygen,
+/obj/item/device/suit_cooling_unit,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/tether/exploration/pilot_office)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mdh" = (
/obj/structure/cable/green{
d1 = 2;
@@ -27374,12 +27006,33 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
+"mdn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"mdz" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
/turf/simulated/floor/airless,
/area/quartermaster/belterdock)
+"mdM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "pilotB";
+ name = "B"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"meW" = (
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
@@ -27392,6 +27045,7 @@
},
/turf/simulated/floor/plating,
/area/tether/station/dock_one)
+<<<<<<< HEAD
"mgw" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/landmark/start{
@@ -27457,6 +27111,8 @@
},
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
/area/shuttle/securiship/general)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mkL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -27691,51 +27347,6 @@
/obj/effect/floor_decal/sign/dock/one,
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
-"msn" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/item/clothing/suit/space/void/expedition_medical,
-/obj/item/clothing/head/helmet/space/void/expedition_medical,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
-"mtm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
"mto" = (
/turf/simulated/mineral/vacuum,
/area/maintenance/station/cargo)
@@ -27769,23 +27380,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"muY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
"mvn" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -27828,6 +27422,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
+<<<<<<< HEAD
"myi" = (
/obj/structure/cable/cyan{
d2 = 4;
@@ -27873,6 +27468,8 @@
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mzB" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -27889,8 +27486,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/exploration/equipment)
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tether/exploration/pilot_office)
"mzV" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
@@ -28052,6 +27649,7 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
+<<<<<<< HEAD
"mFp" = (
/obj/structure/cable/cyan{
d1 = 2;
@@ -28093,6 +27691,14 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
+=======
+"mGG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mHR" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -28100,11 +27706,15 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"mIs" = (
-/obj/effect/landmark/start{
- name = "Field Medic"
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
+/obj/random/mainttoyloot,
+/obj/random/maintenance/clean,
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/eng_lower)
"mIv" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -28153,6 +27763,7 @@
},
/turf/simulated/floor/tiled,
/area/shuttle/securiship/engines)
+<<<<<<< HEAD
>>>>>>> 4ccd512332... Merge pull request #12923 from KillianKirilenko/kk-shipfixes
"mJd" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -28160,6 +27771,8 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mKD" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -28184,13 +27797,12 @@
"mKM" = (
/obj/machinery/door/airlock/multi_tile/glass{
dir = 1;
- id_tag = null;
- name = "Exploration Equipment Storage";
- req_one_access = list(19,43,67)
+ name = "Pilot Office";
+ req_one_access = list(67)
},
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/exploration/equipment)
+/turf/simulated/floor/tiled/steel_ridged,
+/area/tether/exploration/pilot_office)
"mKN" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -28236,9 +27848,11 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
"mLO" = (
-/obj/machinery/gateway{
- dir = 1
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 25
},
+<<<<<<< HEAD
/obj/machinery/camera/network/command,
/turf/simulated/floor/tiled/dark,
/area/gateway)
@@ -28258,6 +27872,14 @@
/obj/effect/map_helper/airlock/door/simple,
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+=======
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mOz" = (
/obj/machinery/firealarm{
dir = 4;
@@ -28326,6 +27948,7 @@
dir = 6
},
/turf/simulated/floor/tiled,
+<<<<<<< HEAD
/area/tether/station/dock_two)
"mQR" = (
/obj/machinery/door/firedoor/glass,
@@ -28341,6 +27964,9 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/tether/exploration/equipment)
+=======
+/area/hallway/station/docks)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mQZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -28385,6 +28011,13 @@
/obj/effect/map_helper/airlock/door/int_door,
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+"mUb" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"mUp" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -28444,6 +28077,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar)
+<<<<<<< HEAD
"mYJ" = (
/obj/machinery/suit_cycler/exploration,
/obj/effect/floor_decal/borderfloor{
@@ -28454,6 +28088,38 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
+=======
+"mWA" = (
+/obj/machinery/door/airlock/glass_external,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "dock_d2l";
+ name = "exterior access button";
+ pixel_x = -28;
+ pixel_y = -6;
+ req_one_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled,
+/area/tether/station/dock_two)
+"mXh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
+/turf/simulated/floor/plating,
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"mYQ" = (
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -28532,6 +28198,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
+<<<<<<< HEAD
>>>>>>> 067510fd66... Merge pull request #11360 from VOREStation/Arokha/fancy2
"nac" = (
/obj/effect/floor_decal/borderfloor,
@@ -28561,6 +28228,8 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"nbO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -28574,18 +28243,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"nbQ" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
"nct" = (
/obj/structure/cable{
d1 = 1;
@@ -28903,15 +28560,25 @@
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
"npk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid,
+/obj/item/stack/medical/splint,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"nqk" = (
/turf/simulated/floor/wood/broken,
/area/maintenance/station/cargo)
@@ -29276,7 +28943,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/multi_tile/glass{
- name = "Exploration Public Entrance"
+ name = "Shuttle Public Entrance"
},
/turf/simulated/floor/tiled/steel_grid,
/area/hallway/station/atrium)
@@ -29305,6 +28972,25 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
+"nHx" = (
+/obj/effect/landmark/start{
+ name = "Pilot"
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "pilotA";
+ name = "Room A Lock";
+ pixel_y = -25;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/tether/exploration/pilot_office)
"nHH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -29449,18 +29135,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"nRk" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/camera/network/tether{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
"nRU" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -29556,6 +29230,7 @@
},
/turf/simulated/floor/wood,
/area/quartermaster/qm)
+<<<<<<< HEAD
"nWq" = (
/obj/structure/cable{
d1 = 1;
@@ -29591,6 +29266,8 @@
},
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/cargo)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"nYA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -29626,14 +29303,9 @@
/turf/simulated/floor/plating,
/area/shuttle/securiship/general)
"nZC" = (
-/obj/machinery/door/airlock/glass_command{
- id_tag = "evadoors";
- name = "E.V.A.";
- req_one_access = list(18,19,43,67)
- },
-/obj/machinery/door/firedoor/glass,
+/obj/structure/firedoor_assembly,
/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/area/maintenance/cargo)
"nZQ" = (
/turf/simulated/floor/outdoors/grass/forest,
/area/quartermaster/qm)
@@ -29673,12 +29345,17 @@
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
"obA" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
"odI" = (
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+<<<<<<< HEAD
"odO" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
@@ -29708,6 +29385,8 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/station/dock_two)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"odW" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -29725,6 +29404,7 @@
/area/tether/station/dock_two)
"oer" = (
/turf/simulated/wall,
+<<<<<<< HEAD
/area/tether/exploration/pathfinder_office)
"ofa" = (
/obj/structure/window/reinforced{
@@ -29733,6 +29413,15 @@
/obj/structure/bed/chair/bay/chair,
/turf/simulated/floor/tiled/eris/dark/violetcorener,
/area/shuttle/securiship/general)
+=======
+/area/tether/exploration/pilot_office)
+"oeE" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/exploration/pilot_office)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ofV" = (
/obj/structure/table/standard,
/obj/item/weapon/paper/rogueminer,
@@ -29754,19 +29443,14 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
"ogv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/sleep_console{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"ogK" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin{
@@ -29776,6 +29460,15 @@
/obj/item/device/megaphone,
/turf/simulated/floor/wood,
/area/quartermaster/qm)
+"ohc" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/brown,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/tether/exploration/pilot_office)
"ohn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 4
@@ -29841,15 +29534,9 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+<<<<<<< HEAD
"olN" = (
/obj/structure/cable/green{
dir = 1;
@@ -29874,6 +29561,8 @@
/obj/machinery/door/window/brigdoor/eastleft,
/turf/simulated/floor/tiled/eris/dark/violetcorener,
/area/shuttle/securiship/general)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ops" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -29902,6 +29591,7 @@
/obj/machinery/door/airlock/glass_external,
/turf/simulated/floor/tiled/dark,
/area/tether/station/dock_one)
+<<<<<<< HEAD
"orh" = (
/obj/structure/cable/green{
d1 = 4;
@@ -29911,6 +29601,17 @@
/obj/structure/table/rack/shelf,
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/securiship/general)
+=======
+"oqF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"ort" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
@@ -30006,12 +29707,13 @@
name = "\improper Telecomms Storage"
})
"otE" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/sleeper{
+ dir = 4
},
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"oue" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -30078,6 +29780,7 @@
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"oyD" = (
@@ -30153,6 +29856,9 @@
/obj/effect/floor_decal/corner/green/border{
dir = 8
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"oEH" = (
@@ -30200,19 +29906,22 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"oGG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"oGc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "pilotA";
+ name = "A"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
+"oGG" = (
+/turf/simulated/floor/tiled,
/area/gateway/prep_room)
"oGI" = (
/obj/structure/table/standard,
@@ -30230,32 +29939,24 @@
/turf/simulated/floor/wood,
/area/quartermaster/qm)
"oIV" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
},
-/obj/machinery/button/remote/blast_door{
- id = "PubPrep";
- name = "Public Access Shutter";
- pixel_y = 26;
- req_access = list(62)
- },
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"oJt" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"oKw" = (
/obj/machinery/door/airlock/glass_external,
/obj/effect/map_helper/airlock/door/int_door,
@@ -30265,6 +29966,11 @@
/obj/structure/frame,
/turf/simulated/floor,
/area/maintenance/cargo)
+"oMQ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"oPH" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/disposalpipe/segment,
@@ -30297,6 +30003,7 @@
/obj/effect/floor_decal/corner/brown/bordercorner,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
+<<<<<<< HEAD
"oTn" = (
/obj/machinery/photocopier,
/obj/effect/floor_decal/borderfloor{
@@ -30307,6 +30014,8 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/pathfinder_office)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"oTF" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/structure/cable/green{
@@ -30318,6 +30027,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
+<<<<<<< HEAD
"oTL" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -30339,6 +30049,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+=======
+"oTR" = (
+/obj/machinery/light{
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
dir = 8
},
/obj/machinery/door/airlock/glass_mining{
@@ -30376,29 +30090,12 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"oWU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
+"oWW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
},
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
-"oWW" = (
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 28
- },
-/turf/simulated/floor,
-/area/maintenance/station/exploration)
"oYp" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -30580,16 +30277,17 @@
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/securiship/engines)
"plm" = (
-/obj/machinery/camera/network/exploration{
- dir = 1
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/device/multitool,
+/obj/machinery/camera/network/command{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"pmC" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -30618,16 +30316,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
-"pmE" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"pmX" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30748,6 +30436,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock)
+<<<<<<< HEAD
"pyy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -30768,23 +30457,28 @@
},
/turf/simulated/floor/tiled,
/area/tether/exploration/equipment)
+=======
+"pxB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
+"pye" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/sign/dock/two,
+/turf/simulated/floor/tiled,
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"pyE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
-"pyP" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/item/weapon/tank/jetpack/carbondioxide,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"pyQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -30799,21 +30493,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
-"pAj" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "eva_inner";
- locked = 1;
- name = "EVA Internal Access";
- req_one_access = list()
- },
-/obj/effect/map_helper/airlock/door/int_door,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"pBP" = (
<<<<<<< HEAD
/obj/machinery/power/sensor{
@@ -30863,13 +30542,9 @@
/obj/machinery/light,
/turf/simulated/shuttle/floor/yellow,
/area/shuttle/mining_outpost/shuttle)
-"pDf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+"pDE" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
@@ -30934,26 +30609,12 @@
/turf/simulated/wall,
/area/janitor)
"pLb" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/mouse_hole_spawner{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light_switch{
- dir = 8;
- pixel_x = 24;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
"pMe" = (
/obj/structure/table/standard,
/obj/item/weapon/stock_parts/subspace/analyzer,
@@ -31039,15 +30700,12 @@
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
"pPw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/structure/closet/crate,
-/obj/machinery/camera/network/command{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"pSg" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -31090,6 +30748,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+<<<<<<< HEAD
"pSR" = (
/obj/structure/table/reinforced,
/obj/item/device/assembly/signaler,
@@ -31099,6 +30758,14 @@
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+"pSO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"pTu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -31228,9 +30895,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
/obj/effect/landmark/vines,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
@@ -31419,6 +31083,9 @@
pixel_y = 22
},
/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/station/exploration)
"qnM" = (
@@ -31440,14 +31107,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
-"qoB" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"qoD" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -31558,20 +31217,6 @@
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/tether/station/dock_one)
-"qrF" = (
-/obj/structure/table/reinforced,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/obj/fiftyspawner/glass,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
-"qrP" = (
-/obj/machinery/suit_cycler/engineering{
- req_access = null
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"qrU" = (
/obj/structure/cable/green{
d1 = 4;
@@ -31637,6 +31282,18 @@
},
/turf/simulated/floor/tiled,
/area/shuttle/large_escape_pod1)
+"quW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 8;
+ pixel_x = -25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"qve" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31673,6 +31330,7 @@
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
+<<<<<<< HEAD
"qvS" = (
/obj/machinery/power/terminal{
dir = 1;
@@ -31724,6 +31382,8 @@
/obj/machinery/atmospherics/binary/pump/fuel,
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"qBP" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -31834,6 +31494,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
+<<<<<<< HEAD
"qFq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 5;
@@ -31860,6 +31521,8 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"qHe" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Cargo Subgrid";
@@ -31945,11 +31608,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
@@ -32031,12 +31694,6 @@
/obj/structure/closet/crate,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
-"qQx" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"qQG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -32063,6 +31720,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
+<<<<<<< HEAD
"qTm" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
@@ -32076,15 +31734,20 @@
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"qUr" = (
+=======
+"qTD" = (
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/bed/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -22
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/turf/simulated/floor/tiled/milspec,
+/area/tether/exploration/pilot_office)
"qVz" = (
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
@@ -32095,14 +31758,10 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2,
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"qVH" = (
@@ -32126,30 +31785,6 @@
/obj/effect/floor_decal/corner/brown/bordercorner,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"qWs" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"qWN" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -32175,13 +31810,6 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"qYg" = (
-/obj/machinery/suit_cycler/mining{
- req_access = null
- },
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"qYu" = (
/obj/structure/catwalk,
/turf/simulated/floor/plating,
@@ -32242,26 +31870,12 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"rci" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
+/obj/machinery/gateway{
+ density = 0;
+ dir = 10
},
-/obj/effect/floor_decal/corner/green/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"rdc" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -32272,6 +31886,12 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar)
+"rdo" = (
+/obj/structure/symbol/lo{
+ pixel_y = -32
+ },
+/turf/simulated/wall,
+/area/maintenance/cargo)
"rdE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -32457,6 +32077,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
+<<<<<<< HEAD
"rqf" = (
/obj/machinery/door/airlock/glass_medical{
name = "Public Emergency Triage";
@@ -32469,6 +32090,8 @@
/area/tether/station/dock_two)
<<<<<<< HEAD
=======
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"rqA" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 5
@@ -32554,6 +32177,7 @@
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
+<<<<<<< HEAD
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
@@ -32577,6 +32201,10 @@
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+/turf/simulated/floor/tiled,
+/area/shuttle/securiship/cockpit)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"rtQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32690,37 +32318,6 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"rCQ" = (
-/obj/machinery/vending/wallmed_airlock{
- pixel_x = -28
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
-"rEb" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
"rEj" = (
/obj/machinery/conveyor{
dir = 1;
@@ -32930,24 +32527,6 @@
},
/turf/space,
/area/space)
-"rTO" = (
-/obj/machinery/vending/wallmed1/public{
- pixel_x = -28
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
-"rTY" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
"rUS" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -32969,12 +32548,6 @@
/obj/item/weapon/storage/briefcase/inflatable,
/turf/simulated/floor,
/area/maintenance/cargo)
-"rVK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/tether/station/dock_two)
"rWj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -33078,6 +32651,9 @@
/obj/effect/floor_decal/corner/green/bordercorner2{
dir = 4
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"rYx" = (
@@ -33104,26 +32680,17 @@
/turf/simulated/floor/tiled/steel_grid,
/area/tether/station/dock_two)
"saD" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
+/obj/machinery/gateway{
+ density = 0;
+ dir = 9;
+ layer = 4.1;
+ plane = -25
},
-/obj/effect/floor_decal/corner/green/border{
- dir = 5
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"saN" = (
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled,
@@ -33175,8 +32742,11 @@
/area/shuttle/medivac/engines)
>>>>>>> de1f9190b8b... Merge pull request #12143 from Very-Soft/returntotether
"scu" = (
-/turf/simulated/wall/r_wall,
-/area/tether/exploration/crew)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"scB" = (
/obj/machinery/door/airlock/glass_external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -33329,8 +32899,9 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"smz" = (
-/turf/simulated/wall,
-/area/tether/exploration/pilot_office)
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
"snG" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -33352,6 +32923,13 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
+"snX" = (
+/obj/machinery/gateway,
+/obj/machinery/camera/network/command{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"spX" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
@@ -33442,9 +33020,11 @@
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
"sxj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
"sya" = (
/obj/structure/railing{
dir = 1
@@ -33602,6 +33182,7 @@
frequency = 1380;
id_tag = "medivac_docker_pump_out_internal"
},
+<<<<<<< HEAD
/obj/effect/map_helper/airlock/sensor/chamber_sensor,
/obj/effect/map_helper/airlock/atmos/pump_out_internal,
/turf/simulated/floor/tiled/eris/steel/gray_perforated,
@@ -33616,6 +33197,10 @@
/obj/item/weapon/storage/belt/utility,
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+/turf/simulated/floor/tiled,
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"sII" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
id_tag = "belter_access_airlock";
@@ -33747,11 +33332,8 @@
/turf/simulated/floor/tiled,
/area/hallway/station/docks)
"sNZ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
/turf/simulated/floor/airless,
-/area/ai_monitored/storage/eva)
+/area/maintenance/cargo)
"sOc" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -33765,12 +33347,6 @@
/obj/effect/floor_decal/corner/green/border{
dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 6
- },
/obj/machinery/camera/network/exploration{
dir = 9
},
@@ -33786,6 +33362,7 @@
fancy_shuttle_tag = "medbus"
},
/area/shuttle/medivac/engines)
+<<<<<<< HEAD
>>>>>>> 4ccd512332... Merge pull request #12923 from KillianKirilenko/kk-shipfixes
"sPJ" = (
/obj/structure/table/reinforced,
@@ -33797,6 +33374,8 @@
/obj/fiftyspawner/steel,
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"sQj" = (
/obj/machinery/camera/network/mining{
c_tag = "OPM - Mining Production Room";
@@ -33895,14 +33474,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/airlock/glass_command{
- id_tag = "evadoors";
- name = "E.V.A.";
- req_one_access = list(18,19,43,67)
- },
-/obj/machinery/door/firedoor/glass,
+/obj/structure/firedoor_assembly,
/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/area/maintenance/cargo)
"sVZ" = (
/obj/structure/cable{
d1 = 4;
@@ -33919,6 +33493,16 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
+"sWX" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "GateShut";
+ layer = 3.3;
+ name = "Gateway Shutter"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"sYe" = (
/obj/machinery/computer/security/mining,
/turf/simulated/floor/wood,
@@ -34056,22 +33640,6 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
-"tfx" = (
-/obj/structure/closet/secure_closet/explorer,
-/obj/effect/floor_decal/borderfloor,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/floor_decal/corner/green/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/equipment)
"tgl" = (
/obj/structure/window/reinforced{
dir = 8
@@ -34373,14 +33941,20 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloorwhite/corner2{
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+<<<<<<< HEAD
+=======
+/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 9
},
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
"ttL" = (
@@ -34762,37 +34336,9 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/belterdock/refinery)
-"tRn" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/atrium)
"tUh" = (
/turf/simulated/wall,
/area/maintenance/cargo)
-"tUx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"tVq" = (
/obj/structure/railing{
dir = 1
@@ -34869,18 +34415,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
-"tZM" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"tZN" = (
/obj/machinery/door/airlock/multi_tile/glass,
/obj/effect/map_helper/airlock/door/simple,
@@ -34961,6 +34495,18 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
+"ufj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
"ugr" = (
/obj/machinery/power/terminal{
dir = 4
@@ -35030,6 +34576,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
+<<<<<<< HEAD
"ulT" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/floor_decal/industrial/outline/grey,
@@ -35057,30 +34604,12 @@
},
/turf/simulated/floor/tiled/eris/white,
/area/shuttle/medivac/general)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"uno" = (
/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/warehouse)
-"unu" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/science{
- name = "Pathfinder";
- req_access = null;
- req_one_access = list(44)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/exploration/pathfinder_office)
"unH" = (
/obj/machinery/door/window/brigdoor/westleft{
req_access = newlist();
@@ -35230,12 +34759,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
-"uyg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"uym" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -35307,23 +34830,14 @@
/obj/effect/floor_decal/corner/green/border{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"uDG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
/obj/machinery/camera/network/command{
dir = 9
},
/turf/simulated/floor/airless,
-/area/ai_monitored/storage/eva)
+/area/maintenance/cargo)
"uEv" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -35334,23 +34848,6 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/exploration)
-"uFs" = (
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 6
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = -3
- },
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"uGb" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -35375,6 +34872,7 @@
pixel_x = -23
},
/turf/simulated/floor/tiled,
+<<<<<<< HEAD
/area/tether/station/dock_two)
"uGl" = (
/obj/structure/table/rack{
@@ -35390,6 +34888,9 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
+=======
+/area/hallway/station/docks)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"uHl" = (
/obj/structure/railing{
dir = 8
@@ -35404,12 +34905,6 @@
/obj/random/maintenance/research,
/turf/simulated/floor,
/area/maintenance/station/exploration)
-"uHv" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
"uId" = (
/obj/structure/closet/crate,
/obj/random/junk,
@@ -35629,13 +35124,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/steel_grid,
/area/engineering/foyer)
-"uTu" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Explorer"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"uTC" = (
<<<<<<< HEAD
/obj/machinery/power/breakerbox/activated{
@@ -35783,24 +35271,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"uYV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/button/windowtint{
- dir = 4;
- id = "pathfinder_office";
- pixel_x = -24
- },
-/obj/structure/closet/secure_closet/pathfinder{
- req_access = list(62,43,67)
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 8
- },
-/obj/item/device/bluespaceradio/tether_prelinked,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
"uZb" = (
/obj/machinery/access_button{
command = "cycle_interior";
@@ -35824,11 +35294,28 @@
/obj/structure/bed/chair/shuttle,
/turf/simulated/shuttle/floor/yellow,
/area/shuttle/mining_outpost/shuttle)
+<<<<<<< HEAD
"vbm" = (
/obj/structure/table/woodentable,
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/tether/exploration/crew)
+=======
+"vaR" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/tether/station/dock_two)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"vbA" = (
/obj/structure/table/standard,
/obj/random/medical,
@@ -35928,6 +35415,14 @@
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor,
/area/tether/station/dock_two)
+"vjj" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"vkg" = (
/obj/machinery/bodyscanner{
dir = 4
@@ -35971,26 +35466,42 @@
},
/turf/simulated/floor/tiled,
/area/engineering/hallway)
-"vms" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Explorer"
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
"vmt" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = 4;
+ pixel_y = -6
+ },
+/obj/item/weapon/storage/backpack/parachute{
+ pixel_x = -4;
+ pixel_y = -6
},
-/obj/effect/floor_decal/corner/green/bordercorner,
/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/area/ai_monitored/storage/eva)
"vns" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/wall/rshull,
@@ -36010,6 +35521,13 @@
"voE" = (
/turf/simulated/wall/r_wall,
/area/tether/station/dock_two)
+"voI" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/floodlight,
+/turf/simulated/floor/tiled/dark,
+/area/gateway/prep_room)
"voN" = (
/obj/machinery/access_button{
command = "cycle_exterior";
@@ -36031,12 +35549,11 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
"vrr" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"vrE" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -36093,6 +35610,7 @@
},
/turf/simulated/floor/tiled,
/area/shuttle/medivac/engines)
+<<<<<<< HEAD
>>>>>>> 4ccd512332... Merge pull request #12923 from KillianKirilenko/kk-shipfixes
"vtx" = (
/obj/machinery/sleep_console{
@@ -36107,6 +35625,8 @@
/obj/machinery/camera/network/exploration,
/turf/simulated/floor/tiled/white,
/area/tether/exploration/hallway)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"vuu" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -36248,23 +35768,12 @@
/turf/simulated/wall,
/area/hallway/station/docks)
"vCA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/corner/green/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
"vDW" = (
/obj/structure/cable/green{
d1 = 1;
@@ -36320,14 +35829,33 @@
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
"vHM" = (
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
},
-/turf/simulated/floor,
-/area/maintenance/station/exploration)
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"vIg" = (
/obj/structure/cable{
d1 = 1;
@@ -36388,6 +35916,7 @@
/obj/random/tech_supply,
/turf/simulated/floor/tiled,
/area/storage/tools)
+<<<<<<< HEAD
"vMe" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -36435,6 +35964,8 @@
/obj/effect/map_helper/airlock/atmos/chamber_pump,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"vNl" = (
/obj/structure/cable/green{
d1 = 4;
@@ -36535,6 +36066,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/gear)
+<<<<<<< HEAD
"vXw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 8
@@ -36563,6 +36095,8 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"vYm" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -36701,7 +36235,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"wdk" = (
@@ -36964,14 +36500,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/eng_lower)
-"wDI" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/obj/machinery/light,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/item/weapon/storage/box/nifsofts_pilot,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
"wEF" = (
/obj/machinery/conveyor{
dir = 1;
@@ -36982,6 +36510,28 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
+"wFN" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
+"wHt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
"wHC" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -36995,6 +36545,10 @@
/obj/effect/floor_decal/corner/green/border{
dir = 4
},
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled,
/area/tether/exploration/hallway)
"wHG" = (
@@ -37153,15 +36707,18 @@
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
"wNa" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
+/obj/machinery/vending/wallmed_airlock{
+ pixel_x = -28
},
-/obj/effect/landmark/start{
- name = "Pathfinder"
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pathfinder_office)
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/tether/exploration/hallway)
"wPp" = (
/obj/effect/floor_decal/fancy_shuttle{
fancy_shuttle_tag = "lifeboat2"
@@ -37229,9 +36786,6 @@
/obj/effect/floor_decal/corner/lightgrey/border{
dir = 4
},
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 10
},
@@ -37241,8 +36795,14 @@
/turf/simulated/floor/tiled,
/area/hallway/station/atrium)
"wSt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
/turf/simulated/floor/tiled,
-/area/gateway/prep_room)
+/area/ai_monitored/storage/eva)
"wSv" = (
/obj/machinery/alarm{
dir = 4;
@@ -37254,15 +36814,14 @@
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
"wUa" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "GateShut";
- layer = 3.3;
- name = "Gateway Shutter"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"wWh" = (
/obj/structure/table/rack{
dir = 8;
@@ -37289,6 +36848,15 @@
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
/area/tether/station/dock_one)
+"wXJ" = (
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
+"wYx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"wYD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -37324,14 +36892,9 @@
},
/area/shuttle/excursion/general)
"xat" = (
-/obj/effect/landmark/start{
- name = "Pilot"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/grass,
+/area/hallway/station/atrium)
"xbm" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -37411,8 +36974,14 @@
/turf/simulated/floor/tiled/steel,
/area/shuttle/excursion/general)
"xdE" = (
-/turf/simulated/wall/r_wall,
-/area/gateway)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva)
"xdJ" = (
/obj/structure/cable/green{
d2 = 8;
@@ -37584,11 +37153,14 @@
name = "\improper Telecomms Lobby"
})
"xmh" = (
-/obj/machinery/gateway{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/gateway)
+/turf/simulated/floor/tiled/monotile,
+/area/ai_monitored/storage/eva)
"xnM" = (
/obj/machinery/firealarm{
dir = 1;
@@ -37601,9 +37173,33 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/janitor)
+<<<<<<< HEAD
"xpA" = (
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+"xoV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/wall/fancy_shuttle{
+ fancy_shuttle_tag = "medbus"
+ },
+/area/shuttle/medivac/general)
+"xpa" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/fancy_shuttle{
+ fancy_shuttle_tag = "medbus";
+ name = "medbus"
+ },
+/turf/simulated/floor/tiled,
+/area/shuttle/medivac/general)
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"xqM" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -37684,12 +37280,13 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/gateway/prep_room)
<<<<<<< HEAD
+<<<<<<< HEAD
"xwd" = (
/obj/structure/sign/redcross,
/turf/simulated/wall/rshull,
@@ -37702,7 +37299,27 @@
id = "PubPrepFront";
layer = 3.3;
name = "Gateway Prep Shutter"
+=======
+"xuP" = (
+/obj/effect/landmark/start{
+ name = "Pilot"
},
+/obj/machinery/button/remote/airlock{
+ id = "pilotB";
+ name = "Room B Lock";
+ pixel_y = 25;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/tether/exploration/pilot_office)
+"xwg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37716,7 +37333,7 @@
icon_state = "4-8"
},
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
+/turf/simulated/floor/tiled/steel_ridged,
/area/gateway/prep_room)
"xwI" = (
/obj/structure/extinguisher_cabinet{
@@ -37741,6 +37358,15 @@
/obj/random/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
+"xxH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/gateway/prep_room)
"xyw" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
@@ -37778,16 +37404,6 @@
/area/tcomsat{
name = "\improper Telecomms Lobby"
})
-"xAo" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"xAD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -37800,6 +37416,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/refinery)
+<<<<<<< HEAD
"xBE" = (
/obj/structure/table/steel,
/obj/item/stack/flag/yellow{
@@ -37824,6 +37441,8 @@
},
/turf/simulated/floor/tiled,
/area/ai_monitored/storage/eva)
+=======
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
"xCd" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/disposalpipe/segment{
@@ -37852,12 +37471,6 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"xCx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
"xCX" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -38029,35 +37642,42 @@
/obj/effect/floor_decal/corner_techfloor_grid{
dir = 5
},
+<<<<<<< HEAD
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/sleep/cryo)
"xPm" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
+=======
+/turf/simulated/floor/tiled,
+/area/shuttle/medivac/engines)
+"xPD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/camera/network/exploration{
dir = 5
},
-/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/ai_monitored/storage/eva)
+/area/tether/exploration/pilot_office)
"xPO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "eva_airlock";
+ pixel_y = 24
},
-/turf/simulated/floor/tiled,
-/area/tether/exploration/crew)
-"xPQ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/airlock_sensor{
+ id_tag = "eva_sensor";
+ pixel_y = 32
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_pump"
},
-/turf/simulated/floor/tiled,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
"xQi" = (
/obj/structure/cable/green{
@@ -38076,22 +37696,15 @@
/turf/simulated/floor,
/area/maintenance/station/exploration)
"xQA" = (
-/obj/effect/map_helper/airlock/sensor/chamber_sensor,
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- dir = 8;
- id_tag = "eva_airlock";
- pixel_x = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/obj/machinery/airlock_sensor{
- id_tag = "eva_sensor";
- pixel_x = 24;
- pixel_y = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
+/turf/simulated/wall,
+/area/maintenance/cargo)
"xQD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -38140,9 +37753,21 @@
},
/turf/simulated/floor/tiled,
/area/tcommsat/computer)
+"xTg" = (
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled/milspec,
+/area/tether/exploration/pilot_office)
"xTB" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/chamber)
+"xTN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/exploration/pilot_office)
"xUb" = (
/obj/effect/floor_decal/industrial/loading{
dir = 1
@@ -38271,16 +37896,17 @@
name = "\improper Telecomms Lobby"
})
"ybD" = (
-/obj/structure/table/rack/shelf,
-/obj/item/weapon/tank/oxygen,
-/obj/item/device/suit_cooling_unit,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/suit/space/void/pilot,
-/obj/item/clothing/head/helmet/space/void/pilot,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/green/border,
-/turf/simulated/floor/tiled,
-/area/tether/exploration/pilot_office)
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "GateShut";
+ layer = 3.3;
+ name = "Gateway Shutter"
+ },
+/turf/simulated/floor/plating,
+/area/gateway/prep_room)
"ybO" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -38288,14 +37914,14 @@
/obj/machinery/holoposter{
pixel_y = -30
},
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
/area/tether/station/dock_two)
<<<<<<< HEAD
@@ -45703,6 +45329,7 @@ xMk
isr
fji
vCj
+<<<<<<< HEAD
fLT
fLT
voE
@@ -45723,6 +45350,28 @@ aaa
aaa
aaa
aaa
+=======
+vCj
+vCj
+vCj
+vCj
+vCj
+vCj
+aDv
+aDv
+wHt
+wHt
+aDv
+aDv
+wHt
+wHt
+aDv
+aDv
+wHt
+wHt
+aDv
+aDv
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
aaa
aaa
aaa
@@ -45851,20 +45500,20 @@ wQf
jyJ
mQh
uGb
-jab
-bEW
-pmE
-oWU
-tal
-tal
-tal
-tal
-tal
-tal
-tal
-duP
-aaa
-aaa
+aDv
+tUh
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+aDv
aaa
aaa
aaa
@@ -45994,19 +45643,19 @@ bqi
fjP
nCV
sVz
-aCz
-myN
-cTd
-tal
-eZg
-qGn
-tal
-qzo
-iKm
-tal
-aaa
-aaa
-aaa
+xQA
+fvo
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+fxc
aaa
aaa
aaa
@@ -46136,19 +45785,19 @@ trQ
mOz
nEB
nZC
-aAV
-iDc
-jkV
-uyg
-uyg
-uyg
-xPQ
-uyg
-qUr
-tal
-tal
-tal
-tal
+tUh
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+fxc
aaa
aaa
aaa
@@ -46277,20 +45926,20 @@ tUh
tUh
tUh
tUh
-tal
-vML
-liM
-xpA
-pyP
-qoB
-qWs
-sIo
-tZM
-jkV
-vMe
-uyg
-xBF
-tal
+aDv
+tUh
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+aDv
aaa
aaa
aaa
@@ -46419,20 +46068,20 @@ lqr
mqL
mPj
mPj
-tal
-cDF
-rtP
-xCx
-pDf
-xCx
-xCx
-xCx
-omi
-lvV
-vMN
-fWt
-xPm
-tal
+aDv
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+aDv
ahW
ahW
aaa
@@ -46561,21 +46210,21 @@ pGr
eTo
ohn
nJb
-tal
-gnV
-xpA
-xpA
-pSR
-qrF
-ekj
-sPJ
-uFs
-bJm
-tal
-bHG
-pAj
-tal
-kpr
+aDv
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+fxc
+sNZ
ahW
aaa
aaa
@@ -46703,20 +46352,20 @@ qiw
aHq
rVd
nNV
-tal
-gLW
-qQx
-qQx
-qQx
-qQx
-qQx
-qQx
-qQx
-xAo
-tal
-vNj
-aHc
-cfy
+aDv
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+fxc
sNZ
ahW
aaa
@@ -46845,20 +46494,20 @@ tUh
tUh
tUh
tUh
-tal
-ulT
-uHv
-eom
-bzq
-qrP
-qYg
-tal
-vYj
-uGl
-tal
-bHN
-xQA
-cfy
+aDv
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+wBw
+aDv
uDG
ahW
aaa
@@ -46988,6 +46637,13 @@ rkH
heB
llt
aDv
+tUh
+tUh
+tUh
+tUh
+tUh
+rdo
+iss
aDv
aDv
aDv
@@ -46995,13 +46651,6 @@ aDv
aDv
aDv
aDv
-aDv
-tal
-tal
-tal
-tal
-tal
-tal
ahW
ahW
ahW
@@ -47419,7 +47068,7 @@ tUh
tUh
tUh
tUh
-tUh
+iss
toy
tUh
tUh
@@ -47946,7 +47595,7 @@ abC
abC
abC
kVz
-abC
+egy
abC
abC
abC
@@ -48085,19 +47734,19 @@ pny
pny
pny
pny
-knk
-ach
+mIs
+mIs
+ack
+ack
+ach
+oer
+xTg
+euy
+oer
+euy
+xTg
+oer
ack
-ajY
-kvF
-ami
-ajY
-lHv
-mau
-msn
-anc
-mYJ
-abC
bhG
wku
aDM
@@ -48227,19 +47876,19 @@ adh
hry
adX
pny
-knk
ack
-ach
-ajY
-kxm
-bQG
-mQR
-pyy
-lIs
-mtm
-aZv
-bxi
-abC
+ack
+ack
+ack
+mIs
+oer
+ohc
+nHx
+oer
+xuP
+qTD
+oer
+ack
azJ
wku
pBP
@@ -48369,18 +48018,18 @@ bfo
adw
aef
pny
+ack
+iGO
+iGO
iGO
iGO
oer
oer
+oGc
+oer
+mdM
oer
oer
-oer
-ash
-jQR
-muY
-mIs
-nay
abC
rot
wku
@@ -48511,18 +48160,18 @@ sUY
eWv
bYt
pny
-aao
-jPM
+ach
+iGO
+wNa
+gCX
+npk
oer
-oTn
-uYV
-oTL
-oer
-lIF
-asP
-muY
-mIs
-nay
+wYx
+jDI
+quW
+oMQ
+xPD
+fnM
abC
cXs
wku
@@ -48653,18 +48302,18 @@ tiw
eWv
bYt
pny
-vtx
-aiJ
+ack
+iGO
+ctI
+gDl
+ogv
oer
-ajz
-wNa
-amM
-ake
-lIZ
-mgw
-myq
-mJd
-nbQ
+ldJ
+boC
+oeE
+iBk
+dnh
+vjj
abC
cXs
wku
@@ -48787,7 +48436,7 @@ wZB
wZB
wZB
wZB
-nYi
+fGW
aak
fGW
ruq
@@ -48795,18 +48444,18 @@ ruq
eWv
bYt
pny
-ahS
-aiL
+ack
+iGO
+cUD
+gDl
+otE
oer
-akc
-alV
-amT
-ake
-lIZ
-avb
-muY
-asP
-tfx
+mcE
+boC
+boC
+hkY
+boC
+mUb
bZv
azI
wku
@@ -48937,18 +48586,18 @@ haB
eWv
bYt
pny
-aii
-aiU
+ach
+iGO
+djU
+jgd
+oIV
oer
-akd
-alY
-amX
-oer
-asF
-mgT
-muY
-asP
-bDi
+ans
+wXJ
+wXJ
+joY
+itz
+xTN
bZv
cix
qpN
@@ -49079,18 +48728,18 @@ haB
eWv
ebG
pny
+aao
+iGO
iGO
-aiZ
-oer
-unu
-ake
ake
+iGO
+oer
+aEK
+aEK
oer
-ajY
-ajY
mzB
mKM
-ajY
+oer
bZv
rYh
acN
@@ -49235,7 +48884,7 @@ akf
jZT
uCB
oEs
-goL
+jiq
jiq
wAC
mCI
@@ -49245,11 +48894,19 @@ nFZ
jOH
acn
mnT
+<<<<<<< HEAD
vYJ
lcy
wRJ
tRn
vYJ
+=======
+wRJ
+wRJ
+wRJ
+wRJ
+wRJ
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
vYJ
dPx
rjV
@@ -49388,6 +49045,7 @@ aih
ort
cXm
smz
+<<<<<<< HEAD
smz
smz
smz
@@ -49416,6 +49074,13 @@ aaD
abU
aaD
=======
+=======
+dch
+dch
+dch
+dch
+bZv
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
oEH
pKC
aaD
@@ -49553,12 +49218,12 @@ bZv
aAL
jeL
fEF
-smz
+dch
adc
dch
dQR
eVP
-smz
+bZv
knK
xnM
xgV
@@ -49678,16 +49343,16 @@ cND
pPa
eWv
nDX
-scu
-scu
-scu
-scu
-scu
-scu
-kXm
-scu
-scu
-xNg
+tal
+tal
+tal
+tal
+tal
+tal
+tal
+tal
+tal
+tal
xNg
xNg
xNg
@@ -49697,10 +49362,10 @@ okq
beY
bth
pLb
-dge
+xat
lSR
-fpX
-smz
+xat
+bZv
vAk
fwt
xgV
@@ -49820,16 +49485,16 @@ jBW
kiG
eWv
hxD
-scu
+tal
ieS
iHb
-iHb
+tal
kbz
kIR
-kXK
+tal
lxl
lML
-xNg
+jab
aCo
baI
aCo
@@ -49839,10 +49504,10 @@ atx
xNg
xNg
xNg
-iAk
xat
-wDI
-smz
+xat
+xat
+bZv
cOq
xuf
xgV
@@ -49962,28 +49627,27 @@ gOT
haB
eWv
ops
-scu
-ifV
-iIf
-jsP
-kcy
-kJj
+tal
+ajj
+cfy
+cfy
+cfy
+oJt
kZA
-gIp
-nac
-xNg
-aEK
-baT
+mGG
+mGG
+wSt
baT
+ufj
+bZX
bQj
cca
aCA
bhK
bEu
xNg
-amm
-dUk
ybD
+<<<<<<< HEAD
smz
<<<<<<< HEAD
bfH
@@ -50008,6 +49672,11 @@ abQ
aca
aaD
=======
+=======
+ybD
+ybD
+fgh
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
etY
etY
aaD
@@ -50128,28 +49797,29 @@ gyH
haB
eWv
ops
-scu
+tal
ins
-iKY
-lcm
-kdF
-kJJ
-tUx
-ajj
-lPD
-xNg
-bpi
-wSt
+ctz
+ctz
+ctz
+pPw
+wUa
+jLF
+mdn
+fkr
+lBQ
+xxH
bFM
iWB
asN
aFZ
whg
bPl
-xNg
+sWX
saD
-dUk
+iUE
rci
+<<<<<<< HEAD
smz
hrw
pMg
@@ -50161,6 +49831,19 @@ hPZ
isi
jzJ
xgV
+=======
+fgh
+kcy
+key
+abn
+aaM
+kvF
+kxm
+kxG
+kJj
+acb
+aaD
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
qJu
kVK
lvh
@@ -50270,16 +49953,16 @@ ruq
fAB
eWv
hBS
-scu
+tal
iie
-ajj
-jtH
-kel
-kKh
-lbi
-lzl
-lTD
-xNg
+aii
+tal
+obA
+scu
+xdE
+cfy
+gjU
+pDE
aKG
bbT
bFR
@@ -50288,11 +49971,11 @@ cek
aIA
bFR
bPl
-xNg
-smz
+sWX
+kCj
ebM
-smz
-smz
+snX
+fgh
qnL
hTk
xgV
@@ -50412,30 +50095,30 @@ ruq
ruq
eWv
hBS
+tal
+tal
+tal
+tal
+jEf
scu
-hcw
-ajj
-uTu
-obA
-kxG
-all
+xdE
lAt
bkI
-xNg
+jab
aKJ
-bck
+oqF
bHw
xNg
xNg
cFs
bFR
ccz
-xNg
+sWX
amy
eLn
fIw
-smz
-hrw
+fgh
+juI
tHd
xgV
ivD
@@ -50554,30 +50237,30 @@ sUY
sUY
eWv
hCJ
-scu
-iiQ
-ajj
-juI
-key
-vbm
-vms
-ajj
+tal
+apf
+ctB
+dYV
+lIB
+vCA
+xmh
+iyt
bmv
-xNg
+tal
aTV
-bck
+oqF
bFR
bSM
chD
aIA
-bFR
+wFN
cii
xNg
-djU
-smz
-smz
-smz
-hrw
+xNg
+fgh
+fgh
+fgh
+juI
tpq
xgV
xgV
@@ -50696,30 +50379,30 @@ bPD
ali
hss
pXr
-scu
-iiU
-ajj
+tal
+bxi
+aiJ
+kpK
kpK
-kfa
alj
-vmt
-vCA
+all
+iyt
plm
-xNg
+tal
aWJ
-bck
+hrI
oxg
hpE
xuu
cGh
-bFR
+oGG
geM
geM
xNg
uId
cfB
vBG
-hrw
+juI
xUI
fLT
gOd
@@ -50733,10 +50416,10 @@ yak
kMF
saf
fLT
-rCQ
-rTO
-odO
-fLT
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -50838,30 +50521,36 @@ gVQ
hbc
htA
qer
-scu
+tal
ajv
-ajj
-ajj
+aiL
+tal
vmt
+<<<<<<< HEAD
hqU
ajq
scu
+=======
+sxj
+pxB
+iyt
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
hlX
-xNg
-aXm
+tal
+bQG
bck
kEI
hVz
lVO
-aLV
-box
-col
+oGG
+oGG
+oGG
cqC
xNg
pMf
-bfH
-bfH
-hrw
+jtH
+jsP
+kdF
hrw
vga
odI
@@ -50874,16 +50563,16 @@ fLT
knX
qMM
qVz
-rqf
-rEb
-rTY
-lfK
fLT
aaa
aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
ahW
aaa
aaa
@@ -50980,32 +50669,40 @@ pny
pny
pny
pny
-scu
+tal
ajw
iMe
-ajE
+tal
ajq
scu
-scu
-scu
+ami
+asF
vHM
-xNg
+tal
aXm
bcx
aKG
aKG
aKG
-ctB
+aKG
fYY
oGG
-wSt
+voI
xNg
pMf
+<<<<<<< HEAD
hrw
etY
etY
etY
fLT
+=======
+juI
+aaq
+aat
+aaq
+voE
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
kcV
kcV
hFa
@@ -51015,17 +50712,17 @@ jnG
fLT
qKr
wmg
-lCO
-fLT
-aap
-rVK
-lnG
+qYW
fLT
aaa
aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
ahW
aaa
aaa
@@ -51122,16 +50819,16 @@ aac
aac
aac
aac
-scu
+tal
xPO
-xPO
-xPO
-scu
-scu
-aac
-etY
+aiU
+tal
+mLO
+vrr
+anc
+kpK
oWW
-xNg
+tal
xNg
bdy
bHV
@@ -51143,11 +50840,19 @@ bYa
ckR
xNg
pMf
+<<<<<<< HEAD
hrw
etY
aac
aac
fLT
+=======
+juI
+aaq
+aau
+aax
+voE
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
fLT
fLT
hFV
@@ -51157,17 +50862,17 @@ jEb
jYg
wbf
btr
-fQr
-fLT
-adO
-nRk
-odT
+jGw
fLT
aaa
aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
ahW
asG
asG
@@ -51264,16 +50969,28 @@ aac
aac
aac
aac
-aac
-aam
-aam
-aam
-aac
-aac
-aac
-etY
+tal
+ahS
+ctD
+tal
+aiZ
+ajE
+ash
+avb
apY
+tal
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
dul
+<<<<<<< HEAD
xdE
xdE
xdE
@@ -51290,6 +51007,13 @@ etY
aac
aac
aac
+=======
+juI
+aaq
+aaw
+aay
+aaq
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
aac
fLT
fLT
@@ -51301,6 +51025,7 @@ khN
rQq
ybO
fLT
+<<<<<<< HEAD
fLT
fLT
fLT
@@ -51310,6 +51035,17 @@ aaa
aaa
aaa
aaa
+=======
+ahW
+ahW
+ahW
+ahW
+ahW
+ahW
+ahW
+ahW
+ahW
+>>>>>>> 244095be9e... Merge pull request #14220 from Very-Soft/removeexplo
ahW
asG
asG
@@ -51409,23 +51145,23 @@ aac
aam
aam
aam
-aam
-aam
-aac
-aac
-etY
+tal
+tal
+tal
+tal
+tal
aul
-dVT
-xdE
-xmh
-ctz
-dYV
-wUa
-cUD
-lIB
-ogv
-gDl
-xdE
+tal
+aaq
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+aaq
uEU
jyP
etY
@@ -51558,18 +51294,18 @@ aac
etY
bfH
kSu
-xdE
-mLO
-ctD
-egy
-wUa
-lIB
-sxj
-npk
-vrr
-xdE
+aaq
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+aaq
uEU
-bfH
+jPM
etY
aac
aam
@@ -51798,18 +51534,18 @@ aaa
aam
aac
etY
-hrw
+aZv
xQj
-xdE
-apf
-ctI
-jEf
-wUa
-lIB
-lIB
-lIB
-lIB
-xdE
+aaq
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+pMf
+aaq
mmt
gGC
etY
@@ -52054,18 +51790,18 @@ aam
etY
bZd
uEU
-xdE
-xdE
-xdE
-xdE
-xdE
-otE
-jgd
-pPw
-oJt
-xdE
+aaq
+aaq
+aaq
+aaq
+aaq
pMf
-hrw
+pMf
+pMf
+pMf
+aaq
+pMf
+juI
etY
aac
aaa
@@ -52194,20 +51930,20 @@ aaa
aac
aac
etY
-hrw
-pMf
+aZv
pMf
+dVT
cCM
biX
lUV
-xdE
-xdE
-xdE
-xdE
-xdE
-xdE
+aaq
+aaq
+aaq
+aaq
+aaq
+aaq
pMf
-bfH
+jPM
etY
aac
aaa
@@ -52336,20 +52072,20 @@ aaa
aac
aac
etY
-hrw
-hrw
-hrw
-bfH
-hrw
-hrw
-hrw
-hrw
-hrw
+bpi
+bDi
+gIp
+hcw
+ifV
+iiU
+iIf
+iKY
+iKY
bWY
-bfH
-hrw
-hrw
-bfH
+jsP
+iKY
+iKY
+jQR
etY
aac
aaa
diff --git a/maps/tether/tether_telecomms.dm b/maps/tether/tether_telecomms.dm
index baaff3fb76..d2e6f8d0be 100644
--- a/maps/tether/tether_telecomms.dm
+++ b/maps/tether/tether_telecomms.dm
@@ -13,7 +13,7 @@
network = "tcommsat"
autolinkers = list("hub",
"tether_relay", "c_relay", "m_relay", "r_relay",
- "science", "medical", "supply", "service", "common", "command", "engineering", "security", "explorer", "unused",
+ "science", "medical", "supply", "service", "common", "command", "engineering", "security", "Away Team", "unused",
"hb_relay", "receiverA", "broadcasterA"
)
@@ -29,7 +29,7 @@
/obj/machinery/telecomms/server/presets/service/tether
freq_listening = list(SRV_FREQ, EXP_FREQ)
- autolinkers = list("service", "explorer")
+ autolinkers = list("service", "Away Team")
// Telecommunications Satellite
/area/tether/surfacebase/tcomms
@@ -78,13 +78,13 @@
num2text(SCI_FREQ) = list(access_tox,access_robotics,access_xenobiology),
num2text(SUP_FREQ) = list(access_cargo),
num2text(SRV_FREQ) = list(access_janitor, access_hydroponics),
- num2text(EXP_FREQ) = list(access_explorer)
+ num2text(EXP_FREQ) = list(access_awayteam)
)
-/obj/item/device/multitool/tether_buffered
+/obj/item/device/multitool/station_buffered
name = "pre-linked multitool (tether hub)"
desc = "This multitool has already been linked to the Tether telecomms hub and can be used to configure one (1) relay."
-/obj/item/device/multitool/tether_buffered/Initialize()
+/obj/item/device/multitool/station_buffered/Initialize()
. = ..()
buffer = locate(/obj/machinery/telecomms/hub/preset/tether)
diff --git a/maps/yw/submaps/rogue_mines/groundbase_shuttles.dm b/maps/yw/submaps/rogue_mines/groundbase_shuttles.dm
index 66e856e828..1c21e86cf5 100644
--- a/maps/yw/submaps/rogue_mines/groundbase_shuttles.dm
+++ b/maps/yw/submaps/rogue_mines/groundbase_shuttles.dm
@@ -143,3 +143,82 @@
requires_power = 0
dynamic_lighting = 0
+//AXOLOTL
+
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/axolotl
+ name = "short jump console"
+ shuttle_tag = "Axolotl"
+
+// The 'shuttle'
+/datum/shuttle/autodock/overmap/axolotl
+ name = "Axolotl"
+ current_location = "omship_axolotl"
+ docking_controller_tag = "axolotl_docking"
+ shuttle_area = list(/area/shuttle/axolotl,/area/shuttle/axolotl_cockpit,/area/shuttle/axolotl_engineering,/area/shuttle/axolotl_q1,/area/shuttle/axolotl_q2,/area/shuttle/axolotl_galley,/area/shuttle/axolotl_head)
+ defer_initialisation = TRUE //We're not loaded until an admin does it
+ fuel_consumption = 5
+ ceiling_type = /turf/simulated/floor/reinforced/airless
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/axolotl
+ name = "ITV Axolotl"
+ base_area = /area/submap/groundbase/wilderness/west
+ base_turf = /turf/simulated/floor/outdoors/sidewalk/slab/virgo3c
+ landmark_tag = "omship_axolotl"
+ shuttle_type = /datum/shuttle/autodock/overmap/axolotl
+
+// The 'ship'
+/obj/effect/overmap/visitable/ship/landable/axolotl
+ name = "ITV Axolotl"
+ scanner_desc = @{"[i]Registration[/i]: ITV Axolotl
+[i]Class[/i]: Corvette
+[i]Transponder[/i]: Transmitting (CIV), non-hostile
+[b]Notice[/b]: Multirole independent vessel"}
+ vessel_mass = 4500
+ vessel_size = SHIP_SIZE_LARGE
+ fore_dir = EAST
+ shuttle = "Axolotl"
+ known = TRUE
+
+/area/shuttle/axolotl
+ name = "\improper Axolotl Cabin"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "gray"
+ requires_power = 1
+
+/area/shuttle/axolotl_engineering
+ name = "\improper Axolotl Engineering"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "yellow"
+ requires_power = 1
+
+/area/shuttle/axolotl_cockpit
+ name = "\improper Axolotl Cockpit"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "blue"
+ requires_power = 1
+
+/area/shuttle/axolotl_q1
+ name = "\improper Axolotl Quarters 1"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "gray-p"
+ requires_power = 1
+
+/area/shuttle/axolotl_q2
+ name = "\improper Axolotl Quarters 2"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "gray-s"
+ requires_power = 1
+
+/area/shuttle/axolotl_galley
+ name = "\improper Axolotl Galley"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "dark-s"
+ requires_power = 1
+
+/area/shuttle/axolotl_head
+ name = "\improper Axolotl Head"
+ icon = 'icons/turf/areas_vr_talon.dmi'
+ icon_state = "dark-p"
+ requires_power = 1
diff --git a/modular_chomp/code/game/machinery/autolathe_armory.dm b/modular_chomp/code/game/machinery/autolathe_armory.dm
new file mode 100644
index 0000000000..2fd73bb3bf
--- /dev/null
+++ b/modular_chomp/code/game/machinery/autolathe_armory.dm
@@ -0,0 +1,30 @@
+/obj/machinery/autolathe/armory
+ name = "ammolathe"
+ desc = "An autolathe that produces ammunition using metal and glass."
+ hacked = 1
+
+/obj/machinery/autolathe/armory/tgui_static_data(mob/user)
+ var/list/data = ..()
+
+ var/list/categories = list()
+ var/list/recipes = list()
+ for(var/datum/category_group/autolathe/A in autolathe_recipes.categories)
+ categories += A.name
+ for(var/datum/category_item/autolathe/arms/M in A.items)
+ if(M.hidden && !hacked)
+ continue
+ if(M.man_rating > man_rating)
+ continue
+ recipes.Add(list(list(
+ "category" = A.name,
+ "name" = M.name,
+ "ref" = REF(M),
+ "requirements" = M.resources,
+ "hidden" = M.hidden,
+ "coeff_applies" = !M.no_scale,
+ "is_stack" = M.is_stack,
+ )))
+ data["recipes"] = recipes
+ data["categories"] = categories
+
+ return data
\ No newline at end of file
diff --git a/modular_chomp/code/modules/economy/cash_register.dm b/modular_chomp/code/modules/economy/cash_register.dm
new file mode 100644
index 0000000000..7b4e3366f2
--- /dev/null
+++ b/modular_chomp/code/modules/economy/cash_register.dm
@@ -0,0 +1,23 @@
+/obj/machinery/cash_register/medical
+ req_access = list()
+ req_one_access = list(access_medical,access_heads)
+
+/obj/machinery/cash_register/engineering
+ req_access = list()
+ req_one_access = list(access_engine_equip,access_heads)
+
+/obj/machinery/cash_register/science
+ req_access = list()
+ req_one_access = list(access_tox,access_heads)
+
+/obj/machinery/cash_register/security
+ req_access = list()
+ req_one_access = list(access_brig,access_heads)
+
+/obj/machinery/cash_register/cargo
+ req_access = list()
+ req_one_access = list(access_cargo,access_heads)
+
+/obj/machinery/cash_register/civilian
+ req_access = list()
+ req_one_access = list(access_kitchen,access_bar,access_hydroponics,access_heads)
\ No newline at end of file
diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/outsider/vox.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/outsider/vox.dm
index 36ddf65e96..0bf5cdec72 100644
--- a/modular_chomp/code/modules/mob/living/carbon/human/species/outsider/vox.dm
+++ b/modular_chomp/code/modules/mob/living/carbon/human/species/outsider/vox.dm
@@ -1,4 +1,7 @@
/datum/species/vox
+ icobase = 'icons/mob/human_races/r_vox_ch.dmi'
+ tail = "voxtail"
+ tail_animation = 'icons/mob/species/vox/tail.dmi'
speech_chance = 50 // As long as we're making the option to disable it, might as well bump up the chances when it is enabled
inherent_verbs = list(
/mob/living/carbon/human/proc/toggle_speech_sounds
diff --git a/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm b/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm
index 9e41c0f118..ab6be6cb9c 100644
--- a/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm
+++ b/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm
@@ -16,7 +16,7 @@
for(var/f in list(BP_L_FOOT, BP_R_FOOT))
var/obj/item/organ/external/foot/foot = get_organ(f)
- if(istype(foot) && foot.is_hidden_by_tail()) //If either foot is hidden by the tail, don't render footwear.
+ if(istype(foot) && foot.is_hidden_by_sprite_accessory()) //If either foot is hidden by the tail, don't render footwear.
return
var/obj/item/clothing/shoes/shoe = shoes
@@ -107,4 +107,4 @@
/mob/living/carbon/human/update_tail_showing()
. = ..()
- update_vore_tail_sprite()
\ No newline at end of file
+ update_vore_tail_sprite()
diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultist_ch.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultist_ch.dm
new file mode 100644
index 0000000000..fdae87c5ad
--- /dev/null
+++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/humanoid/cultist_ch.dm
@@ -0,0 +1,45 @@
+/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt/fireball //Teleporting Cultists, now with fireballs
+ name = "Burning Mage"
+ desc = "An indiuval wrapped up in red robes, with orange highlights, their paws glowing.."
+ icon_state = "fire-fluff"
+ icon_living = "fire-fluff"
+ special_attack_min_range = 4
+ special_attack_max_range = 7
+ special_attack_cooldown = 10 SECONDS
+
+ harm_intent_damage = 5
+ melee_damage_lower = 5
+ melee_damage_upper = 10
+
+ ai_holder_type = /datum/ai_holder/simple_mob/ranged
+ projectiletype = /obj/item/projectile/energy/fireball
+
+/mob/living/simple_mob/humanoid/cultist/noodle
+ name = "Converted"
+ desc = "An indiuval wrapped up in a makeshift rig, made from fallen cultist."
+ icon_state = "cobra-cultist"
+ icon_living = "cobra-cultist"
+ maxHealth = 150
+ health = 150
+
+ faction = "cult"
+
+ status_flags = 0
+
+ response_help = "pokes"
+ response_disarm = "shoves"
+ response_harm = "hits"
+
+ harm_intent_damage = 5
+ melee_damage_lower = 15
+ melee_damage_upper = 25
+ attack_sharp = 1
+ attack_edge = 1
+ attacktext = list("slashed", "stabbed")
+ armor = list(melee = 60, bullet = 40, laser = 60, energy = 80, bomb = 25, bio = 100, rad = 100)
+ attack_sound = 'sound/weapons/rapidslice.ogg'
+ movement_cooldown = 4
+ projectiletype = /obj/item/projectile/energy/plasma/vepr
+ projectilesound = 'sound/weapons/spiderlunge.ogg'
+ movement_cooldown = 2
+ ai_holder_type = /datum/ai_holder/simple_mob/ranged
\ No newline at end of file
diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm
new file mode 100644
index 0000000000..dde3353fd5
--- /dev/null
+++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm
@@ -0,0 +1,29 @@
+/mob/living/simple_mob/construct/juggernaut/behemoth/unstoppable
+ name = "Behemoth"
+ real_name = "Behemoth"
+ desc = "The pinnacle of occult technology, Behemoths are nothing shy of both an Immovable Object, and Unstoppable Force."
+ melee_damage_lower = 45
+ melee_damage_upper = 55
+ ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax
+ projectiletype = /obj/item/projectile/icicle
+
+
+/mob/living/simple_mob/construct/juggernaut/behemoth/unstoppable/bullet_act(var/obj/item/projectile/P)
+ var/reflectchance = 20 - round(P.damage/3)
+ if(prob(reflectchance))
+ visible_message("The [P.name] gets reflected by [src]'s shell!", \
+ "The [P.name] gets reflected by [src]'s shell!")
+
+ // Find a turf near or on the original location to bounce to
+ if(P.starting)
+ var/new_x = P.starting.x + pick(0, 0, -1, 1, -2, 2, -2, 2, -2, 2, -3, 3, -3, 3)
+ var/new_y = P.starting.y + pick(0, 0, -1, 1, -2, 2, -2, 2, -2, 2, -3, 3, -3, 3)
+ var/turf/curloc = get_turf(src)
+
+ // redirect the projectile
+ P.redirect(new_x, new_y, curloc, src)
+ P.reflected = 1
+
+ return -1 // complete projectile permutation
+
+ return (..(P))
\ No newline at end of file
diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm
index d00e72942d..201b66db6c 100644
--- a/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm
+++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm
@@ -1,6 +1,3 @@
-/datum/sprite_accessory/marking
- var/hide_body_parts = list()
-
/datum/sprite_accessory/marking/ch/anthrovirus_ra
name = "Anthro Virus (Right Arm)"
icon_state = "anthrovirus"
@@ -181,4 +178,4 @@
name = "Normal Eyes"
icon_state = "normeyes"
body_parts = list(BP_HEAD)
- color_blend_mode = ICON_MULTIPLY
\ No newline at end of file
+ color_blend_mode = ICON_MULTIPLY
diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm
index eb4e8461f9..61592cb852 100644
--- a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm
+++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm
@@ -5,6 +5,103 @@
/datum/sprite_accessory/tail/taur/wolf
vore_tail_sprite_variant = "N"
+/datum/sprite_accessory/tail/taur/ch
+ icon = 'icons/mob/vore/taurs_ch.dmi'//Parent which allows us to not need to set icon every time.
+
+/datum/sprite_accessory/tail/taur/ch/zorgoia
+ name = "Zorgoia (Taur)"
+ icon_state = "zorgoia"
+ extra_overlay = "zorgoia_fluff"
+
+/datum/sprite_accessory/tail/taur/ch/zorgoia/fat
+ name = "Zorgoia (Fat Taur)"
+ extra_overlay = "zorgoia_fat"
+
+/datum/sprite_accessory/tail/taur/ch/redpanda
+ name = "Red Panda (Taur)"
+ icon_state = "redpanda"
+
+/datum/sprite_accessory/tail/taur/ch/redpandadc
+ name = "Red Panda (Taur dual-color)"
+ icon_state = "redpanda_dc"
+ extra_overlay = "redpanda_dc_markings"
+
+/datum/sprite_accessory/tail/taur/ch/wolf/fatwolf_2c/fatwolfalt
+ name = "Fat Wolf 3-color-alt (Taur)"
+ icon_state = "fatwolfalt_s"
+ extra_overlay = "fatwolfalt_markings1"
+ extra_overlay2 = "fatwolfalt_markings2"
+ icon_sprite_tag = "wolf"
+
+/datum/sprite_accessory/tail/taur/ch/naga/alt
+ name = "Naga alt (Taur)"
+ icon_state = "naga_alt_s"
+ suit_sprites = 'modular_chomp/icons/mob/taursuits_naga_ch.dmi'
+
+ msg_owner_help_walk = "You carefully slither around %prey."
+ msg_prey_help_walk = "%owner's huge tail slithers past beside you!"
+
+ msg_owner_help_run = "You carefully slither around %prey."
+ msg_prey_help_run = "%owner's huge tail slithers past beside you!"
+
+ msg_owner_disarm_run = "Your tail slides over %prey, pushing them down to the ground!"
+ msg_prey_disarm_run = "%owner's tail slides over you, forcing you down to the ground!"
+
+ msg_owner_disarm_walk = "You push down on %prey with your tail, pinning them down under you!"
+ msg_prey_disarm_walk = "%owner pushes down on you with their tail, pinning you down below them!"
+
+ msg_owner_harm_run = "Your heavy tail carelessly slides past %prey, crushing them!"
+ msg_prey_harm_run = "%owner quickly goes over your body, carelessly crushing you with their heavy tail!"
+
+ msg_owner_harm_walk = "Your heavy tail slowly and methodically slides down upon %prey, crushing against the floor below!"
+ msg_prey_harm_walk = "%owner's thick, heavy tail slowly and methodically slides down upon your body, mercilessly crushing you into the floor below!"
+
+ msg_owner_grab_success = "You slither over %prey with your large, thick tail, smushing them against the ground before coiling up around them, trapping them within the tight confines of your tail!"
+ msg_prey_grab_success = "%owner slithers over you with their large, thick tail, smushing you against the ground before coiling up around you, trapping you within the tight confines of their tail!"
+
+ msg_owner_grab_fail = "You squish %prey under your large, thick tail, forcing them onto the ground!"
+ msg_prey_grab_fail = "%owner pins you under their large, thick tail, forcing you onto the ground!"
+
+ msg_prey_stepunder = "You jump over %prey's thick tail."
+ msg_owner_stepunder = "%owner bounds over your tail."
+
+
+/datum/sprite_accessory/tail/taur/ch/naga/alt_2c
+ name = "Naga dual-color alt (Taur)"
+ icon_state = "naga_alt_s"
+ extra_overlay = "naga_alt_markings"
+ suit_sprites = 'modular_chomp/icons/mob/taursuits_naga_ch.dmi'
+
+/datum/sprite_accessory/tail/taur/ch/horse/scoli
+ name = "Scolipede (Taur)"
+ icon_state = "scoli_s"
+ extra_overlay = "scoli_markings1"
+ extra_overlay2 = "scoli_markings2"
+
+/datum/sprite_accessory/tail/taur/ch/sergal/wheaties
+ name = "Sergal (Taur)"
+ icon_state = "sergwheat"
+ icon_sprite_tag = "wolf"
+ vore_tail_sprite_variant = "N"
+
+/datum/sprite_accessory/tail/taur/ch/sergal/fatwheaties
+ name = "Fat Sergal (Taur)"
+ icon_state = "fatsergal"
+ icon_sprite_tag = "wolf"
+
+/datum/sprite_accessory/tail/taur/ch/sergal/wheaties_2c
+ name = "Sergal (Taur, dual-color)"
+ icon_state = "sergwheat"
+ extra_overlay = "sergwheat_markings"
+ icon_sprite_tag = "wolf"
+ vore_tail_sprite_variant = "N"
+
+/datum/sprite_accessory/tail/taur/ch/sergal/fatwheaties_2c
+ name = "Fat Sergal (Taur, dual-color)"
+ icon_state = "fatsergal"
+ extra_overlay = "sergwheat_markings"
+ icon_sprite_tag = "wolf"
+
/datum/sprite_accessory/tail/taur/ch/longvirus
name = "Long Virus (Taur)"
icon_state = "longvirus_s"
diff --git a/modular_chomp/code/modules/research/designs/weapons.dm b/modular_chomp/code/modules/research/designs/weapons.dm
index 58a7d23be6..daefa87dcd 100644
--- a/modular_chomp/code/modules/research/designs/weapons.dm
+++ b/modular_chomp/code/modules/research/designs/weapons.dm
@@ -3,7 +3,7 @@
desc = "Stuff it with paper and shoot! You'll be a hit at every party."
id = "confetti_cannon"
req_tech = list(TECH_COMBAT = 2, TECH_MATERIAL = 2)
- materials = list(DEFAULT_WALL_MATERIAL = 3000, "glass" = 3000)
+ materials = list(MAT_STEEL = 3000, MAT_GLASS = 3000)
build_path = /obj/item/weapon/gun/launcher/confetti_cannon
sort_string = "MAAVD"
@@ -11,34 +11,71 @@
/datum/design/item/weapon/phase/phase_pistol
id = "phasepistol"
req_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 2, TECH_POWER = 2)
- materials = list(DEFAULT_WALL_MATERIAL = 4000, MAT_COPPER = 30)
+ materials = list(MAT_STEEL = 4000, MAT_GLASS = 500)
build_path = /obj/item/weapon/gun/energy/locked/phasegun/pistol
sort_string = "MACAA"
/datum/design/item/weapon/phase/phase_carbine
id = "phasecarbine"
req_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 2, TECH_POWER = 2)
- materials = list(DEFAULT_WALL_MATERIAL = 6000, "glass" = 1500, MAT_COPPER = 40)
+ materials = list(MAT_STEEL = 6000, MAT_GLASS = 500)
build_path = /obj/item/weapon/gun/energy/locked/phasegun
sort_string = "MACAB"
/datum/design/item/weapon/phase/phase_rifle
id = "phaserifle"
req_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 3, TECH_POWER = 3)
- materials = list(DEFAULT_WALL_MATERIAL = 7000, "glass" = 2000, "silver" = 500)
+ materials = list(MAT_STEEL = 7000, MAT_GLASS = 500, MAT_SILVER = 500)
build_path = /obj/item/weapon/gun/energy/locked/phasegun/rifle
sort_string = "MACAC"
/datum/design/item/weapon/phase/phase_cannon
id = "phasecannon"
req_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 4, TECH_POWER = 4)
- materials = list(DEFAULT_WALL_MATERIAL = 10000, "glass" = 2000, "silver" = 1000, "diamond" = 750)
+ materials = list(MAT_STEEL = 10000, MAT_GLASS = 2000, MAT_SILVER = 2000, MAT_DIAMOND = 750)
build_path = /obj/item/weapon/gun/energy/locked/phasegun/cannon
sort_string = "MACAD"
+
+/datum/design/item/weapon/phase/frontier_holdout
+ id = "holdout frontier phaser"
+ req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
+ materials = list(MAT_STEEL = 6000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 150, MAT_VERDANTIUM = 100, MAT_PHORON = 1000)
+ build_path = /obj/item/weapon/gun/energy/locked/frontier/holdout
+ sort_string = "MACAE"
+
+/datum/design/item/weapon/phase/frontier_phaser
+ id = "frontier phaser"
+ req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
+ materials = list(MAT_STEEL = 7000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 200, MAT_VERDANTIUM = 150, MAT_PHORON = 2000)
+ build_path = /obj/item/weapon/gun/energy/locked/frontier
+ sort_string = "MACAF"
+
+/datum/design/item/weapon/phase/frontier_carbine
+ id = "carbine frontier phaser"
+ req_tech = list(TECH_COMBAT = 4, TECH_POWER = 8, TECH_MATERIAL = 6, TECH_PHORON = 6)
+ materials = list(MAT_STEEL = 6500, MAT_GLASS = 900, MAT_DURASTEEL = 150, MAT_METALHYDROGEN = 250, MAT_VERDANTIUM = 200, MAT_PHORON = 4000)
+ build_path = /obj/item/weapon/gun/energy/locked/frontier/carbine
+ sort_string = "MACAG"
+
+/datum/design/item/weapon/phase/frontier_rifle
+ id = "marksman rifle frontier phaser"
+ req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
+ materials = list(MAT_STEEL = 8000, MAT_GLASS = 900, MAT_DURASTEEL = 200, MAT_METALHYDROGEN = 300, MAT_VERDANTIUM = 250, MAT_PHORON = 2000)
+ build_path = /obj/item/weapon/gun/energy/locked/frontier/rifle
+ sort_string = "MACAH"
+
+/datum/design/item/weapon/phase/frontier_handbow
+ id = "handbow frontier phaser"
+ req_tech = list(TECH_COMBAT = 4, TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6)
+ materials = list(MAT_STEEL = 5000, MAT_GLASS = 900, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 200, MAT_VERDANTIUM = 150, MAT_PHORON = 1000)
+ build_path = /obj/item/weapon/gun/energy/locked/frontier/handbow
+ sort_string = "MACAI"
+
//Leathals And any new CHOMP weapons.
/datum/design/item/weapon/gun/projectile/caseless/prototype
id = "caselessrifle"
req_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 5, TECH_PHORON = 5)
- materials = list(DEFAULT_WALL_MATERIAL = 7000, "titanium" = 4000)
+ materials = list(MAT_STEEL = 7000, MAT_TITANIUM = 4000)
build_path = /obj/item/weapon/gun/projectile/caseless/prototype
- sort_string = "MACAE"
+ sort_string = "MACBA"
+
diff --git a/modular_chomp/icons/mob/animal_ch.dmi b/modular_chomp/icons/mob/animal_ch.dmi
index ea681533a7..3903fa4530 100644
Binary files a/modular_chomp/icons/mob/animal_ch.dmi and b/modular_chomp/icons/mob/animal_ch.dmi differ
diff --git a/modular_chomp/maps/submaps/shelters/AnimalHospital-20x28.dmm b/modular_chomp/maps/submaps/shelters/AnimalHospital-20x28.dmm
index 8a62c1e0df..257a9cc344 100644
--- a/modular_chomp/maps/submaps/shelters/AnimalHospital-20x28.dmm
+++ b/modular_chomp/maps/submaps/shelters/AnimalHospital-20x28.dmm
@@ -1,11 +1,11 @@
"aH" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"aP" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/toxin,/obj/item/device/laser_pointer,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
-"bc" = (/obj/structure/table/rack/shelf/steel,/obj/item/device/gps,/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/weapon/gun/energy/locked/frontier/holdout,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
+"bc" = (/obj/structure/table/rack/shelf/steel,/obj/item/device/gps,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/cell/device/weapon,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"cf" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"cG" = (/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/bioregen,/obj/item/weapon/autopsy_scanner,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"cS" = (/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"cX" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"cY" = (/obj/effect/floor_decal/corner/paleblue{dir = 2},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
+"cY" = (/obj/effect/floor_decal/corner/paleblue,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"dy" = (/obj/structure/sign/redcross{icon_state = "bluecross2"; pixel_y = -31},/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"dG" = (/obj/effect/floor_decal/corner/red/diagonal,/obj/machinery/door/airlock/medical{req_one_access = null},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"ep" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 4},/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
@@ -27,8 +27,8 @@
"mC" = (/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"mR" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"mZ" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"nT" = (/obj/structure/table/standard,/obj/item/weapon/surgical/FixOVein{pixel_y = 0; pixel_x = 5},/obj/item/weapon/surgical/bonegel{pixel_x = -5; pixel_y = 2},/obj/item/weapon/surgical/bonesetter{pixel_x = 2},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
-"oa" = (/obj/structure/table/standard,/obj/item/weapon/surgical/hemostat{pixel_y = 0; pixel_x = -4},/obj/item/weapon/surgical/retractor,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
+"nT" = (/obj/structure/table/standard,/obj/item/weapon/surgical/FixOVein{pixel_x = 5},/obj/item/weapon/surgical/bonegel{pixel_x = -5; pixel_y = 2},/obj/item/weapon/surgical/bonesetter{pixel_x = 2},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
+"oa" = (/obj/structure/table/standard,/obj/item/weapon/surgical/hemostat{pixel_x = -4},/obj/item/weapon/surgical/retractor,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"oC" = (/obj/structure/closet,/obj/item/weapon/gun/launcher/syringe,/obj/item/weapon/storage/box/syringegun,/obj/random/cigarettes,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/matches,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/AnimalHospital)
"py" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"qk" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/surgicalapron,/obj/item/clothing/gloves/sterile,/obj/item/clothing/mask/surgical,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
@@ -38,14 +38,14 @@
"rI" = (/obj/fiftyspawner/titanium,/obj/item/stack/cable_coil/silver,/turf/simulated/floor/plating,/area/survivalpod/superpose/AnimalHospital)
"st" = (/obj/machinery/light{dir = 4},/obj/structure/bed/padded,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"su" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Animal Hospital"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"sI" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/survivalpod/superpose/AnimalHospital)
-"sM" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery{pixel_y = 0; pixel_x = 2},/obj/item/weapon/surgical/surgicaldrill,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
+"sI" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/AnimalHospital)
+"sM" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery{pixel_x = 2},/obj/item/weapon/surgical/surgicaldrill,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"sV" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/box/beakers,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"tq" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"vx" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"wc" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"wm" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/paleblue{dir = 9},/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"wx" = (/obj/structure/bed/chair/office/dark{dir = 2},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
+"wx" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"wB" = (/obj/machinery/vending/wallmed1/public{pixel_y = 32},/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"wK" = (/obj/structure/morgue,/turf/simulated/floor/plating,/area/survivalpod/superpose/AnimalHospital)
"wP" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/AnimalHospital)
@@ -56,12 +56,12 @@
"Ab" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/AnimalHospital)
"Ai" = (/obj/structure/noticeboard{dir = 1; pixel_y = -27},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"Ax" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/regular,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"Bv" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 2},/obj/structure/table/standard,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/melee/baton/cattleprod,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
+"Bv" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/structure/table/standard,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/melee/baton/cattleprod,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"BJ" = (/obj/effect/floor_decal/corner/paleblue{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"BP" = (/obj/structure/closet/secure_closet/medical1{req_access = null},/obj/item/weapon/storage/quickdraw/syringe_case,/obj/item/weapon/storage/quickdraw/syringe_case,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"Cj" = (/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"Di" = (/obj/effect/floor_decal/corner/red/diagonal,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"GG" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
+"GG" = (/obj/effect/floor_decal/corner/paleblue{dir = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"Hd" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/adv{pixel_y = 5},/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"Hl" = (/obj/structure/closet/crate/trashcart,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/AnimalHospital)
"Hn" = (/obj/effect/floor_decal/corner/paleblue{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/obj/item/weapon/lipstick/random,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
@@ -99,7 +99,7 @@
"SH" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"SY" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/AnimalHospital)
"Te" = (/obj/effect/floor_decal/corner/paleblue{dir = 10},/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
-"Tm" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 2},/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
+"Tm" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"Vc" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/AnimalHospital)
"Vr" = (/turf/template_noop,/area/survivalpod/superpose/AnimalHospital)
"VV" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/AnimalHospital)
diff --git a/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-56x25.dmm b/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-56x25.dmm
index 01d6f0a59e..f6a2b09efe 100644
--- a/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-56x25.dmm
+++ b/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-56x25.dmm
@@ -64,7 +64,7 @@
"iQ" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip)
"jb" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip)
"jd" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/item/trash/material/metal,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip)
-"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/CrashedInfestedShip)
+"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/CrashedInfestedShip)
"jh" = (/obj/structure/prop/poicanister{icon_state = "orangeps-1"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip)
"ji" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip)
"jm" = (/obj/structure/table/alien,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip)
@@ -121,7 +121,7 @@
"qP" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip)
"qQ" = (/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip)
"qS" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip)
-"qY" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/survivalpod/superpose/CrashedInfestedShip)
+"qY" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/survivalpod/superpose/CrashedInfestedShip)
"ri" = (/obj/fire,/turf/simulated/floor/airless,/area/survivalpod/superpose/CrashedInfestedShip)
"ru" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/CrashedInfestedShip)
"rx" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip)
diff --git a/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm b/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm
index 057a78eff3..e85fb816d4 100644
--- a/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm
+++ b/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm
@@ -563,7 +563,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
@@ -602,8 +602,7 @@
/area/survivalpod/superpose/CrashedQurantineShip)
"bx" = (
/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater"
+ dir = 4
},
/turf/simulated/shuttle/plating,
/area/survivalpod/superpose/CrashedQurantineShip)
diff --git a/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm b/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm
index cd1dc4a5ff..3c23160aa7 100644
--- a/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm
+++ b/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm
@@ -6,7 +6,7 @@
"kL" = (/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/survivalpod/superpose/DemonPool)
"kM" = (/turf/simulated/wall/cult,/area/survivalpod/superpose/DemonPool)
"ok" = (/obj/structure/bed/chair/wood/wings{dir = 4},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool)
-"ot" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool)
+"ot" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool)
"oD" = (/turf/simulated/floor/lava/outdoors,/area/survivalpod/superpose/DemonPool)
"oT" = (/mob/living/simple_mob/vore/demonAI{faction = "neutral"},/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool)
"pi" = (/turf/simulated/gore,/area/survivalpod/superpose/DemonPool)
@@ -15,10 +15,10 @@
"rx" = (/obj/fire,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool)
"sn" = (/obj/structure/grille/cult,/obj/structure/bonfire/permanent,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool)
"tU" = (/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool)
-"wH" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8; icon_state = "pwindow"},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool)
+"wH" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool)
"xx" = (/mob/living/simple_mob/vore/demonAI/wendigo{faction = "neutral"},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool)
"yi" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool)
-"zf" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8; icon_state = "pwindow"},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool)
+"zf" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool)
"zp" = (/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool)
"By" = (/obj/fire,/obj/fire,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool)
"BE" = (/obj/structure/grille/broken/cult,/obj/fire,/turf/template_noop,/area/survivalpod/superpose/DemonPool)
@@ -42,7 +42,7 @@
"Rj" = (/obj/structure/table/marble{color = "#B03A2E"},/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/item/clothing/shoes/cult,/obj/item/device/soulstone,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool)
"Ru" = (/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool)
"Rz" = (/obj/structure/cult/talisman,/obj/item/weapon/melee/cultblade,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool)
-"RL" = (/mob/living/simple_mob/vore/demonAI/engorge{evasion = 1; health = 750; projectilesound = 'sound/weapons/taser2.ogg'; projectiletype = /obj/item/projectile/beam/stun/electric_spider; size_multiplier = 3; faction = "neutral"},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool)
+"RL" = (/mob/living/simple_mob/vore/demonAI/engorge{evasion = 1; faction = "neutral"; health = 750; projectilesound = 'sound/weapons/taser2.ogg'; projectiletype = /obj/item/projectile/beam/stun/electric_spider; size_multiplier = 3},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool)
"RR" = (/obj/structure/grille/broken/cult,/turf/template_noop,/area/survivalpod/superpose/DemonPool)
"RW" = (/obj/structure/grille/cult,/turf/template_noop,/area/survivalpod/superpose/DemonPool)
"Sp" = (/obj/effect/gateway,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool)
diff --git a/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm b/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm
index dd943539f8..c5acc780e9 100644
--- a/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm
+++ b/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm
@@ -424,7 +424,6 @@
/obj/structure/table/standard,
/obj/machinery/chemical_dispenser/bar_coffee{
dir = 8;
- pixel_y = 0;
pixel_x = 4
},
/turf/simulated/floor/tiled/white,
@@ -475,7 +474,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
@@ -550,8 +549,7 @@
icon_state = "open";
layer = 2;
name = "privacy curtain";
- opacity = 0;
- dir = 2
+ opacity = 0
},
/turf/simulated/floor/tiled/hydro,
/area/survivalpod/superpose/Dinner)
diff --git a/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm b/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm
index dff53ea5ec..2a132834ff 100644
--- a/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm
+++ b/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm
@@ -207,14 +207,12 @@
"aB" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/structure/mirror{
dir = 4;
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/tiled/freezer,
/area/survivalpod/superpose/ExplorerHome)
@@ -243,8 +241,7 @@
/area/survivalpod/superpose/ExplorerHome)
"aI" = (
/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
+ dir = 8
},
/obj/machinery/shower{
dir = 1
@@ -546,8 +543,8 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/carbine,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun,
/obj/item/weapon/cell/device/weapon{
pixel_x = -2;
pixel_y = -2
diff --git a/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm b/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm
index e7a2b0a0e6..7b31172058 100644
--- a/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm
+++ b/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm
@@ -67,8 +67,7 @@
/area/template_noop)
"fp" = (
/obj/structure/bed/chair/wood{
- dir = 8;
- icon_state = "wooden_chair"
+ dir = 8
},
/turf/simulated/floor/wood,
/area/survivalpod/superpose/Farm)
@@ -324,7 +323,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
diff --git a/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm b/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm
index 6f902de7b5..e8bbc200d7 100644
--- a/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm
+++ b/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm
@@ -33,9 +33,7 @@
"hx" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/tiled/steel_dirty,
/area/survivalpod/superpose/FieldLab)
@@ -45,8 +43,7 @@
/area/survivalpod/superpose/FieldLab)
"ja" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled/steel_dirty,
/area/survivalpod/superpose/FieldLab)
@@ -174,8 +171,7 @@
"zX" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled/steel_dirty,
/area/survivalpod/superpose/FieldLab)
@@ -209,7 +205,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
@@ -364,8 +360,7 @@
"MD" = (
/obj/machinery/vending/tool,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/tiled/steel_dirty,
/area/survivalpod/superpose/FieldLab)
@@ -388,8 +383,7 @@
/area/survivalpod/superpose/FieldLab)
"Oe" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/tiled/steel_dirty,
/area/survivalpod/superpose/FieldLab)
@@ -402,8 +396,7 @@
/obj/item/clothing/suit/storage/hooded/wintercoat,
/obj/item/clothing/shoes/boots/winter,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/tiled/steel_dirty,
/area/survivalpod/superpose/FieldLab)
diff --git a/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm b/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm
index bd62112ced..32f36ae169 100644
--- a/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm
+++ b/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm
@@ -6,7 +6,7 @@
"gW" = (/obj/effect/map_effect/interval/sound_emitter/punching,/obj/effect/map_effect/interval/effect_emitter/smoke/fire,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave)
"iK" = (/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/HellCave)
"jG" = (/obj/structure/closet/crate,/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/turcarpet,/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/algae{amount = 50},/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/lead{amount = 30},/obj/item/stack/material/plasteel{amount = 30; pixel_y = 5},/obj/item/stack/material/resin{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave)
-"kE" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave)
+"kE" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave)
"lF" = (/turf/simulated/mineral/ignore_mapgen,/area/survivalpod/superpose/HellCave)
"lQ" = (/obj/item/weapon/bone/skull/unknown,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave)
"nD" = (/obj/effect/gibspawner/human,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave)
diff --git a/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm b/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm
index 9abc0cd92b..5f39bfbeb6 100644
--- a/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm
+++ b/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm
@@ -64,7 +64,7 @@
"nk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Security Checkpoint Maintenance"; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave)
"nV" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave)
"og" = (/obj/structure/closet/crate,/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/turcarpet,/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/algae{amount = 50},/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/lead{amount = 30},/obj/item/stack/material/plasteel{amount = 30; pixel_y = 5},/obj/item/stack/material/resin{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1; initialize_directions = 14; tag = "icon-manifold-b-f (NORTH)"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave)
-"oq" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave)
+"oq" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave)
"oQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock{id_tag = "awaydorm2"; name = "Dorm 2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave)
"oX" = (/obj/effect/decal/cleanable/blood/oil{color = "black"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave)
"oZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave)
diff --git a/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm b/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm
index 242deaeb4d..1c0bb8e7d7 100644
--- a/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm
+++ b/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm
@@ -49,7 +49,7 @@
"iM" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip)
"iQ" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip)
"jd" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip)
-"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip)
+"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip)
"jh" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastright{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/hooklauncher,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip)
"ji" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip)
"jm" = (/obj/structure/table/alien,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip)
@@ -68,7 +68,7 @@
"mm" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip)
"mv" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westleft{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/rig/hazard/equipped,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip)
"my" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip)
-"mG" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/west,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip)
+"mG" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/west,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip)
"mK" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip)
"mQ" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip)
"mT" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip)
@@ -152,7 +152,7 @@
"DF" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip)
"DJ" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip)
"DK" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/tape_roll,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip)
-"DX" = (/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/turf/simulated/floor/plating,/area/survivalpod/superpose/LargeAlienShip)
+"DX" = (/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/turf/simulated/floor/plating,/area/survivalpod/superpose/LargeAlienShip)
"Ee" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/LargeAlienShip)
"El" = (/obj/structure/toilet{dir = 1},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip)
"Ep" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip)
@@ -221,7 +221,7 @@
"US" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip)
"Vk" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip)
"Vq" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip)
-"Vt" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/west,/turf/simulated/floor/plating,/area/survivalpod/superpose/LargeAlienShip)
+"Vt" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/west,/turf/simulated/floor/plating,/area/survivalpod/superpose/LargeAlienShip)
"Vu" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip)
"Vw" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip)
"VF" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip)
diff --git a/modular_chomp/maps/submaps/shelters/LoneHome-18x22.dmm b/modular_chomp/maps/submaps/shelters/LoneHome-18x22.dmm
index 0c89f4b404..5a63f42568 100644
--- a/modular_chomp/maps/submaps/shelters/LoneHome-18x22.dmm
+++ b/modular_chomp/maps/submaps/shelters/LoneHome-18x22.dmm
@@ -999,7 +999,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
diff --git a/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm b/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm
index 9554a36f3b..7ac2228d0f 100644
--- a/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm
+++ b/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm
@@ -114,7 +114,7 @@
"KR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip)
"Lg" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip)
"LN" = (/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip)
-"Ms" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip)
+"Ms" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip)
"Mv" = (/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip)
"MZ" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange/corner{dir = 8},/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip)
"Nr" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/r_n_d/server/core,/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MechFabShip)
diff --git a/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm b/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm
index 3fe26681c5..2c210f041f 100644
--- a/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm
+++ b/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm
@@ -100,7 +100,7 @@
"JE" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 8; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab)
"JR" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/phazon/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab)
"JT" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/durand,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab)
-"JV" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab)
+"JV" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab)
"Ke" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab)
"Kt" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/machinery/holoplant,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab)
"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab)
diff --git a/modular_chomp/maps/submaps/shelters/MercShip-57x25.dmm b/modular_chomp/maps/submaps/shelters/MercShip-57x25.dmm
index f4d6ae3bc6..45f2937e0b 100644
--- a/modular_chomp/maps/submaps/shelters/MercShip-57x25.dmm
+++ b/modular_chomp/maps/submaps/shelters/MercShip-57x25.dmm
@@ -63,7 +63,7 @@
"iM" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip)
"jc" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/obj/structure/salvageable/console_os{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip)
"jd" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/turf/simulated/floor,/area/survivalpod/superpose/MercShip)
-"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip)
+"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip)
"jh" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip)
"ji" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip)
"jm" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/salvageable/bliss,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip)
@@ -84,7 +84,7 @@
"mK" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/MercShip)
"mQ" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip)
"mT" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip)
-"nj" = (/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip)
+"nj" = (/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip)
"ns" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/airless,/area/survivalpod/superpose/MercShip)
"nt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip)
"nv" = (/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/structure/table/hardwoodtable,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip)
@@ -155,7 +155,7 @@
"zI" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip)
"Af" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip)
"Aj" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/MercShip)
-"AB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_lead,/area/survivalpod/superpose/MercShip)
+"AB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/wall/r_lead,/area/survivalpod/superpose/MercShip)
"AL" = (/obj/machinery/door/window/brigdoor/northright{dir = 2; req_access = null},/obj/structure/table/hardwoodtable,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip)
"AP" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = list(777)},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip)
"AS" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip)
diff --git a/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm b/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm
index b4ed434aa5..002ad6c649 100644
--- a/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm
+++ b/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm
@@ -291,7 +291,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
diff --git a/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm b/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm
index bfa280838e..87a1eb2fde 100644
--- a/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm
+++ b/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm
@@ -603,7 +603,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
diff --git a/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm b/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm
index 59ee5cb20f..04c3ba32a9 100644
--- a/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm
+++ b/modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm
@@ -15,9 +15,9 @@
"cK" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar)
"cL" = (/obj/machinery/button/remote/airlock{id = "awaydorm_restaurationbar1"; name = "Bolt Control"; pixel_y = -29; specialfunctions = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"cT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/turf/space,/area/survivalpod/superpose/RestaurationBar)
-"da" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
+"da" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"ds" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
-"dN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
+"dN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 8},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
"dP" = (/obj/machinery/honey_extractor,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
"ec" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/item/weapon/material/ashtray/glass,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/fancy/cigarettes/professionals,/obj/item/weapon/storage/fancy/cigar/havana,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"ei" = (/obj/structure/table/gamblingtable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
@@ -43,7 +43,7 @@
"hk" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"hr" = (/obj/structure/table/bench/glass,/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/obj/machinery/light{layer = 3},/obj/structure/flora/pottedplant/thinbush{pixel_y = 10},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"hu" = (/obj/machinery/appliance/cooker/fryer,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
-"hw" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/handbow/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/flame/lighter/zippo/royal,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/clothing/accessory/permit/gun,/obj/item/device/binoculars,/obj/item/bodybag/cryobag,/obj/item/weapon/cell/device/hyper,/obj/item/sticky_pad/random,/obj/item/weapon/card/id/external,/obj/item/weapon/pen/multi,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/stack/nanopaste,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
+"hw" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/flame/lighter/zippo/royal,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/clothing/accessory/permit/gun,/obj/item/device/binoculars,/obj/item/bodybag/cryobag,/obj/item/weapon/cell/device/hyper,/obj/item/sticky_pad/random,/obj/item/weapon/card/id/external,/obj/item/weapon/pen/multi,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/stack/nanopaste,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"hE" = (/obj/random/pottedplant,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"hI" = (/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
"ii" = (/obj/structure/simple_door/wood,/obj/structure/simple_door/wood,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar)
@@ -65,7 +65,7 @@
"lT" = (/obj/structure/table/gamblingtable,/obj/item/weapon/pen,/obj/item/weapon/paper_bin,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"lZ" = (/obj/machinery/autolathe{hacked = 1},/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"mp" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
-"mx" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
+"mx" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"mz" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -34},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"mU" = (/obj/machinery/door/airlock{id_tag = "awaydorm_restaurationbar1"},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"mZ" = (/obj/structure/casino_table/roulette_table,/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
@@ -79,7 +79,7 @@
"oQ" = (/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"po" = (/obj/structure/casino_table/blackjack_m,/obj/item/weapon/deck/cards,/obj/machinery/light/floortube,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"pv" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
-"pB" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
+"pB" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"pF" = (/obj/structure/flora/ausbushes/ppflowers,/mob/living/simple_mob/vore/alienanimals/teppi/baby,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar)
"pW" = (/obj/machinery/computer/arcade{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"qp" = (/obj/machinery/space_heater,/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
@@ -94,7 +94,7 @@
"rd" = (/obj/structure/table/reinforced,/obj/item/weapon/deskbell,/turf/simulated/floor/wood/broken,/area/survivalpod/superpose/RestaurationBar)
"rg" = (/obj/structure/table/rack/shelf,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/makeover,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
"rh" = (/obj/machinery/replicator/clothing,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
-"rO" = (/obj/machinery/vending/dinnerware{req_log_access = null},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
+"rO" = (/obj/machinery/vending/dinnerware{req_log_access = null},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
"rS" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"si" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
"sj" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop)
@@ -116,7 +116,7 @@
"uo" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"uu" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"uw" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
-"uJ" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/rifle/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/flame/lighter/zippo/black,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/clothing/accessory/permit/gun,/obj/item/device/binoculars,/obj/item/bodybag/cryobag,/obj/item/weapon/cell/device/hyper,/obj/item/sticky_pad/random,/obj/item/weapon/card/id/external,/obj/item/weapon/pen/multi,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/stack/nanopaste,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
+"uJ" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/rifle,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/flame/lighter/zippo/black,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/clothing/accessory/permit/gun,/obj/item/device/binoculars,/obj/item/bodybag/cryobag,/obj/item/weapon/cell/device/hyper,/obj/item/sticky_pad/random,/obj/item/weapon/card/id/external,/obj/item/weapon/pen/multi,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/stack/nanopaste,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"uM" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"uO" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"uX" = (/obj/machinery/appliance/mixer/cereal,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
@@ -129,7 +129,7 @@
"vM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
"wg" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"wm" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/module/id_auth,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/power_control,/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/mass_driver,/obj/item/weapon/circuitboard/jukebox,/obj/item/weapon/circuitboard/intercom,/obj/item/weapon/circuitboard/firealarm,/obj/item/weapon/circuitboard/airalarm,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/backpack/dufflebag/eng,/obj/item/device/geiger,/obj/item/device/mapping_unit,/obj/item/clothing/under/waiter,/obj/item/clothing/under/waiter,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
-"wp" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/recharger/wallcharger{pixel_x = 36; pixel_y = 3},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
+"wp" = (/obj/machinery/light{dir = 4},/obj/machinery/recharger/wallcharger{pixel_x = 36; pixel_y = 3},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"xj" = (/obj/machinery/button/remote/airlock{id = "awaydorm_restaurationbar"; name = "Bolt Control"; pixel_y = 30; specialfunctions = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"xn" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"xo" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
@@ -144,7 +144,7 @@
"yL" = (/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
"yS" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
"yT" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/obj/random/drinkbottle,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
-"zA" = (/obj/machinery/vending/boozeomat{req_log_access = null; req_access = null},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
+"zA" = (/obj/machinery/vending/boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"zG" = (/obj/structure/bed/chair/wood{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"zN" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"Ae" = (/turf/simulated/wall,/area/survivalpod/superpose/RestaurationBar)
@@ -160,12 +160,12 @@
"Br" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"BC" = (/obj/structure/closet/crate,/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/turcarpet,/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/algae{amount = 50},/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/lead{amount = 30},/obj/item/stack/material/plasteel{amount = 30; pixel_y = 5},/obj/item/stack/material/resin{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"BK" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = 28},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
-"BX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
+"BX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/machinery/light{dir = 4},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
"Ci" = (/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
"Cj" = (/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar)
"CW" = (/obj/structure/grille,/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
"Dc" = (/obj/structure/table/fancyblack,/obj/item/weapon/newspaper,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
-"Di" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/secure_closet/freezer/kitchen{req_access = null},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
+"Di" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/freezer/kitchen{req_access = null},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
"Do" = (/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"DF" = (/obj/structure/table/marble,/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"DU" = (/obj/structure/bed/chair/oldsofa{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
@@ -179,11 +179,11 @@
"Ff" = (/obj/structure/table/standard,/obj/random/donkpocketbox,/obj/item/device/starcaster_news,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar)
"Fi" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/table/marble,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/obj/item/weapon/material/kitchen/utensil/spoon,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
"Fk" = (/obj/machinery/appliance/mixer/candy,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
-"Fl" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
+"Fl" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"FE" = (/obj/machinery/vending/cola{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"FI" = (/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar)
"FO" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/item/weapon/pen,/obj/item/device/taperecorder,/obj/item/weapon/paper_bin,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
-"FV" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
+"FV" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"FW" = (/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/grille,/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
"Gj" = (/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar)
"Gx" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
@@ -199,10 +199,10 @@
"HL" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/effect/floor_decal/spline/fancy/wood/corner,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"HQ" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"HV" = (/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
-"Ix" = (/obj/structure/bed/chair/oldsofa{dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/item/toy/plushie/blue_fox,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
+"Ix" = (/obj/structure/bed/chair/oldsofa{dir = 8},/obj/machinery/light{dir = 4},/obj/item/toy/plushie/blue_fox,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"IB" = (/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
"II" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/table/marble,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
-"IO" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
+"IO" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/obj/machinery/light{dir = 4},/obj/structure/closet/crate/bin,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"IR" = (/obj/effect/map_effect/perma_light,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"Jb" = (/obj/structure/bed/chair/oldsofa/corner{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"Jf" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/RestaurationBar)
@@ -219,7 +219,7 @@
"Km" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1},/obj/item/weapon/reagent_containers/chem_disp_cartridge/nothing,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"Ko" = (/obj/structure/table/marble,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/multi,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"Kw" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
-"KP" = (/obj/effect/floor_decal/spline/fancy/wood/cee{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/flora/pottedplant/tall,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
+"KP" = (/obj/effect/floor_decal/spline/fancy/wood/cee{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/flora/pottedplant/tall,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"KR" = (/mob/living/simple_mob/vore/alienanimals/teppi/baby,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar)
"KS" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar)
"La" = (/obj/machinery/door/airlock{id_tag = "awaydorm_restaurationbar"},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
@@ -253,7 +253,7 @@
"Ov" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
"OA" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/donut,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"OI" = (/obj/structure/sink/puddle,/turf/simulated/floor/grass,/area/survivalpod/superpose/RestaurationBar)
-"OP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar)
+"OP" = (/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar)
"OR" = (/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"Ps" = (/obj/structure/bed/chair/oldsofa/right{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"PE" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
@@ -264,7 +264,7 @@
"Qh" = (/obj/structure/table/fancyblack,/obj/random/drinksoft,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"Qm" = (/obj/effect/floor_decal/spline/fancy{dir = 4; icon_state = "spline_fancy_corner"},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"QD" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
-"QK" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/button/holosign{id = "baropen_restaurationbar_ch"; name = "Open Sign"; pixel_x = 36; pixel_y = 6},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
+"QK" = (/obj/machinery/light{dir = 4},/obj/machinery/button/holosign{id = "baropen_restaurationbar_ch"; name = "Open Sign"; pixel_x = 36; pixel_y = 6},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"QQ" = (/obj/structure/bed/chair/oldsofa/right,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"QS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1; health = 1e+006; req_access = list(5)},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced{health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
"QX" = (/obj/structure/bed/chair/oldsofa/left{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
@@ -282,13 +282,13 @@
"Tu" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop)
"TE" = (/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"TT" = (/obj/machinery/atm{pixel_y = -30},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
-"TW" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
+"TW" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"Uq" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
"UH" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/trash/plate,/obj/item/weapon/reagent_containers/food/snacks/hotdog,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"UV" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/RestaurationBar)
"Vf" = (/turf/simulated/floor/outdoors/grass/sif,/area/template_noop)
"Vg" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
-"Vh" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
+"Vh" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/survivalpod/superpose/RestaurationBar)
"Vy" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/obj/effect/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/RestaurationBar)
"VD" = (/obj/structure/table/standard,/obj/item/device/starcaster_news,/obj/item/weapon/reagent_containers/food/snacks/meatsteak,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"VF" = (/obj/machinery/door/window/westleft{name = "Bar"},/obj/machinery/power/apc/alarms_hidden,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
@@ -303,12 +303,12 @@
"WV" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"WZ" = (/obj/effect/floor_decal/spline/fancy,/obj/structure/prop/statue/pillar/dark,/obj/effect/map_effect/perma_light,/turf/simulated/floor/carpet/purple,/area/survivalpod/superpose/RestaurationBar)
"Xp" = (/obj/structure/table/marble,/obj/item/weapon/storage/box/glasses/meta,/obj/item/weapon/storage/box/glasses/meta,/obj/item/weapon/storage/box/glasses/coffeemug{pixel_x = -6; pixel_y = 12},/obj/item/weapon/storage/box/glasses/coffeecup{pixel_x = -6; pixel_y = 1},/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
-"Xs" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar)
-"Xt" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
+"Xs" = (/obj/machinery/light{dir = 8},/obj/item/weapon/melee/umbrella/random,/obj/item/weapon/melee/umbrella/random,/obj/structure/table/rack,/turf/simulated/floor/carpet,/area/survivalpod/superpose/RestaurationBar)
+"Xt" = (/obj/machinery/light{dir = 8},/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
"XA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor,/area/survivalpod/superpose/RestaurationBar)
"XI" = (/obj/structure/window/reinforced{health = 1e+006},/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
"XS" = (/obj/structure/window/reinforced{health = 1e+006},/obj/structure/window/reinforced{dir = 8},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood,/area/survivalpod/superpose/RestaurationBar)
-"Yc" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dispense_reagents = list("iron","radium","lemon_lime","sugar","orangejuice","limejuice","sodawater","tonic","beer","kahlua","whiskey","redwine","whitewine","vodka","cider","gin","rum","tequilla","vermouth","cognac","ale","mead","bitters"); dir = 1},/obj/item/weapon/reagent_containers/chem_disp_cartridge/ethanol,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
+"Yc" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dir = 1; dispense_reagents = list("iron","radium","lemon_lime","sugar","orangejuice","limejuice","sodawater","tonic","beer","kahlua","whiskey","redwine","whitewine","vodka","cider","gin","rum","tequilla","vermouth","cognac","ale","mead","bitters")},/obj/item/weapon/reagent_containers/chem_disp_cartridge/ethanol,/turf/simulated/floor/lino,/area/survivalpod/superpose/RestaurationBar)
"Yf" = (/obj/structure/table/hardwoodtable,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/communicator,/obj/item/trash/plate,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/RestaurationBar)
"Yg" = (/obj/structure/table/marble,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/survivalpod/superpose/RestaurationBar)
"Ym" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/secure_closet/hydroponics{req_access = null},/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/RestaurationBar)
diff --git a/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm b/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm
index c6622c0346..4d7c4f0047 100644
--- a/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm
+++ b/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm
@@ -9,7 +9,7 @@
"s" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip)
"t" = (/obj/effect/catwalk_plated/dark,/obj/effect/catwalk_plated/dark,/turf/template_noop,/area/survivalpod/superpose/SmallCombatShip)
"u" = (/obj/machinery/porta_turret/stationary/syndie{faction = "neutral"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/SmallCombatShip)
-"w" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/east,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip)
+"w" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/east,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip)
"z" = (/obj/structure/salvageable/server,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip)
"A" = (/obj/structure/shuttle/engine/heater,/turf/simulated/wall/shull,/area/survivalpod/superpose/SmallCombatShip)
"C" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm
index a18457a569..b586ef3fba 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm
@@ -2,7 +2,7 @@
"b" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/SurvivalBarracks)
"c" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalBarracks)
"d" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/hopdouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks)
-"e" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/SurvivalBarracks)
+"e" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/SurvivalBarracks)
"f" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks)
"g" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks)
"h" = (/obj/structure/fans{pixel_y = 32},/obj/machinery/vending/loadout/clothing,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
@@ -19,10 +19,10 @@
"s" = (/obj/machinery/door/airlock/maintenance/common{name = "Dorm"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalBarracks)
"t" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks)
"u" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp{pixel_x = -8; pixel_y = 13},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = 5; pixel_y = 6},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks)
-"v" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/SurvivalBarracks)
+"v" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/SurvivalBarracks)
"w" = (/obj/machinery/vending/fitness{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
"x" = (/obj/item/device/gps/computer{pixel_y = 0},/obj/structure/table/steel_reinforced,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
-"y" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/SurvivalBarracks)
+"y" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/SurvivalBarracks)
"z" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalBarracks)
"A" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks)
"B" = (/obj/machinery/vending/snack{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
@@ -41,7 +41,7 @@
"O" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks)
"P" = (/obj/machinery/vending/coffee{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
"Q" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/SurvivalBarracks)
-"R" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/SurvivalBarracks)
+"R" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/SurvivalBarracks)
"S" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks)
"T" = (/obj/machinery/vending/cigarette{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
"U" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm
index 0bfe73f8ad..5acc69f81a 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm
@@ -2,15 +2,12 @@
"ag" = (
/obj/structure/table/survival_pod,
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/obj/machinery/recharger{
- pixel_y = 0;
pixel_x = -5
},
/obj/machinery/recharger{
- pixel_y = 0;
pixel_x = 6
},
/turf/simulated/shuttle/floor/voidcraft/light,
@@ -54,8 +51,7 @@
opacity = 1
},
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/obj/item/device/gps/mining{
pixel_x = -5
@@ -111,8 +107,7 @@
opacity = 1
},
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/turf/simulated/shuttle/floor/voidcraft/light,
/area/survivalpod/superpose/SurvivalCargo)
@@ -129,8 +124,7 @@
"oQ" = (
/obj/machinery/sleeper/survival_pod,
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/turf/simulated/shuttle/floor/voidcraft/light,
/area/survivalpod/superpose/SurvivalCargo)
@@ -157,12 +151,10 @@
/obj/structure/table/rack/shelf/steel,
/obj/item/device/suit_cooling_unit,
/obj/structure/window/reinforced/survival_pod{
- dir = 1;
- icon_state = "pwindow"
+ dir = 1
},
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/turf/simulated/shuttle/floor/voidcraft/light,
/area/survivalpod/superpose/SurvivalCargo)
@@ -241,7 +233,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
@@ -305,10 +297,10 @@
/area/survivalpod/superpose/SurvivalCargo)
"Cu" = (
/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/locked/frontier/carbine{
- pixel_y = 7
+/obj/item/weapon/gun/energy/locked/phasegun/rifle{
+ pixel_y = 3
},
-/obj/item/weapon/gun/energy/locked/frontier/carbine{
+/obj/item/weapon/gun/energy/locked/phasegun/rifle{
pixel_y = -4
},
/obj/machinery/light{
@@ -362,12 +354,10 @@
},
/obj/structure/table/rack/shelf/steel,
/obj/structure/window/reinforced/survival_pod{
- dir = 1;
- icon_state = "pwindow"
+ dir = 1
},
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/obj/item/device/gps/mining{
pixel_x = -5
@@ -384,16 +374,14 @@
},
/obj/item/weapon/storage/toolbox/mechanical,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/shuttle/floor/voidcraft/light,
/area/survivalpod/superpose/SurvivalCargo)
"JT" = (
/obj/structure/fans,
/obj/structure/window/reinforced/survival_pod{
- dir = 8;
- icon_state = "pwindow"
+ dir = 8
},
/turf/simulated/shuttle/floor/voidcraft/light,
/area/survivalpod/superpose/SurvivalCargo)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm
index 91ef8c9fee..c3b089f7b8 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm
@@ -178,9 +178,7 @@
/turf/simulated/floor/plating,
/area/survivalpod/superpose/SurvivalDIY_11x11)
"t" = (
-/obj/vehicle/train/engine/quadbike/built{
- dir = 4
- },
+/obj/vehicle/train/engine/quadbike/built,
/turf/simulated/floor/plating,
/area/survivalpod/superpose/SurvivalDIY_11x11)
"u" = (
@@ -196,7 +194,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
@@ -321,8 +319,8 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/carbine,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun,
/obj/item/weapon/cell/device/weapon{
pixel_x = -2;
pixel_y = -2
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm
index 6c69ebde51..d992c103a0 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm
@@ -1,5 +1,5 @@
"a" = (/obj/structure/closet/crate,/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/green,/obj/item/stack/cable_coil/blue,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7)
-"c" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7)
+"c" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7)
"d" = (/obj/machinery/autolathe,/obj/item/weapon/rcd/loaded{pixel_x = -4; pixel_y = 10},/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7)
"g" = (/obj/structure/inflatable/door,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7)
"h" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm
index fb3137b859..acb4ef5f77 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm
@@ -3,8 +3,8 @@
"g" = (/obj/machinery/autolathe,/obj/item/weapon/rcd/loaded{pixel_x = -4; pixel_y = 10},/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
"h" = (/obj/structure/inflatable,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
"i" = (/obj/structure/closet/secure_closet/engineering_welding{locked = 0},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
-"o" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
-"q" = (/obj/vehicle/train/engine/quadbike/built{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
+"o" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
+"q" = (/obj/vehicle/train/engine/quadbike/built,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
"u" = (/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
"y" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
"z" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/module/id_auth,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/power_control,/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/mass_driver,/obj/item/weapon/circuitboard/jukebox,/obj/item/weapon/circuitboard/intercom,/obj/item/weapon/circuitboard/firealarm,/obj/item/weapon/circuitboard/airalarm,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/backpack/dufflebag/eng,/obj/item/device/geiger,/obj/item/device/mapping_unit,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm
index b6496f1d27..2f7afda817 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm
@@ -19,9 +19,9 @@
"t" = (/obj/machinery/autolathe,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering)
"u" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering)
"v" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/vending/engivend{pixel_x = -1},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering)
-"w" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering)
+"w" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering)
"x" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering)
-"y" = (/obj/structure/closet/secure_closet/guncabinet/phase{pixel_y = -32},/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering)
+"y" = (/obj/structure/closet/secure_closet/guncabinet/phase{pixel_y = -32},/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering)
"z" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering)
"A" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering)
"B" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm
index 9095423f99..5d4eb569ca 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm
@@ -109,12 +109,12 @@
pixel_x = -4
},
/obj/item/weapon/storage/box/donkpockets{
- pixel_y = -3;
- pixel_x = -7
+ pixel_x = -7;
+ pixel_y = -3
},
/obj/item/weapon/storage/box/donkpockets{
- pixel_y = -3;
- pixel_x = 7
+ pixel_x = 7;
+ pixel_y = -3
},
/turf/simulated/shuttle/floor/voidcraft/dark,
/area/survivalpod/superpose/SurvivalHome)
@@ -146,7 +146,7 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/weapon/material/knife/tacknife/survival,
/obj/item/clothing/accessory/permit/gun,
/obj/item/device/camera,
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm
index 3a6e209031..720fa47071 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm
@@ -1,5 +1,5 @@
"a" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/bucket{pixel_x = -6; pixel_y = 7},/obj/item/weapon/reagent_containers/glass/bucket{pixel_x = 6; pixel_y = 7},/obj/structure/sink/kitchen{layer = 1; pixel_y = 12},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro)
-"c" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro)
+"c" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro)
"d" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalHydro)
"e" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro)
"f" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHydro)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm
index 62cd7d950d..5e4658cd13 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm
@@ -1,6 +1,6 @@
"a" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure)
"b" = (/obj/structure/bed/chair/oldsofa{dir = 5},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure)
-"c" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/fans{pixel_y = 16},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -14},/obj/structure/table/reinforced,/obj/item/weapon/tool/wrench,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/gloves/boxing,/obj/item/clothing/gloves/boxing/blue,/obj/item/weapon/material/twohanded/baseballbat/foam,/obj/item/weapon/material/sword/foam,/obj/item/weapon/material/twohanded/fireaxe/foam,/obj/item/weapon/material/twohanded/spear/foam,/obj/item/paint_palette{pixel_y = 6; pixel_x = 6},/obj/item/paint_palette{pixel_y = 6; pixel_x = 6},/obj/item/paint_brush{pixel_y = 4; pixel_x = -8},/obj/item/paint_brush{pixel_y = 4; pixel_x = -8},/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/obj/item/device/camera,/obj/item/weapon/storage/photo_album,/obj/item/weapon/storage/fancy/crayons{pixel_y = -3; pixel_x = 11},/obj/item/weapon/storage/fancy/crayons{pixel_y = -3; pixel_x = 11},/obj/item/weapon/storage/fancy/markers{pixel_y = 6; pixel_x = 11},/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/hand_labeler,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLeisure)
+"c" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/fans{pixel_y = 16},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -14},/obj/structure/table/reinforced,/obj/item/weapon/tool/wrench,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/gloves/boxing,/obj/item/clothing/gloves/boxing/blue,/obj/item/weapon/material/twohanded/baseballbat/foam,/obj/item/weapon/material/sword/foam,/obj/item/weapon/material/twohanded/fireaxe/foam,/obj/item/weapon/material/twohanded/spear/foam,/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/obj/item/device/camera,/obj/item/weapon/storage/photo_album,/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/crayons{pixel_x = 11; pixel_y = -3},/obj/item/weapon/storage/fancy/markers{pixel_x = 11; pixel_y = 6},/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/hand_labeler,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLeisure)
"d" = (/obj/structure/easel,/obj/item/canvas/twentythree_nineteen,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure)
"e" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure)
"f" = (/obj/effect/floor_decal/spline/plain,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure)
@@ -24,9 +24,9 @@
"x" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure)
"y" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure)
"z" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/obj/item/weapon/book/codex/lore/robutt,/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,/obj/item/weapon/book/bundle/custom_library/fiction/silence,/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure)
-"A" = (/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/obj/item/weapon/deck/cards{pixel_y = 5; pixel_x = -4},/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure)
+"A" = (/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/obj/item/weapon/deck/cards{pixel_x = -4; pixel_y = 5},/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure)
"B" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure)
-"C" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_y = 6; pixel_x = 6},/obj/item/paint_brush{pixel_y = 4; pixel_x = -8},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure)
+"C" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure)
"D" = (/obj/structure/easel,/obj/item/canvas/twentythree_twentythree,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure)
"E" = (/obj/structure/fitness/weightlifter,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure)
"F" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/scale,/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm
index 406207eaaf..b39ee40e9e 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm
@@ -12,7 +12,7 @@
"is" = (/obj/structure/bed/chair/sofa/black,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
"jv" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLuxuryBar)
"jC" = (/obj/machinery/vending/foodfast,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"kZ" = (/obj/structure/urinal{dir = 4; pixel_y = 0; pixel_x = -31},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"kZ" = (/obj/structure/urinal{dir = 4; pixel_x = -31},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
"lj" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"lp" = (/obj/structure/fans,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 28},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
"lE" = (/obj/structure/table/bench/glass,/obj/structure/closet/walllocker_double/survival/west,/obj/item/clothing/under/swimsuit/stripper/stripper_pink,/obj/item/clothing/mask/muzzle/ballgag/ringgag,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
@@ -30,23 +30,23 @@
"xR" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar)
"zq" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalLuxuryBar)
"zW" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"As" = (/obj/machinery/disposal/wall{dir = 8; pixel_y = 0; pixel_x = 35},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"As" = (/obj/machinery/disposal/wall{dir = 8; pixel_x = 35},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar)
"BC" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Cg" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Di" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"Dy" = (/obj/structure/bed/chair/sofa/left/black{dir = 2},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"Dy" = (/obj/structure/bed/chair/sofa/left/black,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
"DK" = (/obj/structure/table/reinforced,/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
"DN" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"DX" = (/obj/structure/bed/chair/sofa/right/black,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
"ET" = (/obj/machinery/door/airlock/voidcraft/survival_pod,/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "shelterblast"; name = "Shelter Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"EY" = (/obj/structure/sink{pixel_y = 14},/obj/structure/mirror{pixel_y = 32},/obj/machinery/disposal/wall{dir = 4; pixel_y = 0; pixel_x = -37},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"EY" = (/obj/structure/sink{pixel_y = 14},/obj/structure/mirror{pixel_y = 32},/obj/machinery/disposal/wall{dir = 4; pixel_x = -37},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Gg" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"GB" = (/obj/structure/table/bench/glass,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
"GF" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"GH" = (/obj/structure/table/hardwoodtable,/obj/structure/stripper_pole{pixel_y = 9},/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/item/clothing/under/swimsuit/stripper/mankini{pixel_y = 5; pixel_x = -6},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"GH" = (/obj/structure/table/hardwoodtable,/obj/structure/stripper_pole{pixel_y = 9},/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/item/clothing/under/swimsuit/stripper/mankini{pixel_x = -6; pixel_y = 5},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
"HE" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/structure/closet/walllocker_double/survival/west,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"HS" = (/obj/structure/table/fancyblack,/obj/item/device/paicard,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"Ij" = (/obj/structure/table/hardwoodtable,/obj/structure/stripper_pole{pixel_y = 9},/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/item/clothing/under/fluff/latexmaid{pixel_y = 7; pixel_x = -8},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"Ij" = (/obj/structure/table/hardwoodtable,/obj/structure/stripper_pole{pixel_y = 9},/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/item/clothing/under/fluff/latexmaid{pixel_x = -8; pixel_y = 7},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar)
"IN" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar)
"IT" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
"JT" = (/obj/structure/table/reinforced,/obj/item/weapon/flame/lighter/random{pixel_x = -4; pixel_y = 4},/obj/item/weapon/flame/lighter/random,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
@@ -57,21 +57,21 @@
"LX" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
"MV" = (/obj/structure/sink{pixel_y = 14},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Nl" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"Nv" = (/obj/structure/urinal{dir = 4; pixel_y = 0; pixel_x = -31},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"Nv" = (/obj/structure/urinal{dir = 4; pixel_x = -31},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
"NJ" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = -4; pixel_y = 12},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Ol" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLuxuryBar)
"OA" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Pr" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Pv" = (/obj/structure/disposalpipe/segment,/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar)
"RE" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"RR" = (/obj/structure/toilet{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/curtain/bed{name = "Bathroom curtain"; icon_state = "open"; opacity = 0; dir = 2; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"RR" = (/obj/structure/toilet{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/curtain/bed{icon_state = "open"; name = "Bathroom curtain"; opacity = 0},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
"RS" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar)
"RV" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/closet/walllocker_double/survival/west,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Ub" = (/obj/structure/table/fancyblack,/obj/item/toy/eight_ball,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Uu" = (/obj/structure/table/fancyblack,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Wq" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar)
"WL" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
-"XG" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/gun/energy/locked/frontier/carbine,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
+"XG" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/tape_roll,/obj/item/sticky_pad/random,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/blue,/obj/item/fulton_core,/obj/item/fulton_core,/obj/item/extraction_pack,/obj/item/extraction_pack,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/item/weapon/pickaxe/hand,/obj/item/device/flashlight/color/yellow,/obj/item/device/flashlight/color/orange,/obj/item/device/threadneedle,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/flame/lighter/zippo,/obj/item/device/flashlight/lantern,/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/stack/nanopaste,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/suit_cooling_unit/emergency,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/box/khcrystal,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/stack/marker_beacon/ten,/obj/item/device/starcaster_news,/obj/item/device/mapping_unit,/obj/item/weapon/storage/box/dosimeter,/obj/item/device/gps,/obj/item/device/gps,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/device/pda,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun,/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_x = -2; pixel_y = -2},/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/fishing_net,/obj/item/weapon/storage/backpack/sport,/obj/item/weapon/storage/backpack/sport,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/storage/belt,/obj/item/clothing/accessory/poncho/thermal,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar)
"Ym" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = -4; pixel_y = 12},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar)
"ZS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm
index 76d888df6e..db3767ecd8 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm
@@ -354,8 +354,8 @@
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/carbine,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun,
/obj/item/weapon/cell/device/weapon{
pixel_x = -2;
pixel_y = -2
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm
index 1f1d5dd1c8..8d2e8d32d1 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm
@@ -203,8 +203,8 @@
/obj/structure/closet/secure_closet/guncabinet/phase{
pixel_y = -32
},
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
-/obj/item/weapon/gun/energy/locked/frontier/holdout,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
+/obj/item/weapon/gun/energy/locked/phasegun/pistol,
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/permit/gun/planetside,
/obj/item/clothing/accessory/holster/waist,
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm
index b8d6be66e6..f01a26a107 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm
@@ -13,13 +13,13 @@
"n" = (/obj/structure/sign/nosmoking_2{pixel_x = 30},/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters)
"o" = (/obj/machinery/shower{pixel_y = 16},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters)
"p" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalQuarters)
-"q" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
+"q" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
"r" = (/obj/machinery/vending/wallmed1{dir = 4; pixel_x = -23},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters)
"s" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters)
"t" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/iandouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
"u" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalQuarters)
"v" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters)
-"w" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
+"w" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
"x" = (/obj/machinery/door/airlock/maintenance/common{name = "Dorm"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalQuarters)
"y" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/yellow,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
"z" = (/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters)
@@ -40,7 +40,7 @@
"O" = (/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/structure/sink{dir = 1; pixel_y = -9},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters)
"P" = (/obj/machinery/door/window/survival_pod,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters)
"R" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters)
-"S" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/device/starcaster_news,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
+"S" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/device/starcaster_news,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters)
"U" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/toilet{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters)
"V" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters)
"W" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters)
diff --git a/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm
index 8f725cb2df..d9ddb58be1 100644
--- a/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm
+++ b/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm
@@ -42,13 +42,13 @@
"Ko" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience)
"Mf" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience)
"Nt" = (/obj/machinery/mech_recharger,/obj/machinery/newscaster{layer = 3.3; pixel_y = -27},/obj/mecha/medical/odysseus/old,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalScience)
-"NV" = (/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -30},/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience)
+"NV" = (/obj/structure/reagent_dispensers/acid{pixel_x = -30},/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience)
"PD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience)
"Qx" = (/obj/machinery/mecha_part_fabricator/pros,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience)
"TK" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScience)
-"TY" = (/obj/structure/closet/secure_closet/guncabinet/phase{pixel_y = -32},/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience)
+"TY" = (/obj/structure/closet/secure_closet/guncabinet/phase{pixel_y = -32},/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience)
"Vp" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience)
-"VG" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; icon_state = "map_vent_out"; use_power = 1},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScience)
+"VG" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; icon_state = "map_vent_out"; use_power = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScience)
"Yk" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalScience)
"Zq" = (/obj/machinery/atmospherics/unary/freezer{dir = 8; icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience)
diff --git a/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm b/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm
index ba8f5cb0c7..08442097b7 100644
--- a/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm
+++ b/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm
@@ -11,7 +11,7 @@
"s" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TinyCombatShip)
"t" = (/obj/effect/catwalk_plated/dark,/turf/template_noop,/area/survivalpod/superpose/TinyCombatShip)
"u" = (/obj/machinery/disperser/middle{dir = 1},/turf/template_noop,/area/template_noop)
-"x" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip)
+"x" = (/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip)
"D" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip)
"F" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/TinyCombatShip)
"H" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/TinyCombatShip)
diff --git a/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm b/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm
index fb72773703..58b004eb45 100644
--- a/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm
+++ b/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm
@@ -41,7 +41,7 @@
"kO" = (/obj/machinery/door/window/northleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip)
"kU" = (/obj/machinery/access_button{master_tag = null; pixel_x = 27; pixel_y = -7; req_one_access = null},/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Ship Hatch"; req_access = null},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip)
"kV" = (/obj/structure/table/woodentable,/obj/item/weapon/card/id/external{access = list(160)},/obj/item/weapon/card/id/external{access = list(160)},/obj/item/weapon/card/id/external{access = list(160)},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip)
-"lm" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip)
+"lm" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/phasegun/pistol,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip)
"lv" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip)
"lQ" = (/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip)
"lW" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip)
diff --git a/tgui/packages/tgui/interfaces/CharacterDirectory.js b/tgui/packages/tgui/interfaces/CharacterDirectory.js
index b242f356b4..e85401f833 100644
--- a/tgui/packages/tgui/interfaces/CharacterDirectory.js
+++ b/tgui/packages/tgui/interfaces/CharacterDirectory.js
@@ -25,16 +25,17 @@ const getTagColor = (tag) => {
export const CharacterDirectory = (props, context) => {
const { act, data } = useBackend(context);
- const { personalVisibility, personalTag, personalErpTag, personalEventTag } = data;
+ const { personalVisibility, personalTag, personalGenderTag, personalSexualityTag, personalErpTag, personalEventTag } =
+ data;
const [overlay, setOverlay] = useLocalState(context, 'overlay', null);
return (
-
+
{(overlay && ) || (
-
+
+
+
+ {overlay.sexualitytag}
+
@@ -121,6 +134,8 @@ const CharacterDirectoryList = (props, context) => {
Name
Species
Vore Tag
+ Gender
+ Sexuality
ERP Tag
Event Pref
@@ -137,6 +152,8 @@ const CharacterDirectoryList = (props, context) => {
{character.name}
{character.species}
{character.tag}
+ {character.gendertag}
+ {character.sexualitytag}
{character.erptag}
{character.eventtag}
diff --git a/tgui/public/tgui.bundle.css b/tgui/public/tgui.bundle.css
index eb7c68d81f..5436d57605 100644
--- a/tgui/public/tgui.bundle.css
+++ b/tgui/public/tgui.bundle.css
@@ -1,13 +1,13 @@
-html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:rgba(0,0,0,0) !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}a:link,a:visited{color:#2185d0}a:hover,a:active{color:#4972a1}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#252525;color:#fff;background-color:rgba(37,37,37,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#3e3e3e;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.IconStack>.Icon{position:absolute;width:100%;text-align:center}.IconStack{position:relative;display:inline-block;height:1.2em;line-height:2em;vertical-align:middle}.IconStack:after{color:rgba(0,0,0,0);content:"."}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:rgba(0,0,0,0);line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:rgba(0,0,0,0);stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:rgba(0,0,0,0);stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left;vertical-align:baseline}.LabeledList__label{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.LabeledList__breakContents{word-break:break-all;word-wrap:break-word}.Modal{background-color:#252525;max-width:calc(100% - 1rem);padding:1rem}.NanoMap__container{overflow:hiddden;width:100%;z-index:1}.NanoMap__marker{z-index:10;padding:0px;margin:0px}.NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border:.0833333333em solid #000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border:.0833333333em solid #d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border:.0833333333em solid #bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border:.0833333333em solid #d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border:.0833333333em solid #d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border:.0833333333em solid #9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border:.0833333333em solid #1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border:.0833333333em solid #009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border:.0833333333em solid #1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--violet{border:.0833333333em solid #552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border:.0833333333em solid #8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border:.0833333333em solid #cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border:.0833333333em solid #8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border:.0833333333em solid #646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--good{border:.0833333333em solid #4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border:.0833333333em solid #cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border:.0833333333em solid #bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border:.0833333333em solid #657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.RoundGauge{font-size:1rem;width:2.6em;height:1.3em;margin:0 auto;margin-bottom:.2em}.RoundGauge__ringTrack{fill:rgba(0,0,0,0);stroke:rgba(255,255,255,.1);stroke-width:10;stroke-dasharray:157.08;stroke-dashoffset:157.08}.RoundGauge__ringFill{fill:rgba(0,0,0,0);stroke:#6a96c9;stroke-width:10;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.RoundGauge__needle,.RoundGauge__ringFill{transition:transform 50ms ease-in-out}.RoundGauge__needleLine,.RoundGauge__needleMiddle{fill:#db2828}.RoundGauge__alert{fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;fill:rgba(255,255,255,.1)}.RoundGauge__alert.max{fill:#db2828}.RoundGauge--color--black.RoundGauge__ringFill{stroke:#1a1a1a}.RoundGauge--color--white.RoundGauge__ringFill{stroke:#fff}.RoundGauge--color--red.RoundGauge__ringFill{stroke:#df3e3e}.RoundGauge--color--orange.RoundGauge__ringFill{stroke:#f37f33}.RoundGauge--color--yellow.RoundGauge__ringFill{stroke:#fbda21}.RoundGauge--color--olive.RoundGauge__ringFill{stroke:#cbe41c}.RoundGauge--color--green.RoundGauge__ringFill{stroke:#25ca4c}.RoundGauge--color--teal.RoundGauge__ringFill{stroke:#00d6cc}.RoundGauge--color--blue.RoundGauge__ringFill{stroke:#2e93de}.RoundGauge--color--violet.RoundGauge__ringFill{stroke:#7349cf}.RoundGauge--color--purple.RoundGauge__ringFill{stroke:#ad45d0}.RoundGauge--color--pink.RoundGauge__ringFill{stroke:#e34da1}.RoundGauge--color--brown.RoundGauge__ringFill{stroke:#b97447}.RoundGauge--color--grey.RoundGauge__ringFill{stroke:#848484}.RoundGauge--color--good.RoundGauge__ringFill{stroke:#68c22d}.RoundGauge--color--average.RoundGauge__ringFill{stroke:#f29a29}.RoundGauge--color--bad.RoundGauge__ringFill{stroke:#df3e3e}.RoundGauge--color--label.RoundGauge__ringFill{stroke:#8b9bb0}.RoundGauge__alert--black{fill:#1a1a1a;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--white{fill:#fff;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--red{fill:#df3e3e;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--orange{fill:#f37f33;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--yellow{fill:#fbda21;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--olive{fill:#cbe41c;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--green{fill:#25ca4c;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--teal{fill:#00d6cc;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--blue{fill:#2e93de;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--violet{fill:#7349cf;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--purple{fill:#ad45d0;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--pink{fill:#e34da1;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--brown{fill:#b97447;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--grey{fill:#848484;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--good{fill:#68c22d;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--average{fill:#f29a29;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--bad{fill:#df3e3e;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--label{fill:#8b9bb0;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}@keyframes RoundGauge__alertAnim{0%{opacity:.1}50%{opacity:1}100%{opacity:.1}}.Section{position:relative;margin-bottom:.5em;background-color:#191919;background-color:rgba(0,0,0,.33);box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Section--flex{display:flex;flex-flow:column}.Section--flex .Section__content{overflow:auto;flex-grow:1}.Section__content--noTopPadding{padding-top:0}.Section__content--stretchContents{height:calc(100% - 3rem)}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid rgba(0,0,0,0);border-right:.4166666667em solid rgba(0,0,0,0);border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:rgba(0,0,0,.33)}.Tabs--fill{height:100%}.Section .Tabs{background-color:rgba(0,0,0,0)}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:rgba(0,0,0,0);color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em;transition:background-color 50ms ease-out}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075);transition:background-color 0}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid rgba(0,0,0,0);border-bottom:.1666666667em solid rgba(0,0,0,0);border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid rgba(0,0,0,0);border-right:.1666666667em solid rgba(0,0,0,0);border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:rgba(0,0,0,0);color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.ListInput__Section .Section__title{flex-shrink:0}.ListInput__Section .Section__titleText{font-size:1em;white-space:pre-line}.ListInput__Loader{width:100%;position:relative;height:4px}.ListInput__LoaderProgress{position:absolute;transition:background-color 500ms ease-out,width 500ms ease-out;background-color:#3e6189;height:100%}.InputModal__Section .Section__title{flex-shrink:0}.InputModal__Section .Section__titleText{font-size:1em;white-space:pre-line}.InputModal__Loader{width:100%;position:relative;height:4px}.InputModal__LoaderProgress{position:absolute;transition:background-color 500ms ease-out,width 500ms ease-out;background-color:#3e6189;height:100%}.ObjectComponent__Titlebar{border-top-left-radius:12px;border-top-right-radius:12px;white-space:nowrap;-ms-user-select:none;user-select:none}.ObjectComponent__Content{white-space:nowrap;background-color:rgba(0,0,0,.5);-ms-user-select:none;user-select:none}.ObjectComponent__PortPos{position:absolute;top:0;left:0;right:0;bottom:0}.color-stroke-black{stroke:#000 !important}.color-stroke-white{stroke:#d9d9d9 !important}.color-stroke-red{stroke:#bd2020 !important}.color-stroke-orange{stroke:#d95e0c !important}.color-stroke-yellow{stroke:#d9b804 !important}.color-stroke-olive{stroke:#9aad14 !important}.color-stroke-green{stroke:#1b9638 !important}.color-stroke-teal{stroke:#009a93 !important}.color-stroke-blue{stroke:#1c71b1 !important}.color-stroke-violet{stroke:#552dab !important}.color-stroke-purple{stroke:#8b2baa !important}.color-stroke-pink{stroke:#cf2082 !important}.color-stroke-brown{stroke:#8c5836 !important}.color-stroke-grey{stroke:#646464 !important}.color-stroke-good{stroke:#4d9121 !important}.color-stroke-average{stroke:#cd7a0d !important}.color-stroke-bad{stroke:#bd2020 !important}.color-stroke-label{stroke:#657a94 !important}.AlertModal__Message{text-align:center;justify-content:center;white-space:pre-line}.AlertModal__Buttons{justify-content:center}.AlertModal__Loader{width:100%;position:relative;height:4px}.AlertModal__LoaderProgress{position:absolute;transition:background-color 500ms ease-out,width 500ms ease-out;background-color:#3e6189;height:100%}.CameraConsole__left{position:absolute;top:0;bottom:0;left:0;width:18.3333333333em}.CameraConsole__right{position:absolute;top:0;bottom:0;left:18.3333333333em;right:0;background-color:rgba(0,0,0,.33)}.CameraConsole__toolbar{position:absolute;top:0;left:0;right:0;height:2em;line-height:2em;margin:.25em 1em 0}.CameraConsole__toolbarRight{position:absolute;top:0;right:0;height:2em;line-height:2em;margin:.33em .5em 0}.CameraConsole__map{position:absolute;top:2.1666666667em;bottom:0;left:0;right:0;margin:.5em;text-align:center}.CameraConsole__map .NoticeBox{margin-top:calc(50% - 2em)}.Changelog__Button{height:22px}.Changelog__Cell{padding:3px 0}.Changelog__Cell--Icon{width:25px}.CrewManifest--Command .Section__title{border-color:#fbd608}.CrewManifest--Command .Section__titleText{color:#fbd608}.CrewManifest--Security .Section__title{border-color:#db2828}.CrewManifest--Security .Section__titleText{color:#db2828}.CrewManifest--Engineering .Section__title{border-color:#f2711c}.CrewManifest--Engineering .Section__titleText{color:#f2711c}.CrewManifest--Medical .Section__title{border-color:#00b5ad}.CrewManifest--Medical .Section__titleText{color:#00b5ad}.CrewManifest--Misc .Section__title{border-color:#fff}.CrewManifest--Misc .Section__titleText{color:#fff}.CrewManifest--Science .Section__title{border-color:#a333c8}.CrewManifest--Science .Section__titleText{color:#a333c8}.CrewManifest--Supply .Section__title{border-color:#a5673f}.CrewManifest--Supply .Section__titleText{color:#a5673f}.CrewManifest--Service .Section__title{border-color:#20b142}.CrewManifest--Service .Section__titleText{color:#20b142}.CrewManifest--Silicon .Section__title{border-color:#e03997}.CrewManifest--Silicon .Section__titleText{color:#e03997}.CrewManifest__Cell{padding:3px 0}.CrewManifest__Cell--Rank{color:#7e90a7}.CrewManifest__Icons{padding:3px 9px;text-align:right}.CrewManifest__Icon{color:#7e90a7;position:relative}.CrewManifest__Icon:not(:last-child){margin-right:7px}.CrewManifest__Icon--Chevron{padding-right:2px}.CrewManifest__Icon--Command{color:#fbd608}.ExperimentTechwebServer__Web,.ExperimentConfigure__ExperimentPanel{background:#000;border:1px solid #40628a;margin:3px 0}.ExperimentTechwebServer__WebHeader{background:#40628a;padding:2px}.ExperimentTechwebServer__WebName{font-size:18px}.ExperimentTechwebServer__WebContent{padding:4px}.ExperimentTechwebServer__WebContent>.LabeledList{margin:.25rem .25rem .25rem 1rem}.ExperimentConfigure__ExperimentName{font-weight:bold;border-radius:0}.ExperimentConfigure__ExperimentContent{padding:.25rem 1.5rem .25rem .25rem}.ExperimentStage__Indicator{font-weight:bold;margin-right:1rem;text-align:center}.ExperimentStage__StageContainer.complete .ExperimentStage__Description{opacity:.4;text-decoration:line-through}.ExperimentStage__StageContainer{margin-bottom:5px}.ExperimentStage__Table{border-collapse:separate;border-spacing:.25rem .25rem}.ExperimentConfigure__PerformExperiment{text-align:center;padding:.75rem 0}.ExperimentConfigure__ExperimentsContainer{height:100%;display:flex;flex-direction:column}.ExperimentConfigure__ExperimentsContainer>:last-child{flex:1;overflow-y:auto}.ExperimentConfigure__TagContainer{position:absolute;right:0;top:0}.ExperimentConfigure__PerformanceHint *{position:absolute;width:100%;height:100%;right:0;top:0;color:rgba(255,255,255,.5)}.NuclearBomb__displayBox{background-color:#002003;border:.167em inset #e8e4c9;color:#03e017;font-size:2em;font-family:monospace;padding:.25em}.NuclearBomb__Button{outline-width:.25rem !important;border-width:.65rem !important;padding-left:0 !important;padding-right:0 !important}.NuclearBomb__Button--keypad{background-color:#e8e4c9;border-color:#e8e4c9}.NuclearBomb__Button--keypad:hover{background-color:#f7f6ee !important;border-color:#f7f6ee !important}.NuclearBomb__Button--1{background-color:#d3cfb7 !important;border-color:#d3cfb7 !important;color:#a9a692 !important}.NuclearBomb__Button--E{background-color:#d9b804 !important;border-color:#d9b804 !important}.NuclearBomb__Button--E:hover{background-color:#f3d00e !important;border-color:#f3d00e !important}.NuclearBomb__Button--C{background-color:#bd2020 !important;border-color:#bd2020 !important}.NuclearBomb__Button--C:hover{background-color:#d52b2b !important;border-color:#d52b2b !important}.NuclearBomb__NTIcon{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4wIiB2aWV3Qm94PSIwIDAgNDI1IDIwMCIgb3BhY2l0eT0iLjMzIj4NCiAgPHBhdGggZD0ibSAxNzguMDAzOTksMC4wMzg2OSAtNzEuMjAzOTMsMCBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgLTYuNzYxMzQsNi4wMjU1NSBsIDAsMTg3Ljg3MTQ3IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM0LDYuMDI1NTQgbCA1My4xMDcyLDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDYuNzYxMzUsLTYuMDI1NTQgbCAwLC0xMDEuNTQ0MDE4IDcyLjIxNjI4LDEwNC42OTkzOTggYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDUuNzYwMTUsMi44NzAxNiBsIDczLjU1NDg3LDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDYuNzYxMzUsLTYuMDI1NTQgbCAwLC0xODcuODcxNDcgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTM1LC02LjAyNTU1IGwgLTU0LjcxNjQ0LDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTMzLDYuMDI1NTUgbCAwLDEwMi42MTkzNSBMIDE4My43NjQxMywyLjkwODg2IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNS43NjAxNCwtMi44NzAxNyB6IiAvPg0KICA8cGF0aCBkPSJNIDQuODQ0NjMzMywyMi4xMDg3NSBBIDEzLjQxMjAzOSwxMi41MDE4NDIgMCAwIDEgMTMuNDc3NTg4LDAuMDM5MjQgbCA2Ni4xMTgzMTUsMCBhIDUuMzY0ODE1OCw1LjAwMDczNyAwIDAgMSA1LjM2NDgyMyw1LjAwMDczIGwgMCw3OS44NzkzMSB6IiAvPg0KICA8cGF0aCBkPSJtIDQyMC4xNTUzNSwxNzcuODkxMTkgYSAxMy40MTIwMzgsMTIuNTAxODQyIDAgMCAxIC04LjYzMjk1LDIyLjA2OTUxIGwgLTY2LjExODMyLDAgYSA1LjM2NDgxNTIsNS4wMDA3MzcgMCAwIDEgLTUuMzY0ODIsLTUuMDAwNzQgbCAwLC03OS44NzkzMSB6IiAvPg0KPC9zdmc+DQo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4NCjwhLS0gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvNC4wLyAtLT4NCg==);background-size:70%;background-position:center;background-repeat:no-repeat}.Paper__Stamp{position:absolute;pointer-events:none;user-select:none}.Paper__Page{word-break:break-word;word-wrap:break-word}.Roulette__container{display:flex}.Roulette__board-cell{display:table-cell;padding:0;margin:0;border:1px solid #fff;vertical-align:bottom}.Roulette__board-cell-number{width:35px}.Roulette__board-cell-number--colspan-2{width:71px}.Roulette__board-cell-number--colspan-4{width:143px}.Roulette__board-button{display:table-cell !important;border:none !important;width:inherit;height:40px;padding:0;margin:0;text-align:center;vertical-align:middle;color:#fff !important}.Roulette__board-button--rowspan-3{height:122px}.Roulette__board-button-text{text-align:center;font-size:16px;font-weight:bold}.Roulette__lowertable{margin-top:8px;border-collapse:collapse;border:1px solid #fff;border-spacing:0}.Roulette__lowertable--cell{border:2px solid #fff;padding:0px;margin:0px}.Roulette__lowertable--betscell{vertical-align:top}.Roulette__lowertable--spinresult{text-align:center;font-size:100px;font-weight:bold;vertical-align:middle}.Roulette__lowertable--spinresult-black{background-color:#000}.Roulette__lowertable--spinresult-red{background-color:#db2828}.Roulette__lowertable--spinresult-green{background-color:#20b142}.Roulette__lowertable--spinbutton{margin:0 !important;border:none !important;font-size:50px;line-height:60px !important;text-align:center;font-weight:bold}.Roulette__lowertable--header{width:1%;text-align:center;font-size:16px;font-weight:bold}.Safe__engraving{position:absolute;width:95%;height:96%;left:2.5%;top:2%;border:5px outset #3e4f6a;padding:5px;text-align:center}.Safe__engraving-arrow{color:#35435a}.Safe__engraving-hinge{content:" ";background-color:#191f2a;width:25px;height:40px;position:absolute;right:-15px;margin-top:-20px}.Safe__dialer{margin-bottom:1.25rem}.Safe__dialer .Button{width:80px}.Safe__dialer-right .Button i{z-index:-100}.Safe__dialer-number{color:#bbb;display:inline;background-color:#191f2a;font-size:1.5rem;font-weight:bold;padding:0 .5rem}.Safe__contents{border:10px solid #191f2a;background-color:#0f131a;height:calc(85% + 7.5px);text-align:left;padding:5px}.Safe__help{position:absolute;top:73%;left:10px;width:50%;font-family:"Comic Sans MS",cursive,sans-serif;font-style:italic;color:#000;box-shadow:5px 5px #111;background-image:linear-gradient(to bottom, #b2ae74 0%, #8e8b5d 100%);transform:rotate(-1deg)}.Safe__help:before{content:" ";display:block;width:24px;height:40px;background-image:linear-gradient(to bottom, transparent 0%, #ffffff 100%);box-shadow:1px 1px #111;opacity:.2;position:absolute;top:-30px;left:calc(50% - 12px);transform:rotate(-5deg)}.TachyonArray__ActiveRecord{margin:0 .5em 0 .8em}.TachyonArray__Content{overflow-x:hidden;overflow-y:auto}.TachyonArray__ResearchFooter>*{width:100%;text-align:center}.Techweb__NodeProgress{margin-bottom:1rem}.Techweb__NodeProgress>*:not(:last-child){margin-right:.4rem}.Techweb__DesignIcon{margin-left:.25rem;margin-right:.25rem}.Techweb__OverviewNodes{overflow-y:auto;overflow-x:hidden;padding-right:6px;padding-top:4px}.Techweb__HeaderContent{background-color:#000;padding:6px;border:1px solid #40628a}.Techweb__HeaderContent>*>:not(:last-child){margin-bottom:5px}.Techweb__HeaderSectionTabs{margin-top:8px;background-color:#000;border:1px solid #40628a;padding-left:5px;padding-right:5px}.Techweb__HeaderTabTitle{border-right:1px solid #40628a;padding-right:.5em;margin-right:.5em;font-weight:bold}.Techweb__HeaderSectionTabs input{background-color:rgba(255,255,255,.05)}.Techweb__PointSummary{list-style:none;margin:.4em 0 0 1em;padding:0}.Techweb__SecProtocol{color:#db2828;margin-left:.2em}.Techweb__SecProtocol.engaged{color:#5baa27}.Techweb__DesignModal>:not(:last-child){margin-bottom:.5em}.Techweb__LockedModal>:not(:last-child){margin-bottom:.5em}.Techweb__ExperimentDiscount{color:#7e90a7;margin:.5em 0}.IDCard__NamePlate{margin-left:-6px;margin-right:-6px;margin-top:6px;padding:.5em;border-top:.1666666667em solid #4972a1;font-size:1.1666666667em;font-weight:bold}.TinderMessage_First_Sent,.TinderMessage_Subsequent_Sent,.TinderMessage_First_Received,.TinderMessage_Subsequent_Received{padding:6px;z-index:1;word-break:break-all;max-width:100%}.TinderMessage_First_Sent,.TinderMessage_Subsequent_Sent{text-align:right;background-color:#4d9121}.TinderMessage_First_Sent{border-radius:10px 10px 0px 10px}.TinderMessage_Subsequent_Sent{border-radius:10px 0px 0px 10px}.TinderMessage_First_Received,.TinderMessage_Subsequent_Received{text-align:left;background-color:#cd7a0d}.TinderMessage_First_Received{border-radius:10px 10px 10px 0px}.TinderMessage_Subsequent_Received{border-radius:0px 10px 10px 0px}.ClassicMessage_Sent,.ClassicMessage_Received{word-break:break-all}.ClassicMessage_Sent{color:#4d9121}.ClassicMessage_Received{color:#cd7a0d}.Section--elevator--fire{background-color:#f33;background-color:rgba(255,0,0,.35)}.Section--elevator--fire>.Section__title{padding:.5em;border-bottom:.1666666667em solid red}.Layout,.Layout *{scrollbar-base-color:#1c1c1c;scrollbar-face-color:#3b3b3b;scrollbar-3dlight-color:#252525;scrollbar-highlight-color:#252525;scrollbar-track-color:#1c1c1c;scrollbar-arrow-color:#929292;scrollbar-shadow-color:#3b3b3b}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:auto}.Layout__content--flexRow{display:flex;flex-flow:row}.Layout__content--flexColumn{display:flex;flex-flow:column}.NtosHeader__left{position:absolute;left:1em}.NtosHeader__right{position:absolute;right:1em}.NtosHeader__icon{margin-top:-0.75em;margin-bottom:-0.5em;vertical-align:middle}.NtosWindow__header{position:absolute;top:0;left:0;right:0;height:2em;line-height:1.928em;background-color:rgba(0,0,0,.5);font-family:Consolas,monospace;font-size:1.1666666667em;user-select:none;-ms-user-select:none}.NtosWindow__content .Layout__content{margin-top:2em;font-family:Consolas,monospace;font-size:1.1666666667em}.TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#363636;transition:color 250ms ease-out,background-color 250ms ease-out}.TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#252525;background-image:linear-gradient(to bottom, #2a2a2a 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(62,62,62,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.Layout__content{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4wIiB2aWV3Qm94PSIwIDAgNDI1IDIwMCIgb3BhY2l0eT0iLjMzIj4NCiAgPHBhdGggZD0ibSAxNzguMDAzOTksMC4wMzg2OSAtNzEuMjAzOTMsMCBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgLTYuNzYxMzQsNi4wMjU1NSBsIDAsMTg3Ljg3MTQ3IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM0LDYuMDI1NTQgbCA1My4xMDcyLDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDYuNzYxMzUsLTYuMDI1NTQgbCAwLC0xMDEuNTQ0MDE4IDcyLjIxNjI4LDEwNC42OTkzOTggYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDUuNzYwMTUsMi44NzAxNiBsIDczLjU1NDg3LDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDYuNzYxMzUsLTYuMDI1NTQgbCAwLC0xODcuODcxNDcgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTM1LC02LjAyNTU1IGwgLTU0LjcxNjQ0LDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTMzLDYuMDI1NTUgbCAwLDEwMi42MTkzNSBMIDE4My43NjQxMywyLjkwODg2IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNS43NjAxNCwtMi44NzAxNyB6IiAvPg0KICA8cGF0aCBkPSJNIDQuODQ0NjMzMywyMi4xMDg3NSBBIDEzLjQxMjAzOSwxMi41MDE4NDIgMCAwIDEgMTMuNDc3NTg4LDAuMDM5MjQgbCA2Ni4xMTgzMTUsMCBhIDUuMzY0ODE1OCw1LjAwMDczNyAwIDAgMSA1LjM2NDgyMyw1LjAwMDczIGwgMCw3OS44NzkzMSB6IiAvPg0KICA8cGF0aCBkPSJtIDQyMC4xNTUzNSwxNzcuODkxMTkgYSAxMy40MTIwMzgsMTIuNTAxODQyIDAgMCAxIC04LjYzMjk1LDIyLjA2OTUxIGwgLTY2LjExODMyLDAgYSA1LjM2NDgxNTIsNS4wMDA3MzcgMCAwIDEgLTUuMzY0ODIsLTUuMDAwNzQgbCAwLC03OS44NzkzMSB6IiAvPg0KPC9zdmc+DQo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4NCjwhLS0gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvNC4wLyAtLT4NCg==);background-size:70%;background-position:center;background-repeat:no-repeat}
+html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:rgba(0,0,0,0) !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}a:link,a:visited{color:#2185d0}a:hover,a:active{color:#4972a1}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#252525;color:#fff;background-color:rgba(37,37,37,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#3e3e3e;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.IconStack>.Icon{position:absolute;width:100%;text-align:center}.IconStack{position:relative;display:inline-block;height:1.2em;line-height:2em;vertical-align:middle}.IconStack:after{color:rgba(0,0,0,0);content:"."}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:rgba(0,0,0,0);line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:rgba(0,0,0,0);stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:rgba(0,0,0,0);stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left;vertical-align:baseline}.LabeledList__label{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.LabeledList__breakContents{word-break:break-all;word-wrap:break-word}.Modal{background-color:#252525;max-width:calc(100% - 1rem);padding:1rem}.NanoMap__container{overflow:hiddden;width:100%;z-index:1}.NanoMap__marker{z-index:10;padding:0px;margin:0px}.NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border:.0833333333em solid #000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border:.0833333333em solid #d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border:.0833333333em solid #bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border:.0833333333em solid #d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border:.0833333333em solid #d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border:.0833333333em solid #9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border:.0833333333em solid #1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border:.0833333333em solid #009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border:.0833333333em solid #1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--violet{border:.0833333333em solid #552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border:.0833333333em solid #8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border:.0833333333em solid #cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border:.0833333333em solid #8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border:.0833333333em solid #646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--good{border:.0833333333em solid #4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border:.0833333333em solid #cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border:.0833333333em solid #bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border:.0833333333em solid #657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.RoundGauge{font-size:1rem;width:2.6em;height:1.3em;margin:0 auto;margin-bottom:.2em}.RoundGauge__ringTrack{fill:rgba(0,0,0,0);stroke:rgba(255,255,255,.1);stroke-width:10;stroke-dasharray:157.08;stroke-dashoffset:157.08}.RoundGauge__ringFill{fill:rgba(0,0,0,0);stroke:#6a96c9;stroke-width:10;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.RoundGauge__needle,.RoundGauge__ringFill{transition:transform 50ms ease-in-out}.RoundGauge__needleLine,.RoundGauge__needleMiddle{fill:#db2828}.RoundGauge__alert{fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;fill:rgba(255,255,255,.1)}.RoundGauge__alert.max{fill:#db2828}.RoundGauge--color--black.RoundGauge__ringFill{stroke:#1a1a1a}.RoundGauge--color--white.RoundGauge__ringFill{stroke:#fff}.RoundGauge--color--red.RoundGauge__ringFill{stroke:#df3e3e}.RoundGauge--color--orange.RoundGauge__ringFill{stroke:#f37f33}.RoundGauge--color--yellow.RoundGauge__ringFill{stroke:#fbda21}.RoundGauge--color--olive.RoundGauge__ringFill{stroke:#cbe41c}.RoundGauge--color--green.RoundGauge__ringFill{stroke:#25ca4c}.RoundGauge--color--teal.RoundGauge__ringFill{stroke:#00d6cc}.RoundGauge--color--blue.RoundGauge__ringFill{stroke:#2e93de}.RoundGauge--color--violet.RoundGauge__ringFill{stroke:#7349cf}.RoundGauge--color--purple.RoundGauge__ringFill{stroke:#ad45d0}.RoundGauge--color--pink.RoundGauge__ringFill{stroke:#e34da1}.RoundGauge--color--brown.RoundGauge__ringFill{stroke:#b97447}.RoundGauge--color--grey.RoundGauge__ringFill{stroke:#848484}.RoundGauge--color--good.RoundGauge__ringFill{stroke:#68c22d}.RoundGauge--color--average.RoundGauge__ringFill{stroke:#f29a29}.RoundGauge--color--bad.RoundGauge__ringFill{stroke:#df3e3e}.RoundGauge--color--label.RoundGauge__ringFill{stroke:#8b9bb0}.RoundGauge__alert--black{fill:#1a1a1a;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--white{fill:#fff;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--red{fill:#df3e3e;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--orange{fill:#f37f33;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--yellow{fill:#fbda21;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--olive{fill:#cbe41c;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--green{fill:#25ca4c;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--teal{fill:#00d6cc;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--blue{fill:#2e93de;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--violet{fill:#7349cf;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--purple{fill:#ad45d0;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--pink{fill:#e34da1;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--brown{fill:#b97447;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--grey{fill:#848484;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--good{fill:#68c22d;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--average{fill:#f29a29;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--bad{fill:#df3e3e;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}.RoundGauge__alert--label{fill:#8b9bb0;transition:opacity .6s cubic-bezier(0.25, 1, 0.5, 1);animation:RoundGauge__alertAnim 1s cubic-bezier(0.34, 1.56, 0.64, 1) infinite}@keyframes RoundGauge__alertAnim{0%{opacity:.1}50%{opacity:1}100%{opacity:.1}}.Section{position:relative;margin-bottom:.5em;background-color:#191919;background-color:rgba(0,0,0,.33);box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Section--flex{display:flex;flex-flow:column}.Section--flex .Section__content{overflow:auto;flex-grow:1}.Section__content--noTopPadding{padding-top:0}.Section__content--stretchContents{height:calc(100% - 3rem)}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid rgba(0,0,0,0);border-right:.4166666667em solid rgba(0,0,0,0);border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:rgba(0,0,0,.33)}.Tabs--fill{height:100%}.Section .Tabs{background-color:rgba(0,0,0,0)}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:rgba(0,0,0,0);color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em;transition:background-color 50ms ease-out}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075);transition:background-color 0}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid rgba(0,0,0,0);border-bottom:.1666666667em solid rgba(0,0,0,0);border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid rgba(0,0,0,0);border-right:.1666666667em solid rgba(0,0,0,0);border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:rgba(0,0,0,0);color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.ListInput__Section .Section__title{flex-shrink:0}.ListInput__Section .Section__titleText{font-size:1em;white-space:pre-line}.ListInput__Loader{width:100%;position:relative;height:4px}.ListInput__LoaderProgress{position:absolute;transition:background-color 500ms ease-out,width 500ms ease-out;background-color:#3e6189;height:100%}.InputModal__Section .Section__title{flex-shrink:0}.InputModal__Section .Section__titleText{font-size:1em;white-space:pre-line}.InputModal__Loader{width:100%;position:relative;height:4px}.InputModal__LoaderProgress{position:absolute;transition:background-color 500ms ease-out,width 500ms ease-out;background-color:#3e6189;height:100%}.ObjectComponent__Titlebar{border-top-left-radius:12px;border-top-right-radius:12px;white-space:nowrap;-ms-user-select:none;user-select:none}.ObjectComponent__Content{white-space:nowrap;background-color:rgba(0,0,0,.5);-ms-user-select:none;user-select:none}.ObjectComponent__PortPos{position:absolute;top:0;left:0;right:0;bottom:0}.color-stroke-black{stroke:#000 !important}.color-stroke-white{stroke:#d9d9d9 !important}.color-stroke-red{stroke:#bd2020 !important}.color-stroke-orange{stroke:#d95e0c !important}.color-stroke-yellow{stroke:#d9b804 !important}.color-stroke-olive{stroke:#9aad14 !important}.color-stroke-green{stroke:#1b9638 !important}.color-stroke-teal{stroke:#009a93 !important}.color-stroke-blue{stroke:#1c71b1 !important}.color-stroke-violet{stroke:#552dab !important}.color-stroke-purple{stroke:#8b2baa !important}.color-stroke-pink{stroke:#cf2082 !important}.color-stroke-brown{stroke:#8c5836 !important}.color-stroke-grey{stroke:#646464 !important}.color-stroke-good{stroke:#4d9121 !important}.color-stroke-average{stroke:#cd7a0d !important}.color-stroke-bad{stroke:#bd2020 !important}.color-stroke-label{stroke:#657a94 !important}.AlertModal__Message{text-align:center;justify-content:center;white-space:pre-line}.AlertModal__Buttons{justify-content:center}.AlertModal__Loader{width:100%;position:relative;height:4px}.AlertModal__LoaderProgress{position:absolute;transition:background-color 500ms ease-out,width 500ms ease-out;background-color:#3e6189;height:100%}.CameraConsole__left{position:absolute;top:0;bottom:0;left:0;width:18.3333333333em}.CameraConsole__right{position:absolute;top:0;bottom:0;left:18.3333333333em;right:0;background-color:rgba(0,0,0,.33)}.CameraConsole__toolbar{position:absolute;top:0;left:0;right:0;height:2em;line-height:2em;margin:.25em 1em 0}.CameraConsole__toolbarRight{position:absolute;top:0;right:0;height:2em;line-height:2em;margin:.33em .5em 0}.CameraConsole__map{position:absolute;top:2.1666666667em;bottom:0;left:0;right:0;margin:.5em;text-align:center}.CameraConsole__map .NoticeBox{margin-top:calc(50% - 2em)}.Changelog__Button{height:22px}.Changelog__Cell{padding:3px 0}.Changelog__Cell--Icon{width:25px}.CrewManifest--Command .Section__title{border-color:#fbd608}.CrewManifest--Command .Section__titleText{color:#fbd608}.CrewManifest--Security .Section__title{border-color:#db2828}.CrewManifest--Security .Section__titleText{color:#db2828}.CrewManifest--Engineering .Section__title{border-color:#f2711c}.CrewManifest--Engineering .Section__titleText{color:#f2711c}.CrewManifest--Medical .Section__title{border-color:#00b5ad}.CrewManifest--Medical .Section__titleText{color:#00b5ad}.CrewManifest--Misc .Section__title{border-color:#fff}.CrewManifest--Misc .Section__titleText{color:#fff}.CrewManifest--Science .Section__title{border-color:#a333c8}.CrewManifest--Science .Section__titleText{color:#a333c8}.CrewManifest--Supply .Section__title{border-color:#a5673f}.CrewManifest--Supply .Section__titleText{color:#a5673f}.CrewManifest--Service .Section__title{border-color:#20b142}.CrewManifest--Service .Section__titleText{color:#20b142}.CrewManifest--Silicon .Section__title{border-color:#e03997}.CrewManifest--Silicon .Section__titleText{color:#e03997}.CrewManifest__Cell{padding:3px 0}.CrewManifest__Cell--Rank{color:#7e90a7}.CrewManifest__Icons{padding:3px 9px;text-align:right}.CrewManifest__Icon{color:#7e90a7;position:relative}.CrewManifest__Icon:not(:last-child){margin-right:7px}.CrewManifest__Icon--Chevron{padding-right:2px}.CrewManifest__Icon--Command{color:#fbd608}.ExperimentTechwebServer__Web,.ExperimentConfigure__ExperimentPanel{background:#000;border:1px solid #40628a;margin:3px 0}.ExperimentTechwebServer__WebHeader{background:#40628a;padding:2px}.ExperimentTechwebServer__WebName{font-size:18px}.ExperimentTechwebServer__WebContent{padding:4px}.ExperimentTechwebServer__WebContent>.LabeledList{margin:.25rem .25rem .25rem 1rem}.ExperimentConfigure__ExperimentName{font-weight:bold;border-radius:0}.ExperimentConfigure__ExperimentContent{padding:.25rem 1.5rem .25rem .25rem}.ExperimentStage__Indicator{font-weight:bold;margin-right:1rem;text-align:center}.ExperimentStage__StageContainer.complete .ExperimentStage__Description{opacity:.4;text-decoration:line-through}.ExperimentStage__StageContainer{margin-bottom:5px}.ExperimentStage__Table{border-collapse:separate;border-spacing:.25rem .25rem}.ExperimentConfigure__PerformExperiment{text-align:center;padding:.75rem 0}.ExperimentConfigure__ExperimentsContainer{height:100%;display:flex;flex-direction:column}.ExperimentConfigure__ExperimentsContainer>:last-child{flex:1;overflow-y:auto}.ExperimentConfigure__TagContainer{position:absolute;right:0;top:0}.ExperimentConfigure__PerformanceHint *{position:absolute;width:100%;height:100%;right:0;top:0;color:rgba(255,255,255,.5)}.NuclearBomb__displayBox{background-color:#002003;border:.167em inset #e8e4c9;color:#03e017;font-size:2em;font-family:monospace;padding:.25em}.NuclearBomb__Button{outline-width:.25rem !important;border-width:.65rem !important;padding-left:0 !important;padding-right:0 !important}.NuclearBomb__Button--keypad{background-color:#e8e4c9;border-color:#e8e4c9}.NuclearBomb__Button--keypad:hover{background-color:#f7f6ee !important;border-color:#f7f6ee !important}.NuclearBomb__Button--1{background-color:#d3cfb7 !important;border-color:#d3cfb7 !important;color:#a9a692 !important}.NuclearBomb__Button--E{background-color:#d9b804 !important;border-color:#d9b804 !important}.NuclearBomb__Button--E:hover{background-color:#f3d00e !important;border-color:#f3d00e !important}.NuclearBomb__Button--C{background-color:#bd2020 !important;border-color:#bd2020 !important}.NuclearBomb__Button--C:hover{background-color:#d52b2b !important;border-color:#d52b2b !important}.NuclearBomb__NTIcon{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjAiIHZpZXdCb3g9IjAgMCA0MjUgMjAwIiBvcGFjaXR5PSIuMzMiPgogIDxwYXRoIGQ9Im0gMTc4LjAwMzk5LDAuMDM4NjkgLTcxLjIwMzkzLDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTM0LDYuMDI1NTUgbCAwLDE4Ny44NzE0NyBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgNi43NjEzNCw2LjAyNTU0IGwgNTMuMTA3MiwwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM1LC02LjAyNTU0IGwgMCwtMTAxLjU0NDAxOCA3Mi4yMTYyOCwxMDQuNjk5Mzk4IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA1Ljc2MDE1LDIuODcwMTYgbCA3My41NTQ4NywwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM1LC02LjAyNTU0IGwgMCwtMTg3Ljg3MTQ3IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNi43NjEzNSwtNi4wMjU1NSBsIC01NC43MTY0NCwwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNi43NjEzMyw2LjAyNTU1IGwgMCwxMDIuNjE5MzUgTCAxODMuNzY0MTMsMi45MDg4NiBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgLTUuNzYwMTQsLTIuODcwMTcgeiIgLz4KICA8cGF0aCBkPSJNIDQuODQ0NjMzMywyMi4xMDg3NSBBIDEzLjQxMjAzOSwxMi41MDE4NDIgMCAwIDEgMTMuNDc3NTg4LDAuMDM5MjQgbCA2Ni4xMTgzMTUsMCBhIDUuMzY0ODE1OCw1LjAwMDczNyAwIDAgMSA1LjM2NDgyMyw1LjAwMDczIGwgMCw3OS44NzkzMSB6IiAvPgogIDxwYXRoIGQ9Im0gNDIwLjE1NTM1LDE3Ny44OTExOSBhIDEzLjQxMjAzOCwxMi41MDE4NDIgMCAwIDEgLTguNjMyOTUsMjIuMDY5NTEgbCAtNjYuMTE4MzIsMCBhIDUuMzY0ODE1Miw1LjAwMDczNyAwIDAgMSAtNS4zNjQ4MiwtNS4wMDA3NCBsIDAsLTc5Ljg3OTMxIHoiIC8+Cjwvc3ZnPgo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4KPCEtLSBodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9ieS1zYS80LjAvIC0tPgo=);background-size:70%;background-position:center;background-repeat:no-repeat}.Paper__Stamp{position:absolute;pointer-events:none;user-select:none}.Paper__Page{word-break:break-word;word-wrap:break-word}.Roulette__container{display:flex}.Roulette__board-cell{display:table-cell;padding:0;margin:0;border:1px solid #fff;vertical-align:bottom}.Roulette__board-cell-number{width:35px}.Roulette__board-cell-number--colspan-2{width:71px}.Roulette__board-cell-number--colspan-4{width:143px}.Roulette__board-button{display:table-cell !important;border:none !important;width:inherit;height:40px;padding:0;margin:0;text-align:center;vertical-align:middle;color:#fff !important}.Roulette__board-button--rowspan-3{height:122px}.Roulette__board-button-text{text-align:center;font-size:16px;font-weight:bold}.Roulette__lowertable{margin-top:8px;border-collapse:collapse;border:1px solid #fff;border-spacing:0}.Roulette__lowertable--cell{border:2px solid #fff;padding:0px;margin:0px}.Roulette__lowertable--betscell{vertical-align:top}.Roulette__lowertable--spinresult{text-align:center;font-size:100px;font-weight:bold;vertical-align:middle}.Roulette__lowertable--spinresult-black{background-color:#000}.Roulette__lowertable--spinresult-red{background-color:#db2828}.Roulette__lowertable--spinresult-green{background-color:#20b142}.Roulette__lowertable--spinbutton{margin:0 !important;border:none !important;font-size:50px;line-height:60px !important;text-align:center;font-weight:bold}.Roulette__lowertable--header{width:1%;text-align:center;font-size:16px;font-weight:bold}.Safe__engraving{position:absolute;width:95%;height:96%;left:2.5%;top:2%;border:5px outset #3e4f6a;padding:5px;text-align:center}.Safe__engraving-arrow{color:#35435a}.Safe__engraving-hinge{content:" ";background-color:#191f2a;width:25px;height:40px;position:absolute;right:-15px;margin-top:-20px}.Safe__dialer{margin-bottom:1.25rem}.Safe__dialer .Button{width:80px}.Safe__dialer-right .Button i{z-index:-100}.Safe__dialer-number{color:#bbb;display:inline;background-color:#191f2a;font-size:1.5rem;font-weight:bold;padding:0 .5rem}.Safe__contents{border:10px solid #191f2a;background-color:#0f131a;height:calc(85% + 7.5px);text-align:left;padding:5px}.Safe__help{position:absolute;top:73%;left:10px;width:50%;font-family:"Comic Sans MS",cursive,sans-serif;font-style:italic;color:#000;box-shadow:5px 5px #111;background-image:linear-gradient(to bottom, #b2ae74 0%, #8e8b5d 100%);transform:rotate(-1deg)}.Safe__help:before{content:" ";display:block;width:24px;height:40px;background-image:linear-gradient(to bottom, transparent 0%, #ffffff 100%);box-shadow:1px 1px #111;opacity:.2;position:absolute;top:-30px;left:calc(50% - 12px);transform:rotate(-5deg)}.TachyonArray__ActiveRecord{margin:0 .5em 0 .8em}.TachyonArray__Content{overflow-x:hidden;overflow-y:auto}.TachyonArray__ResearchFooter>*{width:100%;text-align:center}.Techweb__NodeProgress{margin-bottom:1rem}.Techweb__NodeProgress>*:not(:last-child){margin-right:.4rem}.Techweb__DesignIcon{margin-left:.25rem;margin-right:.25rem}.Techweb__OverviewNodes{overflow-y:auto;overflow-x:hidden;padding-right:6px;padding-top:4px}.Techweb__HeaderContent{background-color:#000;padding:6px;border:1px solid #40628a}.Techweb__HeaderContent>*>:not(:last-child){margin-bottom:5px}.Techweb__HeaderSectionTabs{margin-top:8px;background-color:#000;border:1px solid #40628a;padding-left:5px;padding-right:5px}.Techweb__HeaderTabTitle{border-right:1px solid #40628a;padding-right:.5em;margin-right:.5em;font-weight:bold}.Techweb__HeaderSectionTabs input{background-color:rgba(255,255,255,.05)}.Techweb__PointSummary{list-style:none;margin:.4em 0 0 1em;padding:0}.Techweb__SecProtocol{color:#db2828;margin-left:.2em}.Techweb__SecProtocol.engaged{color:#5baa27}.Techweb__DesignModal>:not(:last-child){margin-bottom:.5em}.Techweb__LockedModal>:not(:last-child){margin-bottom:.5em}.Techweb__ExperimentDiscount{color:#7e90a7;margin:.5em 0}.IDCard__NamePlate{margin-left:-6px;margin-right:-6px;margin-top:6px;padding:.5em;border-top:.1666666667em solid #4972a1;font-size:1.1666666667em;font-weight:bold}.TinderMessage_First_Sent,.TinderMessage_Subsequent_Sent,.TinderMessage_First_Received,.TinderMessage_Subsequent_Received{padding:6px;z-index:1;word-break:break-all;max-width:100%}.TinderMessage_First_Sent,.TinderMessage_Subsequent_Sent{text-align:right;background-color:#4d9121}.TinderMessage_First_Sent{border-radius:10px 10px 0px 10px}.TinderMessage_Subsequent_Sent{border-radius:10px 0px 0px 10px}.TinderMessage_First_Received,.TinderMessage_Subsequent_Received{text-align:left;background-color:#cd7a0d}.TinderMessage_First_Received{border-radius:10px 10px 10px 0px}.TinderMessage_Subsequent_Received{border-radius:0px 10px 10px 0px}.ClassicMessage_Sent,.ClassicMessage_Received{word-break:break-all}.ClassicMessage_Sent{color:#4d9121}.ClassicMessage_Received{color:#cd7a0d}.Section--elevator--fire{background-color:#f33;background-color:rgba(255,0,0,.35)}.Section--elevator--fire>.Section__title{padding:.5em;border-bottom:.1666666667em solid red}.Layout,.Layout *{scrollbar-base-color:#1c1c1c;scrollbar-face-color:#3b3b3b;scrollbar-3dlight-color:#252525;scrollbar-highlight-color:#252525;scrollbar-track-color:#1c1c1c;scrollbar-arrow-color:#929292;scrollbar-shadow-color:#3b3b3b}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:auto}.Layout__content--flexRow{display:flex;flex-flow:row}.Layout__content--flexColumn{display:flex;flex-flow:column}.NtosHeader__left{position:absolute;left:1em}.NtosHeader__right{position:absolute;right:1em}.NtosHeader__icon{margin-top:-0.75em;margin-bottom:-0.5em;vertical-align:middle}.NtosWindow__header{position:absolute;top:0;left:0;right:0;height:2em;line-height:1.928em;background-color:rgba(0,0,0,.5);font-family:Consolas,monospace;font-size:1.1666666667em;user-select:none;-ms-user-select:none}.NtosWindow__content .Layout__content{margin-top:2em;font-family:Consolas,monospace;font-size:1.1666666667em}.TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#363636;transition:color 250ms ease-out,background-color 250ms ease-out}.TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#252525;background-image:linear-gradient(to bottom, #2a2a2a 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(62,62,62,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.Layout__content{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjAiIHZpZXdCb3g9IjAgMCA0MjUgMjAwIiBvcGFjaXR5PSIuMzMiPgogIDxwYXRoIGQ9Im0gMTc4LjAwMzk5LDAuMDM4NjkgLTcxLjIwMzkzLDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTM0LDYuMDI1NTUgbCAwLDE4Ny44NzE0NyBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgNi43NjEzNCw2LjAyNTU0IGwgNTMuMTA3MiwwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM1LC02LjAyNTU0IGwgMCwtMTAxLjU0NDAxOCA3Mi4yMTYyOCwxMDQuNjk5Mzk4IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA1Ljc2MDE1LDIuODcwMTYgbCA3My41NTQ4NywwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM1LC02LjAyNTU0IGwgMCwtMTg3Ljg3MTQ3IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNi43NjEzNSwtNi4wMjU1NSBsIC01NC43MTY0NCwwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNi43NjEzMyw2LjAyNTU1IGwgMCwxMDIuNjE5MzUgTCAxODMuNzY0MTMsMi45MDg4NiBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgLTUuNzYwMTQsLTIuODcwMTcgeiIgLz4KICA8cGF0aCBkPSJNIDQuODQ0NjMzMywyMi4xMDg3NSBBIDEzLjQxMjAzOSwxMi41MDE4NDIgMCAwIDEgMTMuNDc3NTg4LDAuMDM5MjQgbCA2Ni4xMTgzMTUsMCBhIDUuMzY0ODE1OCw1LjAwMDczNyAwIDAgMSA1LjM2NDgyMyw1LjAwMDczIGwgMCw3OS44NzkzMSB6IiAvPgogIDxwYXRoIGQ9Im0gNDIwLjE1NTM1LDE3Ny44OTExOSBhIDEzLjQxMjAzOCwxMi41MDE4NDIgMCAwIDEgLTguNjMyOTUsMjIuMDY5NTEgbCAtNjYuMTE4MzIsMCBhIDUuMzY0ODE1Miw1LjAwMDczNyAwIDAgMSAtNS4zNjQ4MiwtNS4wMDA3NCBsIDAsLTc5Ljg3OTMxIHoiIC8+Cjwvc3ZnPgo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4KPCEtLSBodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9ieS1zYS80LjAvIC0tPgo=);background-size:70%;background-position:center;background-repeat:no-repeat}
.theme-abductor .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:2px;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-abductor .Button:last-child{margin-right:0;margin-bottom:0}.theme-abductor .Button .fa,.theme-abductor .Button .fas,.theme-abductor .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-abductor .Button--hasContent .fa,.theme-abductor .Button--hasContent .fas,.theme-abductor .Button--hasContent .far{margin-right:.25em}.theme-abductor .Button--hasContent.Button--iconPosition--right .fa,.theme-abductor .Button--hasContent.Button--iconPosition--right .fas,.theme-abductor .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-abductor .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-abductor .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-abductor .Button--circular{border-radius:50%}.theme-abductor .Button--compact{padding:0 .25em;line-height:1.333em}.theme-abductor .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#ad2350;color:#fff}.theme-abductor .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-abductor .Button--color--default:hover,.theme-abductor .Button--color--default:focus{background-color:#d34372;color:#fff}.theme-abductor .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-abductor .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-abductor .Button--color--caution:hover,.theme-abductor .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-abductor .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-abductor .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-abductor .Button--color--danger:hover,.theme-abductor .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-abductor .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#2a314a;color:#fff;background-color:rgba(42,49,74,0);color:rgba(255,255,255,.5)}.theme-abductor .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-abductor .Button--color--transparent:hover,.theme-abductor .Button--color--transparent:focus{background-color:#444c68;color:#fff}.theme-abductor .Button--disabled{background-color:#363636 !important}.theme-abductor .Button--selected{transition:color 50ms,background-color 50ms;background-color:#465899;color:#fff}.theme-abductor .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-abductor .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-abductor .Button--selected:hover,.theme-abductor .Button--selected:focus{background-color:#6e7eba;color:#fff}.theme-abductor .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-abductor .Input--fluid{display:block;width:auto}.theme-abductor .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-abductor .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-abductor .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-abductor .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-abductor .NanoMap__container{overflow:hiddden;width:100%;z-index:1}.theme-abductor .NanoMap__marker{z-index:10;padding:0px;margin:0px}.theme-abductor .NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.theme-abductor .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#fff;background-color:#a82d55;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.theme-abductor .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-abductor .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-abductor .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-abductor .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-abductor .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-abductor .Input--fluid{display:block;width:auto}.theme-abductor .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-abductor .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-abductor .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-abductor .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-abductor .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#404b6e;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-abductor .NumberInput--fluid{display:block}.theme-abductor .NumberInput__content{margin-left:.5em}.theme-abductor .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-abductor .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #404b6e;background-color:#404b6e}.theme-abductor .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-abductor .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:2px;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-abductor .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-abductor .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-abductor .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-abductor .ProgressBar--color--default{border:.0833333333em solid #931e44}.theme-abductor .ProgressBar--color--default .ProgressBar__fill{background-color:#931e44}.theme-abductor .Section{position:relative;margin-bottom:.5em;background-color:#1c2132;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-abductor .Section:last-child{margin-bottom:0}.theme-abductor .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #ad2350}.theme-abductor .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-abductor .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-abductor .Section__rest{position:relative}.theme-abductor .Section__content{padding:.66em .5em}.theme-abductor .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-abductor .Section--fill{display:flex;flex-direction:column;height:100%}.theme-abductor .Section--fill>.Section__rest{flex-grow:1}.theme-abductor .Section--fill>.Section__rest>.Section__content{height:100%}.theme-abductor .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-abductor .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-abductor .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-abductor .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-abductor .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-abductor .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-abductor .Section .Section:first-child{margin-top:-0.5em}.theme-abductor .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-abductor .Section .Section .Section .Section__titleText{font-size:1em}.theme-abductor .Section--flex{display:flex;flex-flow:column}.theme-abductor .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-abductor .Section__content--noTopPadding{padding-top:0}.theme-abductor .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-abductor .Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#a82d55;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:2px;max-width:20.8333333333em}.theme-abductor .Layout,.theme-abductor .Layout *{scrollbar-base-color:#202538;scrollbar-face-color:#384263;scrollbar-3dlight-color:#2a314a;scrollbar-highlight-color:#2a314a;scrollbar-track-color:#202538;scrollbar-arrow-color:#818db8;scrollbar-shadow-color:#384263}.theme-abductor .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-abductor .Layout__content--scrollable{overflow-y:auto}.theme-abductor .Layout__content--flexRow{display:flex;flex-flow:row}.theme-abductor .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-abductor .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#2a314a;background-image:linear-gradient(to bottom, #353e5e 0%, #1f2436 100%)}.theme-abductor .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-abductor .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-abductor .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-abductor .Window__contentPadding:after{height:0}.theme-abductor .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-abductor .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(68,76,104,.25);pointer-events:none}.theme-abductor .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-abductor .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-abductor .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-abductor .TitleBar{background-color:#9e1b46;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-abductor .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#9e1b46;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-abductor .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-abductor .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-abductor .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-abductor .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-abductor .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-abductor .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-abductor .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-abductor .Layout__content{background-image:none}
.theme-cardtable .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-cardtable .Button:last-child{margin-right:0;margin-bottom:0}.theme-cardtable .Button .fa,.theme-cardtable .Button .fas,.theme-cardtable .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-cardtable .Button--hasContent .fa,.theme-cardtable .Button--hasContent .fas,.theme-cardtable .Button--hasContent .far{margin-right:.25em}.theme-cardtable .Button--hasContent.Button--iconPosition--right .fa,.theme-cardtable .Button--hasContent.Button--iconPosition--right .fas,.theme-cardtable .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-cardtable .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-cardtable .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-cardtable .Button--circular{border-radius:50%}.theme-cardtable .Button--compact{padding:0 .25em;line-height:1.333em}.theme-cardtable .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#117039;color:#fff}.theme-cardtable .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-cardtable .Button--color--default:hover,.theme-cardtable .Button--color--default:focus{background-color:#279455;color:#fff}.theme-cardtable .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-cardtable .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-cardtable .Button--color--caution:hover,.theme-cardtable .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-cardtable .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-cardtable .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-cardtable .Button--color--danger:hover,.theme-cardtable .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-cardtable .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#117039;color:#fff;background-color:rgba(17,112,57,0);color:rgba(255,255,255,.5)}.theme-cardtable .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-cardtable .Button--color--transparent:hover,.theme-cardtable .Button--color--transparent:focus{background-color:#279455;color:#fff}.theme-cardtable .Button--disabled{background-color:#363636 !important}.theme-cardtable .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-cardtable .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-cardtable .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-cardtable .Button--selected:hover,.theme-cardtable .Button--selected:focus{background-color:#c81c1c;color:#fff}.theme-cardtable .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:0;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-cardtable .Input--fluid{display:block;width:auto}.theme-cardtable .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-cardtable .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-cardtable .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-cardtable .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-cardtable .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #fff;border:.0833333333em solid rgba(255,255,255,.75);border-radius:0;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-cardtable .NumberInput--fluid{display:block}.theme-cardtable .NumberInput__content{margin-left:.5em}.theme-cardtable .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-cardtable .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #fff;background-color:#fff}.theme-cardtable .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-cardtable .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-cardtable .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-cardtable .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-cardtable .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-cardtable .ProgressBar--color--default{border:.0833333333em solid #000}.theme-cardtable .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-cardtable .Section{position:relative;margin-bottom:.5em;background-color:#0b4b26;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-cardtable .Section:last-child{margin-bottom:0}.theme-cardtable .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #000}.theme-cardtable .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-cardtable .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-cardtable .Section__rest{position:relative}.theme-cardtable .Section__content{padding:.66em .5em}.theme-cardtable .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-cardtable .Section--fill{display:flex;flex-direction:column;height:100%}.theme-cardtable .Section--fill>.Section__rest{flex-grow:1}.theme-cardtable .Section--fill>.Section__rest>.Section__content{height:100%}.theme-cardtable .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-cardtable .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-cardtable .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-cardtable .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-cardtable .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-cardtable .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-cardtable .Section .Section:first-child{margin-top:-0.5em}.theme-cardtable .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-cardtable .Section .Section .Section .Section__titleText{font-size:1em}.theme-cardtable .Section--flex{display:flex;flex-flow:column}.theme-cardtable .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-cardtable .Section__content--noTopPadding{padding-top:0}.theme-cardtable .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-cardtable .Layout,.theme-cardtable .Layout *{scrollbar-base-color:#0d542b;scrollbar-face-color:#16914a;scrollbar-3dlight-color:#117039;scrollbar-highlight-color:#117039;scrollbar-track-color:#0d542b;scrollbar-arrow-color:#5ae695;scrollbar-shadow-color:#16914a}.theme-cardtable .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-cardtable .Layout__content--scrollable{overflow-y:auto}.theme-cardtable .Layout__content--flexRow{display:flex;flex-flow:row}.theme-cardtable .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-cardtable .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#117039;background-image:linear-gradient(to bottom, #117039 0%, #117039 100%)}.theme-cardtable .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-cardtable .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-cardtable .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-cardtable .Window__contentPadding:after{height:0}.theme-cardtable .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-cardtable .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(39,148,85,.25);pointer-events:none}.theme-cardtable .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-cardtable .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-cardtable .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-cardtable .TitleBar{background-color:#381608;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-cardtable .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#381608;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-cardtable .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-cardtable .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-cardtable .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-cardtable .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-cardtable .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-cardtable .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-cardtable .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-cardtable .Button{border:.1666666667em solid #fff}
.theme-hackerman .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-hackerman .Button:last-child{margin-right:0;margin-bottom:0}.theme-hackerman .Button .fa,.theme-hackerman .Button .fas,.theme-hackerman .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-hackerman .Button--hasContent .fa,.theme-hackerman .Button--hasContent .fas,.theme-hackerman .Button--hasContent .far{margin-right:.25em}.theme-hackerman .Button--hasContent.Button--iconPosition--right .fa,.theme-hackerman .Button--hasContent.Button--iconPosition--right .fas,.theme-hackerman .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-hackerman .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-hackerman .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-hackerman .Button--circular{border-radius:50%}.theme-hackerman .Button--compact{padding:0 .25em;line-height:1.333em}.theme-hackerman .Button--color--default{transition:color 50ms,background-color 50ms;background-color:lime;color:#000}.theme-hackerman .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-hackerman .Button--color--default:hover,.theme-hackerman .Button--color--default:focus{background-color:#4dff4d;color:#000}.theme-hackerman .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-hackerman .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-hackerman .Button--color--caution:hover,.theme-hackerman .Button--color--caution:focus{background-color:#f5d72e;color:#000}.theme-hackerman .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-hackerman .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-hackerman .Button--color--danger:hover,.theme-hackerman .Button--color--danger:focus{background-color:#dc4848;color:#fff}.theme-hackerman .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#121b12;color:#fff;background-color:rgba(18,27,18,0);color:rgba(255,255,255,.5)}.theme-hackerman .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-hackerman .Button--color--transparent:hover,.theme-hackerman .Button--color--transparent:focus{background-color:#283228;color:#fff}.theme-hackerman .Button--disabled{background-color:#4a6a4a !important}.theme-hackerman .Button--selected{transition:color 50ms,background-color 50ms;background-color:lime;color:#000}.theme-hackerman .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-hackerman .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-hackerman .Button--selected:hover,.theme-hackerman .Button--selected:focus{background-color:#4dff4d;color:#000}.theme-hackerman .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid lime;border:.0833333333em solid rgba(0,255,0,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-hackerman .Input--fluid{display:block;width:auto}.theme-hackerman .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-hackerman .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-hackerman .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-hackerman .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-hackerman .Modal{background-color:#121b12;max-width:calc(100% - 1rem);padding:1rem}.theme-hackerman .Section{position:relative;margin-bottom:.5em;background-color:#0c120c;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-hackerman .Section:last-child{margin-bottom:0}.theme-hackerman .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid lime}.theme-hackerman .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-hackerman .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-hackerman .Section__rest{position:relative}.theme-hackerman .Section__content{padding:.66em .5em}.theme-hackerman .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-hackerman .Section--fill{display:flex;flex-direction:column;height:100%}.theme-hackerman .Section--fill>.Section__rest{flex-grow:1}.theme-hackerman .Section--fill>.Section__rest>.Section__content{height:100%}.theme-hackerman .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-hackerman .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-hackerman .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-hackerman .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-hackerman .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-hackerman .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-hackerman .Section .Section:first-child{margin-top:-0.5em}.theme-hackerman .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-hackerman .Section .Section .Section .Section__titleText{font-size:1em}.theme-hackerman .Section--flex{display:flex;flex-flow:column}.theme-hackerman .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-hackerman .Section__content--noTopPadding{padding-top:0}.theme-hackerman .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-hackerman .Layout,.theme-hackerman .Layout *{scrollbar-base-color:#0e140e;scrollbar-face-color:#253725;scrollbar-3dlight-color:#121b12;scrollbar-highlight-color:#121b12;scrollbar-track-color:#0e140e;scrollbar-arrow-color:#74a274;scrollbar-shadow-color:#253725}.theme-hackerman .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-hackerman .Layout__content--scrollable{overflow-y:auto}.theme-hackerman .Layout__content--flexRow{display:flex;flex-flow:row}.theme-hackerman .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-hackerman .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#121b12;background-image:linear-gradient(to bottom, #121b12 0%, #121b12 100%)}.theme-hackerman .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-hackerman .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-hackerman .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-hackerman .Window__contentPadding:after{height:0}.theme-hackerman .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-hackerman .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(40,50,40,.25);pointer-events:none}.theme-hackerman .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-hackerman .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-hackerman .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-hackerman .TitleBar{background-color:#223d22;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-hackerman .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#223d22;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-hackerman .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-hackerman .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-hackerman .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-hackerman .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-hackerman .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-hackerman .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-hackerman .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-hackerman .Layout__content{background-image:none}.theme-hackerman .Button{font-family:monospace;border-width:.1666666667em;border-style:outset;border-color:#0a0;outline:.0833333333em solid #007a00}.theme-hackerman .candystripe:nth-child(odd){background-color:rgba(0,100,0,.5)}
.theme-malfunction .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-malfunction .Button:last-child{margin-right:0;margin-bottom:0}.theme-malfunction .Button .fa,.theme-malfunction .Button .fas,.theme-malfunction .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-malfunction .Button--hasContent .fa,.theme-malfunction .Button--hasContent .fas,.theme-malfunction .Button--hasContent .far{margin-right:.25em}.theme-malfunction .Button--hasContent.Button--iconPosition--right .fa,.theme-malfunction .Button--hasContent.Button--iconPosition--right .fas,.theme-malfunction .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-malfunction .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-malfunction .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-malfunction .Button--circular{border-radius:50%}.theme-malfunction .Button--compact{padding:0 .25em;line-height:1.333em}.theme-malfunction .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#910101;color:#fff}.theme-malfunction .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-malfunction .Button--color--default:hover,.theme-malfunction .Button--color--default:focus{background-color:#ba1414;color:#fff}.theme-malfunction .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-malfunction .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-malfunction .Button--color--caution:hover,.theme-malfunction .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-malfunction .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-malfunction .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-malfunction .Button--color--danger:hover,.theme-malfunction .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-malfunction .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#1b3443;color:#fff;background-color:rgba(27,52,67,0);color:rgba(255,255,255,.5)}.theme-malfunction .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-malfunction .Button--color--transparent:hover,.theme-malfunction .Button--color--transparent:focus{background-color:#324f60;color:#fff}.theme-malfunction .Button--disabled{background-color:#363636 !important}.theme-malfunction .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1e5881;color:#fff}.theme-malfunction .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-malfunction .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-malfunction .Button--selected:hover,.theme-malfunction .Button--selected:focus{background-color:#3678a8;color:#fff}.theme-malfunction .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-malfunction .Input--fluid{display:block;width:auto}.theme-malfunction .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-malfunction .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-malfunction .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-malfunction .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-malfunction .NanoMap__container{overflow:hiddden;width:100%;z-index:1}.theme-malfunction .NanoMap__marker{z-index:10;padding:0px;margin:0px}.theme-malfunction .NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.theme-malfunction .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#fff;background-color:#1a3f57;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.theme-malfunction .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-malfunction .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-malfunction .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-malfunction .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-malfunction .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-malfunction .Input--fluid{display:block;width:auto}.theme-malfunction .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-malfunction .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-malfunction .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-malfunction .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-malfunction .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #910101;border:.0833333333em solid rgba(145,1,1,.75);border-radius:.16em;color:#910101;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-malfunction .NumberInput--fluid{display:block}.theme-malfunction .NumberInput__content{margin-left:.5em}.theme-malfunction .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-malfunction .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #910101;background-color:#910101}.theme-malfunction .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-malfunction .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-malfunction .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-malfunction .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-malfunction .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-malfunction .ProgressBar--color--default{border:.0833333333em solid #7b0101}.theme-malfunction .ProgressBar--color--default .ProgressBar__fill{background-color:#7b0101}.theme-malfunction .Section{position:relative;margin-bottom:.5em;background-color:#12232d;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-malfunction .Section:last-child{margin-bottom:0}.theme-malfunction .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #910101}.theme-malfunction .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-malfunction .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-malfunction .Section__rest{position:relative}.theme-malfunction .Section__content{padding:.66em .5em}.theme-malfunction .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-malfunction .Section--fill{display:flex;flex-direction:column;height:100%}.theme-malfunction .Section--fill>.Section__rest{flex-grow:1}.theme-malfunction .Section--fill>.Section__rest>.Section__content{height:100%}.theme-malfunction .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-malfunction .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-malfunction .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-malfunction .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-malfunction .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-malfunction .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-malfunction .Section .Section:first-child{margin-top:-0.5em}.theme-malfunction .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-malfunction .Section .Section .Section .Section__titleText{font-size:1em}.theme-malfunction .Section--flex{display:flex;flex-flow:column}.theme-malfunction .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-malfunction .Section__content--noTopPadding{padding-top:0}.theme-malfunction .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-malfunction .Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#235577;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.theme-malfunction .Layout,.theme-malfunction .Layout *{scrollbar-base-color:#142732;scrollbar-face-color:#274b61;scrollbar-3dlight-color:#1b3443;scrollbar-highlight-color:#1b3443;scrollbar-track-color:#142732;scrollbar-arrow-color:#6ba2c3;scrollbar-shadow-color:#274b61}.theme-malfunction .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-malfunction .Layout__content--scrollable{overflow-y:auto}.theme-malfunction .Layout__content--flexRow{display:flex;flex-flow:row}.theme-malfunction .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-malfunction .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#1b3443;background-image:linear-gradient(to bottom, #244559 0%, #12232d 100%)}.theme-malfunction .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-malfunction .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-malfunction .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-malfunction .Window__contentPadding:after{height:0}.theme-malfunction .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-malfunction .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(50,79,96,.25);pointer-events:none}.theme-malfunction .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-malfunction .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-malfunction .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-malfunction .TitleBar{background-color:#1a3f57;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-malfunction .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#1a3f57;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-malfunction .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-malfunction .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-malfunction .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-malfunction .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-malfunction .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-malfunction .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-malfunction .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-malfunction .Layout__content{background-image:none}
-.theme-neutral .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-neutral .Button:last-child{margin-right:0;margin-bottom:0}.theme-neutral .Button .fa,.theme-neutral .Button .fas,.theme-neutral .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-neutral .Button--hasContent .fa,.theme-neutral .Button--hasContent .fas,.theme-neutral .Button--hasContent .far{margin-right:.25em}.theme-neutral .Button--hasContent.Button--iconPosition--right .fa,.theme-neutral .Button--hasContent.Button--iconPosition--right .fas,.theme-neutral .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-neutral .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-neutral .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-neutral .Button--circular{border-radius:50%}.theme-neutral .Button--compact{padding:0 .25em;line-height:1.333em}.theme-neutral .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#b37d00;color:#fff}.theme-neutral .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--default:hover,.theme-neutral .Button--color--default:focus{background-color:#e1a313;color:#fff}.theme-neutral .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-neutral .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--caution:hover,.theme-neutral .Button--color--caution:focus{background-color:#f5d72e;color:#000}.theme-neutral .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-neutral .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--danger:hover,.theme-neutral .Button--color--danger:focus{background-color:#dc4848;color:#fff}.theme-neutral .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#996b00;color:#fff;background-color:rgba(153,107,0,0);color:#ffca4d}.theme-neutral .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--transparent:hover,.theme-neutral .Button--color--transparent:focus{background-color:#c38f13;color:#fff}.theme-neutral .Button--disabled{background-color:#999 !important}.theme-neutral .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-neutral .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--selected:hover,.theme-neutral .Button--selected:focus{background-color:#32c154;color:#fff}.theme-neutral .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-neutral .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-neutral .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-neutral .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-neutral .ProgressBar--color--default{border:.0833333333em solid #ffb300}.theme-neutral .ProgressBar--color--default .ProgressBar__fill{background-color:#ffb300}.theme-neutral .Section{position:relative;margin-bottom:.5em;background-color:#674800;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-neutral .Section:last-child{margin-bottom:0}.theme-neutral .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #ffb300}.theme-neutral .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-neutral .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-neutral .Section__rest{position:relative}.theme-neutral .Section__content{padding:.66em .5em}.theme-neutral .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-neutral .Section--fill{display:flex;flex-direction:column;height:100%}.theme-neutral .Section--fill>.Section__rest{flex-grow:1}.theme-neutral .Section--fill>.Section__rest>.Section__content{height:100%}.theme-neutral .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-neutral .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-neutral .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-neutral .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-neutral .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-neutral .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-neutral .Section .Section:first-child{margin-top:-0.5em}.theme-neutral .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-neutral .Section .Section .Section .Section__titleText{font-size:1em}.theme-neutral .Section--flex{display:flex;flex-flow:column}.theme-neutral .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-neutral .Section__content--noTopPadding{padding-top:0}.theme-neutral .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-neutral .Layout,.theme-neutral .Layout *{scrollbar-base-color:#735100;scrollbar-face-color:#bd8400;scrollbar-3dlight-color:#996b00;scrollbar-highlight-color:#996b00;scrollbar-track-color:#735100;scrollbar-arrow-color:#ffca4d;scrollbar-shadow-color:#bd8400}.theme-neutral .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-neutral .Layout__content--scrollable{overflow-y:auto}.theme-neutral .Layout__content--flexRow{display:flex;flex-flow:row}.theme-neutral .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-neutral .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#996b00;background-image:linear-gradient(to bottom, #b88100 0%, #7a5600 100%)}.theme-neutral .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-neutral .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-neutral .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-neutral .Window__contentPadding:after{height:0}.theme-neutral .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-neutral .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(195,143,19,.25);pointer-events:none}.theme-neutral .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-neutral .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-neutral .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-neutral .TitleBar{background-color:#bf8600;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-neutral .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#bf8600;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-neutral .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-neutral .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-neutral .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-neutral .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-neutral .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-neutral .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-neutral .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-neutral .Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJ1c2VyLXNlY3JldCIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLXVzZXItc2VjcmV0IGZhLXctMTQiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNDQ4IDUxMiIgIG9wYWNpdHk9Ii4zMyI+DQogIDxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTM4My45IDMwOC4zbDIzLjktNjIuNmM0LTEwLjUtMy43LTIxLjctMTUtMjEuN2gtNTguNWMxMS0xOC45IDE3LjgtNDAuNiAxNy44LTY0di0uM2MzOS4yLTcuOCA2NC0xOS4xIDY0LTMxLjcgMC0xMy4zLTI3LjMtMjUuMS03MC4xLTMzLTkuMi0zMi44LTI3LTY1LjgtNDAuNi04Mi44LTkuNS0xMS45LTI1LjktMTUuNi0zOS41LTguOGwtMjcuNiAxMy44Yy05IDQuNS0xOS42IDQuNS0yOC42IDBMMTgyLjEgMy40Yy0xMy42LTYuOC0zMC0zLjEtMzkuNSA4LjgtMTMuNSAxNy0zMS40IDUwLTQwLjYgODIuOC00Mi43IDcuOS03MCAxOS43LTcwIDMzIDAgMTIuNiAyNC44IDIzLjkgNjQgMzEuN3YuM2MwIDIzLjQgNi44IDQ1LjEgMTcuOCA2NEg1Ni4zYy0xMS41IDAtMTkuMiAxMS43LTE0LjcgMjIuM2wyNS44IDYwLjJDMjcuMyAzMjkuOCAwIDM3Mi43IDAgNDIyLjR2NDQuOEMwIDQ5MS45IDIwLjEgNTEyIDQ0LjggNTEyaDM1OC40YzI0LjcgMCA0NC44LTIwLjEgNDQuOC00NC44di00NC44YzAtNDguNC0yNS44LTkwLjQtNjQuMS0xMTQuMXpNMTc2IDQ4MGwtNDEuNi0xOTIgNDkuNiAzMiAyNCA0MC0zMiAxMjB6bTk2IDBsLTMyLTEyMCAyNC00MCA0OS42LTMyTDI3MiA0ODB6bTQxLjctMjk4LjVjLTMuOSAxMS45LTcgMjQuNi0xNi41IDMzLjQtMTAuMSA5LjMtNDggMjIuNC02NC0yNS0yLjgtOC40LTE1LjQtOC40LTE4LjMgMC0xNyA1MC4yLTU2IDMyLjQtNjQgMjUtOS41LTguOC0xMi43LTIxLjUtMTYuNS0zMy40LS44LTIuNS02LjMtNS43LTYuMy01Ljh2LTEwLjhjMjguMyAzLjYgNjEgNS44IDk2IDUuOHM2Ny43LTIuMSA5Ni01Ljh2MTAuOGMtLjEuMS01LjYgMy4yLTYuNCA1Ljh6Ij48L3BhdGg+DQo8L3N2Zz4NCjwhLS0gVGhpcyB3b3JrIGlzIGxpY2Vuc2VkIHVuZGVyIGEgQ3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbi1TaGFyZUFsaWtlIDQuMCBJbnRlcm5hdGlvbmFsIExpY2Vuc2UuIC0tPg0KPCEtLSBodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9ieS1zYS80LjAvIC0tPg==)}
+.theme-neutral .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-neutral .Button:last-child{margin-right:0;margin-bottom:0}.theme-neutral .Button .fa,.theme-neutral .Button .fas,.theme-neutral .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-neutral .Button--hasContent .fa,.theme-neutral .Button--hasContent .fas,.theme-neutral .Button--hasContent .far{margin-right:.25em}.theme-neutral .Button--hasContent.Button--iconPosition--right .fa,.theme-neutral .Button--hasContent.Button--iconPosition--right .fas,.theme-neutral .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-neutral .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-neutral .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-neutral .Button--circular{border-radius:50%}.theme-neutral .Button--compact{padding:0 .25em;line-height:1.333em}.theme-neutral .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#b37d00;color:#fff}.theme-neutral .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--default:hover,.theme-neutral .Button--color--default:focus{background-color:#e1a313;color:#fff}.theme-neutral .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-neutral .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--caution:hover,.theme-neutral .Button--color--caution:focus{background-color:#f5d72e;color:#000}.theme-neutral .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-neutral .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--danger:hover,.theme-neutral .Button--color--danger:focus{background-color:#dc4848;color:#fff}.theme-neutral .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#996b00;color:#fff;background-color:rgba(153,107,0,0);color:#ffca4d}.theme-neutral .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--color--transparent:hover,.theme-neutral .Button--color--transparent:focus{background-color:#c38f13;color:#fff}.theme-neutral .Button--disabled{background-color:#999 !important}.theme-neutral .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-neutral .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-neutral .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-neutral .Button--selected:hover,.theme-neutral .Button--selected:focus{background-color:#32c154;color:#fff}.theme-neutral .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-neutral .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-neutral .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-neutral .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-neutral .ProgressBar--color--default{border:.0833333333em solid #ffb300}.theme-neutral .ProgressBar--color--default .ProgressBar__fill{background-color:#ffb300}.theme-neutral .Section{position:relative;margin-bottom:.5em;background-color:#674800;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-neutral .Section:last-child{margin-bottom:0}.theme-neutral .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #ffb300}.theme-neutral .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-neutral .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-neutral .Section__rest{position:relative}.theme-neutral .Section__content{padding:.66em .5em}.theme-neutral .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-neutral .Section--fill{display:flex;flex-direction:column;height:100%}.theme-neutral .Section--fill>.Section__rest{flex-grow:1}.theme-neutral .Section--fill>.Section__rest>.Section__content{height:100%}.theme-neutral .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-neutral .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-neutral .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-neutral .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-neutral .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-neutral .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-neutral .Section .Section:first-child{margin-top:-0.5em}.theme-neutral .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-neutral .Section .Section .Section .Section__titleText{font-size:1em}.theme-neutral .Section--flex{display:flex;flex-flow:column}.theme-neutral .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-neutral .Section__content--noTopPadding{padding-top:0}.theme-neutral .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-neutral .Layout,.theme-neutral .Layout *{scrollbar-base-color:#735100;scrollbar-face-color:#bd8400;scrollbar-3dlight-color:#996b00;scrollbar-highlight-color:#996b00;scrollbar-track-color:#735100;scrollbar-arrow-color:#ffca4d;scrollbar-shadow-color:#bd8400}.theme-neutral .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-neutral .Layout__content--scrollable{overflow-y:auto}.theme-neutral .Layout__content--flexRow{display:flex;flex-flow:row}.theme-neutral .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-neutral .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#996b00;background-image:linear-gradient(to bottom, #b88100 0%, #7a5600 100%)}.theme-neutral .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-neutral .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-neutral .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-neutral .Window__contentPadding:after{height:0}.theme-neutral .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-neutral .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(195,143,19,.25);pointer-events:none}.theme-neutral .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-neutral .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-neutral .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-neutral .TitleBar{background-color:#bf8600;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-neutral .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#bf8600;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-neutral .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-neutral .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-neutral .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-neutral .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-neutral .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-neutral .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-neutral .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-neutral .Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJ1c2VyLXNlY3JldCIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLXVzZXItc2VjcmV0IGZhLXctMTQiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNDQ4IDUxMiIgIG9wYWNpdHk9Ii4zMyI+CiAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMzgzLjkgMzA4LjNsMjMuOS02Mi42YzQtMTAuNS0zLjctMjEuNy0xNS0yMS43aC01OC41YzExLTE4LjkgMTcuOC00MC42IDE3LjgtNjR2LS4zYzM5LjItNy44IDY0LTE5LjEgNjQtMzEuNyAwLTEzLjMtMjcuMy0yNS4xLTcwLjEtMzMtOS4yLTMyLjgtMjctNjUuOC00MC42LTgyLjgtOS41LTExLjktMjUuOS0xNS42LTM5LjUtOC44bC0yNy42IDEzLjhjLTkgNC41LTE5LjYgNC41LTI4LjYgMEwxODIuMSAzLjRjLTEzLjYtNi44LTMwLTMuMS0zOS41IDguOC0xMy41IDE3LTMxLjQgNTAtNDAuNiA4Mi44LTQyLjcgNy45LTcwIDE5LjctNzAgMzMgMCAxMi42IDI0LjggMjMuOSA2NCAzMS43di4zYzAgMjMuNCA2LjggNDUuMSAxNy44IDY0SDU2LjNjLTExLjUgMC0xOS4yIDExLjctMTQuNyAyMi4zbDI1LjggNjAuMkMyNy4zIDMyOS44IDAgMzcyLjcgMCA0MjIuNHY0NC44QzAgNDkxLjkgMjAuMSA1MTIgNDQuOCA1MTJoMzU4LjRjMjQuNyAwIDQ0LjgtMjAuMSA0NC44LTQ0Ljh2LTQ0LjhjMC00OC40LTI1LjgtOTAuNC02NC4xLTExNC4xek0xNzYgNDgwbC00MS42LTE5MiA0OS42IDMyIDI0IDQwLTMyIDEyMHptOTYgMGwtMzItMTIwIDI0LTQwIDQ5LjYtMzJMMjcyIDQ4MHptNDEuNy0yOTguNWMtMy45IDExLjktNyAyNC42LTE2LjUgMzMuNC0xMC4xIDkuMy00OCAyMi40LTY0LTI1LTIuOC04LjQtMTUuNC04LjQtMTguMyAwLTE3IDUwLjItNTYgMzIuNC02NCAyNS05LjUtOC44LTEyLjctMjEuNS0xNi41LTMzLjQtLjgtMi41LTYuMy01LjctNi4zLTUuOHYtMTAuOGMyOC4zIDMuNiA2MSA1LjggOTYgNS44czY3LjctMi4xIDk2LTUuOHYxMC44Yy0uMS4xLTUuNiAzLjItNi40IDUuOHoiPjwvcGF0aD4KPC9zdmc+CjwhLS0gVGhpcyB3b3JrIGlzIGxpY2Vuc2VkIHVuZGVyIGEgQ3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbi1TaGFyZUFsaWtlIDQuMCBJbnRlcm5hdGlvbmFsIExpY2Vuc2UuIC0tPgo8IS0tIGh0dHA6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LXNhLzQuMC8gLS0+)}
.theme-ntos .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-ntos .Button:last-child{margin-right:0;margin-bottom:0}.theme-ntos .Button .fa,.theme-ntos .Button .fas,.theme-ntos .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-ntos .Button--hasContent .fa,.theme-ntos .Button--hasContent .fas,.theme-ntos .Button--hasContent .far{margin-right:.25em}.theme-ntos .Button--hasContent.Button--iconPosition--right .fa,.theme-ntos .Button--hasContent.Button--iconPosition--right .fas,.theme-ntos .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-ntos .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-ntos .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-ntos .Button--circular{border-radius:50%}.theme-ntos .Button--compact{padding:0 .25em;line-height:1.333em}.theme-ntos .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#384e68;color:#fff}.theme-ntos .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-ntos .Button--color--default:hover,.theme-ntos .Button--color--default:focus{background-color:#546d8b;color:#fff}.theme-ntos .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-ntos .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-ntos .Button--color--caution:hover,.theme-ntos .Button--color--caution:focus{background-color:#f5d72e;color:#000}.theme-ntos .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-ntos .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-ntos .Button--color--danger:hover,.theme-ntos .Button--color--danger:focus{background-color:#dc4848;color:#fff}.theme-ntos .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#1f2b39;color:#fff;background-color:rgba(31,43,57,0);color:rgba(227,240,255,.75)}.theme-ntos .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-ntos .Button--color--transparent:hover,.theme-ntos .Button--color--transparent:focus{background-color:#374555;color:#fff}.theme-ntos .Button--disabled{background-color:#999 !important}.theme-ntos .Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-ntos .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-ntos .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-ntos .Button--selected:hover,.theme-ntos .Button--selected:focus{background-color:#32c154;color:#fff}.theme-ntos .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-ntos .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-ntos .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-ntos .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-ntos .ProgressBar--color--default{border:.0833333333em solid #384e68}.theme-ntos .ProgressBar--color--default .ProgressBar__fill{background-color:#384e68}.theme-ntos .Section{position:relative;margin-bottom:.5em;background-color:#151d26;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-ntos .Section:last-child{margin-bottom:0}.theme-ntos .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.theme-ntos .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-ntos .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-ntos .Section__rest{position:relative}.theme-ntos .Section__content{padding:.66em .5em}.theme-ntos .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-ntos .Section--fill{display:flex;flex-direction:column;height:100%}.theme-ntos .Section--fill>.Section__rest{flex-grow:1}.theme-ntos .Section--fill>.Section__rest>.Section__content{height:100%}.theme-ntos .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-ntos .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-ntos .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-ntos .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-ntos .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-ntos .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-ntos .Section .Section:first-child{margin-top:-0.5em}.theme-ntos .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-ntos .Section .Section .Section .Section__titleText{font-size:1em}.theme-ntos .Section--flex{display:flex;flex-flow:column}.theme-ntos .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-ntos .Section__content--noTopPadding{padding-top:0}.theme-ntos .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-ntos .Layout,.theme-ntos .Layout *{scrollbar-base-color:#17202b;scrollbar-face-color:#2e3f55;scrollbar-3dlight-color:#1f2b39;scrollbar-highlight-color:#1f2b39;scrollbar-track-color:#17202b;scrollbar-arrow-color:#7693b5;scrollbar-shadow-color:#2e3f55}.theme-ntos .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-ntos .Layout__content--scrollable{overflow-y:auto}.theme-ntos .Layout__content--flexRow{display:flex;flex-flow:row}.theme-ntos .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-ntos .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#1f2b39;background-image:linear-gradient(to bottom, #223040 0%, #1b2633 100%)}.theme-ntos .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-ntos .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-ntos .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-ntos .Window__contentPadding:after{height:0}.theme-ntos .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-ntos .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(55,69,85,.25);pointer-events:none}.theme-ntos .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-ntos .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-ntos .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-ntos .TitleBar{background-color:#2a3b4e;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-ntos .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#2a3b4e;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-ntos .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-ntos .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-ntos .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-ntos .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-ntos .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-ntos .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-ntos .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}
.theme-paper .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:rgba(0,0,0,.33)}.theme-paper .Tabs--fill{height:100%}.theme-paper .Section .Tabs{background-color:rgba(0,0,0,0)}.theme-paper .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-paper .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-paper .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-paper .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-paper .Tabs--horizontal:last-child{margin-bottom:0}.theme-paper .Tabs__Tab{flex-grow:0}.theme-paper .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-paper .Tab{display:flex;align-items:center;justify-content:space-between;background-color:rgba(0,0,0,0);color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em;transition:background-color 50ms ease-out}.theme-paper .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075);transition:background-color 0}.theme-paper .Tab--selected{background-color:rgba(255,255,255,.125);color:#fafafa}.theme-paper .Tab__text{flex-grow:1;margin:0 .5em}.theme-paper .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-paper .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-paper .Tabs--horizontal .Tab{border-top:.1666666667em solid rgba(0,0,0,0);border-bottom:.1666666667em solid rgba(0,0,0,0);border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-paper .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #f9f9f9}.theme-paper .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid rgba(0,0,0,0);border-right:.1666666667em solid rgba(0,0,0,0);border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-paper .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #f9f9f9}.theme-paper .Section{position:relative;margin-bottom:.5em;background-color:#e6e6e6;background-color:rgba(0,0,0,.1);box-sizing:border-box}.theme-paper .Section:last-child{margin-bottom:0}.theme-paper .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-paper .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-paper .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-paper .Section__rest{position:relative}.theme-paper .Section__content{padding:.66em .5em}.theme-paper .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-paper .Section--fill{display:flex;flex-direction:column;height:100%}.theme-paper .Section--fill>.Section__rest{flex-grow:1}.theme-paper .Section--fill>.Section__rest>.Section__content{height:100%}.theme-paper .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-paper .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-paper .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-paper .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-paper .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-paper .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-paper .Section .Section:first-child{margin-top:-0.5em}.theme-paper .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-paper .Section .Section .Section .Section__titleText{font-size:1em}.theme-paper .Section--flex{display:flex;flex-flow:column}.theme-paper .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-paper .Section__content--noTopPadding{padding-top:0}.theme-paper .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-paper .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-paper .Button:last-child{margin-right:0;margin-bottom:0}.theme-paper .Button .fa,.theme-paper .Button .fas,.theme-paper .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-paper .Button--hasContent .fa,.theme-paper .Button--hasContent .fas,.theme-paper .Button--hasContent .far{margin-right:.25em}.theme-paper .Button--hasContent.Button--iconPosition--right .fa,.theme-paper .Button--hasContent.Button--iconPosition--right .fas,.theme-paper .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-paper .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-paper .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-paper .Button--circular{border-radius:50%}.theme-paper .Button--compact{padding:0 .25em;line-height:1.333em}.theme-paper .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-paper .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-paper .Button--color--default:hover,.theme-paper .Button--color--default:focus{background-color:#fbfaf6;color:#000}.theme-paper .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-paper .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-paper .Button--color--caution:hover,.theme-paper .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-paper .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-paper .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-paper .Button--color--danger:hover,.theme-paper .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-paper .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#fff;color:#000;background-color:rgba(255,255,255,0);color:rgba(0,0,0,.5)}.theme-paper .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-paper .Button--color--transparent:hover,.theme-paper .Button--color--transparent:focus{background-color:#fff;color:#000}.theme-paper .Button--disabled{background-color:#363636 !important}.theme-paper .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-paper .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-paper .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-paper .Button--selected:hover,.theme-paper .Button--selected:focus{background-color:#c81c1c;color:#fff}.theme-paper .Layout,.theme-paper .Layout *{scrollbar-base-color:#bfbfbf;scrollbar-face-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-highlight-color:#fff;scrollbar-track-color:#bfbfbf;scrollbar-arrow-color:#fff;scrollbar-shadow-color:#fff}.theme-paper .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-paper .Layout__content--scrollable{overflow-y:auto}.theme-paper .Layout__content--flexRow{display:flex;flex-flow:row}.theme-paper .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-paper .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#fff;background-image:linear-gradient(to bottom, white 0%, white 100%)}.theme-paper .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-paper .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-paper .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-paper .Window__contentPadding:after{height:0}.theme-paper .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-paper .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(255,255,255,.25);pointer-events:none}.theme-paper .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-paper .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-paper .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-paper .TitleBar{background-color:#fff;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-paper .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#fff;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-paper .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-paper .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-paper .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-paper .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-paper .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-paper .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-paper .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-paper .PaperInput{position:relative;display:inline-block;width:120px;border:none;background:rgba(0,0,0,0);border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-paper .PaperInput__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-paper .PaperInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:12px;line-height:17px;height:17px;margin:0;padding:0 6px;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-paper .PaperInput__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-paper .Layout__content{background-image:none}.theme-paper .Window{background-image:none;color:#000}.theme-paper .paper-text input:disabled{position:relative;display:inline-block;border:none;background:rgba(0,0,0,0);border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-paper .paper-text input{position:relative;display:inline-block;border:none;background:rgba(0,0,0,0);border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-paper .paper-field{position:relative;display:inline-block;border:none;background:rgba(0,0,0,0);border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}.theme-paper .paper-field input:disabled{position:relative;display:inline-block;border:none;background:rgba(0,0,0,0);border-bottom:1px solid #000;outline:none;background-color:rgba(255,255,62,.8);padding:0 4px;margin-right:2px;line-height:17px;overflow:visible}
.theme-pda-retro .color-black{color:#1a1a1a !important}.theme-pda-retro .color-white{color:#fff !important}.theme-pda-retro .color-red{color:#df3e3e !important}.theme-pda-retro .color-orange{color:#f37f33 !important}.theme-pda-retro .color-yellow{color:#fbda21 !important}.theme-pda-retro .color-olive{color:#cbe41c !important}.theme-pda-retro .color-green{color:#25ca4c !important}.theme-pda-retro .color-teal{color:#00d6cc !important}.theme-pda-retro .color-blue{color:#2e93de !important}.theme-pda-retro .color-violet{color:#7349cf !important}.theme-pda-retro .color-purple{color:#ad45d0 !important}.theme-pda-retro .color-pink{color:#e34da1 !important}.theme-pda-retro .color-brown{color:#b97447 !important}.theme-pda-retro .color-grey{color:#848484 !important}.theme-pda-retro .color-good{color:#68c22d !important}.theme-pda-retro .color-average{color:#1a1a1a !important}.theme-pda-retro .color-bad{color:#df3e3e !important}.theme-pda-retro .color-label{color:#1a1a1a !important}.theme-pda-retro .color-bg-black{background-color:#000 !important}.theme-pda-retro .color-bg-white{background-color:#d9d9d9 !important}.theme-pda-retro .color-bg-red{background-color:#bd2020 !important}.theme-pda-retro .color-bg-orange{background-color:#d95e0c !important}.theme-pda-retro .color-bg-yellow{background-color:#d9b804 !important}.theme-pda-retro .color-bg-olive{background-color:#9aad14 !important}.theme-pda-retro .color-bg-green{background-color:#1b9638 !important}.theme-pda-retro .color-bg-teal{background-color:#009a93 !important}.theme-pda-retro .color-bg-blue{background-color:#1c71b1 !important}.theme-pda-retro .color-bg-violet{background-color:#552dab !important}.theme-pda-retro .color-bg-purple{background-color:#8b2baa !important}.theme-pda-retro .color-bg-pink{background-color:#cf2082 !important}.theme-pda-retro .color-bg-brown{background-color:#8c5836 !important}.theme-pda-retro .color-bg-grey{background-color:#646464 !important}.theme-pda-retro .color-bg-good{background-color:#4d9121 !important}.theme-pda-retro .color-bg-average{background-color:#000 !important}.theme-pda-retro .color-bg-bad{background-color:#bd2020 !important}.theme-pda-retro .color-bg-label{background-color:#000 !important}.theme-pda-retro .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-pda-retro .Button:last-child{margin-right:0;margin-bottom:0}.theme-pda-retro .Button .fa,.theme-pda-retro .Button .fas,.theme-pda-retro .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-pda-retro .Button--hasContent .fa,.theme-pda-retro .Button--hasContent .fas,.theme-pda-retro .Button--hasContent .far{margin-right:.25em}.theme-pda-retro .Button--hasContent.Button--iconPosition--right .fa,.theme-pda-retro .Button--hasContent.Button--iconPosition--right .fas,.theme-pda-retro .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-pda-retro .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-pda-retro .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-pda-retro .Button--circular{border-radius:50%}.theme-pda-retro .Button--compact{padding:0 .25em;line-height:1.333em}.theme-pda-retro .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--black:hover,.theme-pda-retro .Button--color--black:focus{background-color:#131313;color:#fff}.theme-pda-retro .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.theme-pda-retro .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--white:hover,.theme-pda-retro .Button--color--white:focus{background-color:#f8f8f8;color:#000}.theme-pda-retro .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-pda-retro .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--red:hover,.theme-pda-retro .Button--color--red:focus{background-color:#dc4848;color:#fff}.theme-pda-retro .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.theme-pda-retro .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--orange:hover,.theme-pda-retro .Button--color--orange:focus{background-color:#f0853f;color:#fff}.theme-pda-retro .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.theme-pda-retro .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--yellow:hover,.theme-pda-retro .Button--color--yellow:focus{background-color:#f5d72e;color:#000}.theme-pda-retro .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.theme-pda-retro .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--olive:hover,.theme-pda-retro .Button--color--olive:focus{background-color:#c4da2b;color:#fff}.theme-pda-retro .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.theme-pda-retro .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--green:hover,.theme-pda-retro .Button--color--green:focus{background-color:#32c154;color:#fff}.theme-pda-retro .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.theme-pda-retro .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--teal:hover,.theme-pda-retro .Button--color--teal:focus{background-color:#13c4bc;color:#fff}.theme-pda-retro .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.theme-pda-retro .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--blue:hover,.theme-pda-retro .Button--color--blue:focus{background-color:#3a95d9;color:#fff}.theme-pda-retro .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.theme-pda-retro .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--violet:hover,.theme-pda-retro .Button--color--violet:focus{background-color:#7953cc;color:#fff}.theme-pda-retro .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.theme-pda-retro .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--purple:hover,.theme-pda-retro .Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.theme-pda-retro .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.theme-pda-retro .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--pink:hover,.theme-pda-retro .Button--color--pink:focus{background-color:#e257a5;color:#fff}.theme-pda-retro .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.theme-pda-retro .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--brown:hover,.theme-pda-retro .Button--color--brown:focus{background-color:#b47851;color:#fff}.theme-pda-retro .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.theme-pda-retro .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--grey:hover,.theme-pda-retro .Button--color--grey:focus{background-color:#868686;color:#fff}.theme-pda-retro .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.theme-pda-retro .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--good:hover,.theme-pda-retro .Button--color--good:focus{background-color:#6cba39;color:#fff}.theme-pda-retro .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--average:hover,.theme-pda-retro .Button--color--average:focus{background-color:#131313;color:#fff}.theme-pda-retro .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.theme-pda-retro .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--bad:hover,.theme-pda-retro .Button--color--bad:focus{background-color:#dc4848;color:#fff}.theme-pda-retro .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-pda-retro .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--label:hover,.theme-pda-retro .Button--color--label:focus{background-color:#131313;color:#fff}.theme-pda-retro .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-pda-retro .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--default:hover,.theme-pda-retro .Button--color--default:focus{background-color:#fbfaf6;color:#000}.theme-pda-retro .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-pda-retro .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--caution:hover,.theme-pda-retro .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-pda-retro .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-pda-retro .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--danger:hover,.theme-pda-retro .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-pda-retro .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#6f7961;color:#fff;background-color:rgba(111,121,97,0);color:rgba(255,255,255,.5)}.theme-pda-retro .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--color--transparent:hover,.theme-pda-retro .Button--color--transparent:focus{background-color:#939c85;color:#fff}.theme-pda-retro .Button--disabled{background-color:#505050 !important}.theme-pda-retro .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-pda-retro .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-pda-retro .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-pda-retro .Button--selected:hover,.theme-pda-retro .Button--selected:focus{background-color:#c81c1c;color:#fff}.theme-pda-retro .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-pda-retro .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-pda-retro .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-pda-retro .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-pda-retro .ProgressBar--color--default{border:.0833333333em solid #000}.theme-pda-retro .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--black{border:.0833333333em solid #000 !important}.theme-pda-retro .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--white{border:.0833333333em solid #d9d9d9 !important}.theme-pda-retro .ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.theme-pda-retro .ProgressBar--color--red{border:.0833333333em solid #bd2020 !important}.theme-pda-retro .ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.theme-pda-retro .ProgressBar--color--orange{border:.0833333333em solid #d95e0c !important}.theme-pda-retro .ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.theme-pda-retro .ProgressBar--color--yellow{border:.0833333333em solid #d9b804 !important}.theme-pda-retro .ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.theme-pda-retro .ProgressBar--color--olive{border:.0833333333em solid #9aad14 !important}.theme-pda-retro .ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.theme-pda-retro .ProgressBar--color--green{border:.0833333333em solid #1b9638 !important}.theme-pda-retro .ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.theme-pda-retro .ProgressBar--color--teal{border:.0833333333em solid #009a93 !important}.theme-pda-retro .ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.theme-pda-retro .ProgressBar--color--blue{border:.0833333333em solid #1c71b1 !important}.theme-pda-retro .ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.theme-pda-retro .ProgressBar--color--violet{border:.0833333333em solid #552dab !important}.theme-pda-retro .ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.theme-pda-retro .ProgressBar--color--purple{border:.0833333333em solid #8b2baa !important}.theme-pda-retro .ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.theme-pda-retro .ProgressBar--color--pink{border:.0833333333em solid #cf2082 !important}.theme-pda-retro .ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.theme-pda-retro .ProgressBar--color--brown{border:.0833333333em solid #8c5836 !important}.theme-pda-retro .ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.theme-pda-retro .ProgressBar--color--grey{border:.0833333333em solid #646464 !important}.theme-pda-retro .ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.theme-pda-retro .ProgressBar--color--good{border:.0833333333em solid #4d9121 !important}.theme-pda-retro .ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.theme-pda-retro .ProgressBar--color--average{border:.0833333333em solid #000 !important}.theme-pda-retro .ProgressBar--color--average .ProgressBar__fill{background-color:#000}.theme-pda-retro .ProgressBar--color--bad{border:.0833333333em solid #bd2020 !important}.theme-pda-retro .ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.theme-pda-retro .ProgressBar--color--label{border:.0833333333em solid #000 !important}.theme-pda-retro .ProgressBar--color--label .ProgressBar__fill{background-color:#000}.theme-pda-retro .Section{position:relative;margin-bottom:.5em;background-color:#646d57;background-color:rgba(0,0,0,.1);box-sizing:border-box}.theme-pda-retro .Section:last-child{margin-bottom:0}.theme-pda-retro .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #000}.theme-pda-retro .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-pda-retro .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-pda-retro .Section__rest{position:relative}.theme-pda-retro .Section__content{padding:.66em .5em}.theme-pda-retro .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-pda-retro .Section--fill{display:flex;flex-direction:column;height:100%}.theme-pda-retro .Section--fill>.Section__rest{flex-grow:1}.theme-pda-retro .Section--fill>.Section__rest>.Section__content{height:100%}.theme-pda-retro .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-pda-retro .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-pda-retro .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-pda-retro .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-pda-retro .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-pda-retro .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-pda-retro .Section .Section:first-child{margin-top:-0.5em}.theme-pda-retro .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-pda-retro .Section .Section .Section .Section__titleText{font-size:1em}.theme-pda-retro .Section--flex{display:flex;flex-flow:column}.theme-pda-retro .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-pda-retro .Section__content--noTopPadding{padding-top:0}.theme-pda-retro .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-pda-retro .TinderMessage_First_Sent,.theme-pda-retro .TinderMessage_Subsequent_Sent,.theme-pda-retro .TinderMessage_First_Received,.theme-pda-retro .TinderMessage_Subsequent_Received{padding:6px;z-index:1;word-break:break-all;max-width:100%}.theme-pda-retro .TinderMessage_First_Sent,.theme-pda-retro .TinderMessage_Subsequent_Sent{text-align:right;background-color:#9faa91}.theme-pda-retro .TinderMessage_First_Sent{border-radius:10px 10px 0px 10px}.theme-pda-retro .TinderMessage_Subsequent_Sent{border-radius:10px 0px 0px 10px}.theme-pda-retro .TinderMessage_First_Received,.theme-pda-retro .TinderMessage_Subsequent_Received{text-align:left;background-color:#b8b37b}.theme-pda-retro .TinderMessage_First_Received{border-radius:10px 10px 10px 0px}.theme-pda-retro .TinderMessage_Subsequent_Received{border-radius:0px 10px 10px 0px}.theme-pda-retro .ClassicMessage_Sent,.theme-pda-retro .ClassicMessage_Received{word-break:break-all}.theme-pda-retro .ClassicMessage_Sent{color:#9faa91}.theme-pda-retro .ClassicMessage_Received{color:#b8b37b}.theme-pda-retro .Layout,.theme-pda-retro .Layout *{scrollbar-base-color:#535b49;scrollbar-face-color:#7e896e;scrollbar-3dlight-color:#6f7961;scrollbar-highlight-color:#6f7961;scrollbar-track-color:#535b49;scrollbar-arrow-color:#b7beae;scrollbar-shadow-color:#7e896e}.theme-pda-retro .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-pda-retro .Layout__content--scrollable{overflow-y:auto}.theme-pda-retro .Layout__content--flexRow{display:flex;flex-flow:row}.theme-pda-retro .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-pda-retro .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#6f7961;background-image:linear-gradient(to bottom, #6f7961 0%, #6f7961 100%)}.theme-pda-retro .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-pda-retro .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-pda-retro .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-pda-retro .Window__contentPadding:after{height:0}.theme-pda-retro .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-pda-retro .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(147,156,133,.25);pointer-events:none}.theme-pda-retro .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-pda-retro .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-pda-retro .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-pda-retro .TitleBar{background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-pda-retro .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#363636;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-pda-retro .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-pda-retro .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-pda-retro .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-pda-retro .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-pda-retro .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-pda-retro .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-pda-retro .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-pda-retro .Button{color:#161613;background-color:#565d4b;border:1px solid #000}.theme-pda-retro .Layout__content{background-image:none}.theme-pda-retro .LabeledList__label{font-weight:bold}.theme-pda-retro .Tooltip::after{color:#fff}
.theme-retro .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:0;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-retro .Button:last-child{margin-right:0;margin-bottom:0}.theme-retro .Button .fa,.theme-retro .Button .fas,.theme-retro .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-retro .Button--hasContent .fa,.theme-retro .Button--hasContent .fas,.theme-retro .Button--hasContent .far{margin-right:.25em}.theme-retro .Button--hasContent.Button--iconPosition--right .fa,.theme-retro .Button--hasContent.Button--iconPosition--right .fas,.theme-retro .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-retro .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-retro .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-retro .Button--circular{border-radius:50%}.theme-retro .Button--compact{padding:0 .25em;line-height:1.333em}.theme-retro .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000}.theme-retro .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-retro .Button--color--default:hover,.theme-retro .Button--color--default:focus{background-color:#fbfaf6;color:#000}.theme-retro .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-retro .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-retro .Button--color--caution:hover,.theme-retro .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-retro .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-retro .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-retro .Button--color--danger:hover,.theme-retro .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-retro .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#e8e4c9;color:#000;background-color:rgba(232,228,201,0);color:rgba(255,255,255,.5)}.theme-retro .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-retro .Button--color--transparent:hover,.theme-retro .Button--color--transparent:focus{background-color:#fbfaf6;color:#000}.theme-retro .Button--disabled{background-color:#363636 !important}.theme-retro .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-retro .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-retro .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-retro .Button--selected:hover,.theme-retro .Button--selected:focus{background-color:#c81c1c;color:#fff}.theme-retro .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:0;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-retro .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-retro .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-retro .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-retro .ProgressBar--color--default{border:.0833333333em solid #000}.theme-retro .ProgressBar--color--default .ProgressBar__fill{background-color:#000}.theme-retro .Section{position:relative;margin-bottom:.5em;background-color:#9b9987;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-retro .Section:last-child{margin-bottom:0}.theme-retro .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #000}.theme-retro .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-retro .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-retro .Section__rest{position:relative}.theme-retro .Section__content{padding:.66em .5em}.theme-retro .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-retro .Section--fill{display:flex;flex-direction:column;height:100%}.theme-retro .Section--fill>.Section__rest{flex-grow:1}.theme-retro .Section--fill>.Section__rest>.Section__content{height:100%}.theme-retro .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-retro .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-retro .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-retro .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-retro .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-retro .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-retro .Section .Section:first-child{margin-top:-0.5em}.theme-retro .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-retro .Section .Section .Section .Section__titleText{font-size:1em}.theme-retro .Section--flex{display:flex;flex-flow:column}.theme-retro .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-retro .Section__content--noTopPadding{padding-top:0}.theme-retro .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-retro .Layout,.theme-retro .Layout *{scrollbar-base-color:#c8be7d;scrollbar-face-color:#eae7ce;scrollbar-3dlight-color:#e8e4c9;scrollbar-highlight-color:#e8e4c9;scrollbar-track-color:#c8be7d;scrollbar-arrow-color:#f4f2e4;scrollbar-shadow-color:#eae7ce}.theme-retro .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-retro .Layout__content--scrollable{overflow-y:auto}.theme-retro .Layout__content--flexRow{display:flex;flex-flow:row}.theme-retro .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-retro .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#e8e4c9;background-image:linear-gradient(to bottom, #e8e4c9 0%, #e8e4c9 100%)}.theme-retro .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-retro .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-retro .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-retro .Window__contentPadding:after{height:0}.theme-retro .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-retro .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(251,250,246,.25);pointer-events:none}.theme-retro .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-retro .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-retro .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-retro .TitleBar{background-color:#585337;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-retro .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#585337;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-retro .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-retro .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-retro .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-retro .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-retro .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-retro .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-retro .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-retro .Button{font-family:monospace;color:#161613;border:.1666666667em outset #e8e4c9;outline:.0833333333em solid #161613}.theme-retro .Layout__content{background-image:none}
-.theme-syndicate .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-syndicate .Button:last-child{margin-right:0;margin-bottom:0}.theme-syndicate .Button .fa,.theme-syndicate .Button .fas,.theme-syndicate .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-syndicate .Button--hasContent .fa,.theme-syndicate .Button--hasContent .fas,.theme-syndicate .Button--hasContent .far{margin-right:.25em}.theme-syndicate .Button--hasContent.Button--iconPosition--right .fa,.theme-syndicate .Button--hasContent.Button--iconPosition--right .fas,.theme-syndicate .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-syndicate .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-syndicate .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-syndicate .Button--circular{border-radius:50%}.theme-syndicate .Button--compact{padding:0 .25em;line-height:1.333em}.theme-syndicate .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#397439;color:#fff}.theme-syndicate .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--default:hover,.theme-syndicate .Button--color--default:focus{background-color:#595;color:#fff}.theme-syndicate .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-syndicate .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--caution:hover,.theme-syndicate .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-syndicate .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-syndicate .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--danger:hover,.theme-syndicate .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-syndicate .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#550202;color:#fff;background-color:rgba(85,2,2,0);color:rgba(255,255,255,.5)}.theme-syndicate .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--transparent:hover,.theme-syndicate .Button--color--transparent:focus{background-color:#751616;color:#fff}.theme-syndicate .Button--disabled{background-color:#363636 !important}.theme-syndicate .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-syndicate .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--selected:hover,.theme-syndicate .Button--selected:focus{background-color:#c81c1c;color:#fff}.theme-syndicate .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-syndicate .Input--fluid{display:block;width:auto}.theme-syndicate .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-syndicate .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-syndicate .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-syndicate .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-syndicate .NanoMap__container{overflow:hiddden;width:100%;z-index:1}.theme-syndicate .NanoMap__marker{z-index:10;padding:0px;margin:0px}.theme-syndicate .NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.theme-syndicate .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#fff;background-color:#910101;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.theme-syndicate .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-syndicate .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-syndicate .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-syndicate .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-syndicate .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-syndicate .Input--fluid{display:block;width:auto}.theme-syndicate .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-syndicate .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-syndicate .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-syndicate .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-syndicate .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#87ce87;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-syndicate .NumberInput--fluid{display:block}.theme-syndicate .NumberInput__content{margin-left:.5em}.theme-syndicate .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-syndicate .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #87ce87;background-color:#87ce87}.theme-syndicate .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-syndicate .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-syndicate .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-syndicate .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-syndicate .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-syndicate .ProgressBar--color--default{border:.0833333333em solid #306330}.theme-syndicate .ProgressBar--color--default .ProgressBar__fill{background-color:#306330}.theme-syndicate .Section{position:relative;margin-bottom:.5em;background-color:#390101;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-syndicate .Section:last-child{margin-bottom:0}.theme-syndicate .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #397439}.theme-syndicate .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-syndicate .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-syndicate .Section__rest{position:relative}.theme-syndicate .Section__content{padding:.66em .5em}.theme-syndicate .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-syndicate .Section--fill{display:flex;flex-direction:column;height:100%}.theme-syndicate .Section--fill>.Section__rest{flex-grow:1}.theme-syndicate .Section--fill>.Section__rest>.Section__content{height:100%}.theme-syndicate .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-syndicate .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-syndicate .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-syndicate .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-syndicate .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-syndicate .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-syndicate .Section .Section:first-child{margin-top:-0.5em}.theme-syndicate .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-syndicate .Section .Section .Section .Section__titleText{font-size:1em}.theme-syndicate .Section--flex{display:flex;flex-flow:column}.theme-syndicate .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-syndicate .Section__content--noTopPadding{padding-top:0}.theme-syndicate .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-syndicate .Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#4a0202;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.theme-syndicate .Layout,.theme-syndicate .Layout *{scrollbar-base-color:#400202;scrollbar-face-color:#7e0303;scrollbar-3dlight-color:#550202;scrollbar-highlight-color:#550202;scrollbar-track-color:#400202;scrollbar-arrow-color:#fa3030;scrollbar-shadow-color:#7e0303}.theme-syndicate .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-syndicate .Layout__content--scrollable{overflow-y:auto}.theme-syndicate .Layout__content--flexRow{display:flex;flex-flow:row}.theme-syndicate .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-syndicate .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#550202;background-image:linear-gradient(to bottom, #730303 0%, #370101 100%)}.theme-syndicate .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-syndicate .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-syndicate .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-syndicate .Window__contentPadding:after{height:0}.theme-syndicate .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-syndicate .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(117,22,22,.25);pointer-events:none}.theme-syndicate .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-syndicate .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-syndicate .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-syndicate .TitleBar{background-color:#910101;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-syndicate .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#910101;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-syndicate .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-syndicate .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-syndicate .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-syndicate .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-syndicate .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-syndicate .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-syndicate .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-syndicate .Layout__content{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4wIiB2aWV3Qm94PSIwIDAgMjAwIDI4OS43NDIiIG9wYWNpdHk9Ii4zMyI+DQogIDxwYXRoIGQ9Im0gOTMuNTM3Njc3LDAgYyAtMTguMTEzMTI1LDAgLTM0LjIyMDEzMywzLjExMTY0IC00OC4zMjM0ODQsOS4zMzQzNyAtMTMuOTY1MDkyLDYuMjIxNjcgLTI0LjYxMjQ0MiwxNS4wNzExNCAtMzEuOTQwNjUxLDI2LjU0NzEgLTcuMTg5OTM5OCwxMS4zMzc4OSAtMTAuMzAxMjI2NiwyNC43NDkxMSAtMTAuMzAxMjI2Niw0MC4yMzQ3OCAwLDEwLjY0NjYyIDIuNzI1MDAyNiwyMC40NjQ2NSA4LjE3NTExMTYsMjkuNDUyNTggNS42MTUyNzcsOC45ODY4NiAxNC4wMzgyNzcsMTcuMzUyMDQgMjUuMjY4ODIxLDI1LjA5NDM2IDExLjIzMDU0NCw3LjYwNTMxIDI2LjUwNzQyMSwxNS40MTgzNSA0NS44MzA1MTQsMjMuNDM3ODIgMTkuOTgzNzQ4LDguMjk1NTcgMzQuODQ4ODQ4LDE1LjU1NDcxIDQ0LjU5Mjk5OCwyMS43NzYzOCA5Ljc0NDE0LDYuMjIyNzMgMTYuNzYxNywxMi44NTg1IDIxLjA1NTcyLDE5LjkwOTUxIDQuMjk0MDQsNy4wNTIwOCA2LjQ0MTkzLDE1Ljc2NDA4IDYuNDQxOTMsMjYuMTM0NTkgMCwxNi4xNzcwMiAtNS4yMDE5NiwyOC40ODIyMiAtMTUuNjA2NzMsMzYuOTE2ODIgLTEwLjIzOTYsOC40MzQ3IC0yNS4wMjIwMywxMi42NTIzIC00NC4zNDUxNjksMTIuNjUyMyAtMTQuMDM4MTcxLDAgLTI1LjUxNTI0NywtMS42NTk0IC0zNC40MzM2MTgsLTQuOTc3NyAtOC45MTgzNywtMy40NTY2IC0xNi4xODU1NzIsLTguNzExMyAtMjEuODAwODM5LC0xNS43NjMzIC01LjYxNTI3NywtNy4wNTIxIC0xMC4wNzQ3OTUsLTE2LjY2MDg4IC0xMy4zNzc4OTksLTI4LjgyODEyIGwgLTI0Ljc3MzE2MjYyOTM5NDUsMCAwLDU2LjgyNjMyIEMgMzMuODU2NzY5LDI4Ni4wNzYwMSA2My43NDkwNCwyODkuNzQyMDEgODkuNjc4MzgzLDI4OS43NDIwMSBjIDE2LjAyMDAyNywwIDMwLjcxOTc4NywtMS4zODI3IDQ0LjA5NzMzNywtNC4xNDc5IDEzLjU0MjcyLC0yLjkwNDMgMjUuMTA0MSwtNy40Njc2IDM0LjY4MzA5LC0xMy42ODkzIDkuNzQ0MTMsLTYuMzU5NyAxNy4zNDA0MiwtMTQuNTE5NSAyMi43OTA1MiwtMjQuNDc0OCA1LjQ1MDEsLTEwLjA5MzMyIDguMTc1MTEsLTIyLjM5OTU5IDguMTc1MTEsLTM2LjkxNjgyIDAsLTEyLjk5NzY0IC0zLjMwMjEsLTI0LjMzNTM5IC05LjkwODI5LC0zNC4wMTQ2IC02LjQ0MTA1LC05LjgxNzI1IC0xNS41MjU0NSwtMTguNTI3MDcgLTI3LjI1MTQ2LC0yNi4xMzEzMyAtMTEuNTYwODUsLTcuNjA0MjcgLTI3LjkxMDgzLC0xNS44MzE0MiAtNDkuMDUwNjYsLTI0LjY4MDIyIC0xNy41MDY0NCwtNy4xOTAxMiAtMzAuNzE5NjY4LC0xMy42ODk0OCAtMzkuNjM4MDM4LC0xOS40OTcwMSAtOC45MTgzNzEsLTUuODA3NTIgLTE4LjYwNzQ3NCwtMTIuNDM0MDkgLTI0LjA5NjUyNCwtMTguODc0MTcgLTUuNDI2MDQzLC02LjM2NjE2IC05LjY1ODgyNiwtMTUuMDcwMDMgLTkuNjU4ODI2LC0yNC44ODcyOSAwLC05LjI2NDAxIDIuMDc1NDE0LC0xNy4yMTM0NSA2LjIyMzQ1NCwtMjMuODUwMzMgMTEuMDk4Mjk4LC0xNC4zOTc0OCA0MS4yODY2MzgsLTEuNzk1MDcgNDUuMDc1NjA5LDI0LjM0NzYyIDQuODM5MzkyLDYuNzc0OTEgOC44NDkzNSwxNi4yNDcyOSAxMi4wMjk1MTUsMjguNDE1NiBsIDIwLjUzMjM0LDAgMCwtNTUuOTk5NjcgYyAtNC40NzgyNSwtNS45MjQ0OCAtOS45NTQ4OCwtMTAuNjMyMjIgLTE1LjkwODM3LC0xNC4zNzQxMSAxLjY0MDU1LDAuNDc5MDUgMy4xOTAzOSwxLjAyMzc2IDQuNjM4NjUsMS42NDAyNCA2LjQ5ODYxLDIuNjI2MDcgMTIuMTY3OTMsNy4zMjc0NyAxNy4wMDczLDE0LjEwMzQ1IDQuODM5MzksNi43NzQ5MSA4Ljg0OTM1LDE2LjI0NTY3IDEyLjAyOTUyLDI4LjQxMzk3IDAsMCA4LjQ4MTI4LC0wLjEyODk0IDguNDg5NzgsLTAuMDAyIDAuNDE3NzYsNi40MTQ5NCAtMS43NTMzOSw5LjQ1Mjg2IC00LjEyMzQyLDEyLjU2MTA0IC0yLjQxNzQsMy4xNjk3OCAtNS4xNDQ4Niw2Ljc4OTczIC00LjAwMjc4LDEzLjAwMjkgMS41MDc4Niw4LjIwMzE4IDEwLjE4MzU0LDEwLjU5NjQyIDE0LjYyMTk0LDkuMzExNTQgLTMuMzE4NDIsLTAuNDk5MTEgLTUuMzE4NTUsLTEuNzQ5NDggLTUuMzE4NTUsLTEuNzQ5NDggMCwwIDEuODc2NDYsMC45OTg2OCA1LjY1MTE3LC0xLjM1OTgxIC0zLjI3Njk1LDAuOTU1NzEgLTEwLjcwNTI5LC0wLjc5NzM4IC0xMS44MDEyNSwtNi43NjMxMyAtMC45NTc1MiwtNS4yMDg2MSAwLjk0NjU0LC03LjI5NTE0IDMuNDAxMTMsLTEwLjUxNDgyIDIuNDU0NjIsLTMuMjE5NjggNS4yODQyNiwtNi45NTgzMSA0LjY4NDMsLTE0LjQ4ODI0IGwgMC4wMDMsMC4wMDIgOC45MjY3NiwwIDAsLTU1Ljk5OTY3IGMgLTE1LjA3MTI1LC0zLjg3MTY4IC0yNy42NTMxNCwtNi4zNjA0MiAtMzcuNzQ2NzEsLTcuNDY1ODYgLTkuOTU1MzEsLTEuMTA3NTUgLTIwLjE4ODIzLC0xLjY1OTgxIC0zMC42OTY2MTMsLTEuNjU5ODEgeiBtIDcwLjMyMTYwMywxNy4zMDg5MyAwLjIzODA1LDQwLjMwNDkgYyAxLjMxODA4LDEuMjI2NjYgMi40Mzk2NSwyLjI3ODE1IDMuMzQwODEsMy4xMDYwMiA0LjgzOTM5LDYuNzc0OTEgOC44NDkzNCwxNi4yNDU2NiAxMi4wMjk1MSwyOC40MTM5NyBsIDIwLjUzMjM0LDAgMCwtNTUuOTk5NjcgYyAtNi42NzczMSwtNC41OTM4MSAtMTkuODM2NDMsLTEwLjQ3MzA5IC0zNi4xNDA3MSwtMTUuODI1MjIgeiBtIC0yOC4xMjA0OSw1LjYwNTUxIDguNTY0NzksMTcuNzE2NTUgYyAtMTEuOTcwMzcsLTYuNDY2OTcgLTEzLjg0Njc4LC05LjcxNzI2IC04LjU2NDc5LC0xNy43MTY1NSB6IG0gMjIuNzk3MDUsMCBjIDIuNzcxNSw3Ljk5OTI5IDEuNzg3NDEsMTEuMjQ5NTggLTQuNDkzNTQsMTcuNzE2NTUgbCA0LjQ5MzU0LC0xNy43MTY1NSB6IG0gMTUuMjIxOTUsMjQuMDA4NDggOC41NjQ3OSwxNy43MTY1NSBjIC0xMS45NzAzOCwtNi40NjY5NyAtMTMuODQ2NzksLTkuNzE3MjYgLTguNTY0NzksLTE3LjcxNjU1IHogbSAyMi43OTcwNCwwIGMgMi43NzE1LDcuOTk5MjkgMS43ODc0MSwxMS4yNDk1OCAtNC40OTM1NCwxNy43MTY1NSBsIDQuNDkzNTQsLTE3LjcxNjU1IHogbSAtOTkuMTEzODQsMi4yMDc2NCA4LjU2NDc5LDE3LjcxNjU1IGMgLTExLjk3MDM4MiwtNi40NjY5NyAtMTMuODQ2NzgyLC05LjcxNzI2IC04LjU2NDc5LC0xNy43MTY1NSB6IG0gMjIuNzk1NDIsMCBjIDIuNzcxNSw3Ljk5OTI5IDEuNzg3NDEsMTEuMjQ5NTggLTQuNDkzNTQsMTcuNzE2NTUgbCA0LjQ5MzU0LC0xNy43MTY1NSB6IiAvPg0KPC9zdmc+DQo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4NCjwhLS0gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvNC4wLyAtLT4NCg==)}
-.theme-wizard .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:2px;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-wizard .Button:last-child{margin-right:0;margin-bottom:0}.theme-wizard .Button .fa,.theme-wizard .Button .fas,.theme-wizard .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-wizard .Button--hasContent .fa,.theme-wizard .Button--hasContent .fas,.theme-wizard .Button--hasContent .far{margin-right:.25em}.theme-wizard .Button--hasContent.Button--iconPosition--right .fa,.theme-wizard .Button--hasContent.Button--iconPosition--right .fas,.theme-wizard .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-wizard .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-wizard .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-wizard .Button--circular{border-radius:50%}.theme-wizard .Button--compact{padding:0 .25em;line-height:1.333em}.theme-wizard .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#1596b6;color:#fff}.theme-wizard .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--default:hover,.theme-wizard .Button--color--default:focus{background-color:#30bde0;color:#fff}.theme-wizard .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-wizard .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--caution:hover,.theme-wizard .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-wizard .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#b30707;color:#fff}.theme-wizard .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--danger:hover,.theme-wizard .Button--color--danger:focus{background-color:#e11b1b;color:#fff}.theme-wizard .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#213e4e;color:#fff;background-color:rgba(33,62,78,0);color:rgba(255,255,255,.5)}.theme-wizard .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--transparent:hover,.theme-wizard .Button--color--transparent:focus{background-color:#395b6d;color:#fff}.theme-wizard .Button--disabled{background-color:#02426d !important}.theme-wizard .Button--selected{transition:color 50ms,background-color 50ms;background-color:#465899;color:#fff}.theme-wizard .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--selected:hover,.theme-wizard .Button--selected:focus{background-color:#6e7eba;color:#fff}.theme-wizard .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-wizard .Input--fluid{display:block;width:auto}.theme-wizard .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-wizard .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-wizard .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-wizard .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-wizard .NanoMap__container{overflow:hiddden;width:100%;z-index:1}.theme-wizard .NanoMap__marker{z-index:10;padding:0px;margin:0px}.theme-wizard .NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.theme-wizard .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#fff;background-color:#a82d55;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.theme-wizard .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-wizard .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-wizard .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-wizard .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-wizard .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-wizard .Input--fluid{display:block;width:auto}.theme-wizard .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-wizard .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-wizard .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-wizard .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-wizard .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#404b6e;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-wizard .NumberInput--fluid{display:block}.theme-wizard .NumberInput__content{margin-left:.5em}.theme-wizard .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-wizard .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #404b6e;background-color:#404b6e}.theme-wizard .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-wizard .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:2px;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-wizard .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-wizard .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-wizard .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-wizard .ProgressBar--color--default{border:.0833333333em solid #12809b}.theme-wizard .ProgressBar--color--default .ProgressBar__fill{background-color:#12809b}.theme-wizard .Section{position:relative;margin-bottom:.5em;background-color:#162a34;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-wizard .Section:last-child{margin-bottom:0}.theme-wizard .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #1596b6}.theme-wizard .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-wizard .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-wizard .Section__rest{position:relative}.theme-wizard .Section__content{padding:.66em .5em}.theme-wizard .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-wizard .Section--fill{display:flex;flex-direction:column;height:100%}.theme-wizard .Section--fill>.Section__rest{flex-grow:1}.theme-wizard .Section--fill>.Section__rest>.Section__content{height:100%}.theme-wizard .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-wizard .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-wizard .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-wizard .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-wizard .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-wizard .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-wizard .Section .Section:first-child{margin-top:-0.5em}.theme-wizard .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-wizard .Section .Section .Section .Section__titleText{font-size:1em}.theme-wizard .Section--flex{display:flex;flex-flow:column}.theme-wizard .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-wizard .Section__content--noTopPadding{padding-top:0}.theme-wizard .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-wizard .Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#2da848;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:2px;max-width:20.8333333333em}.theme-wizard .Layout,.theme-wizard .Layout *{scrollbar-base-color:#192f3b;scrollbar-face-color:#2d546a;scrollbar-3dlight-color:#213e4e;scrollbar-highlight-color:#213e4e;scrollbar-track-color:#192f3b;scrollbar-arrow-color:#73a7c4;scrollbar-shadow-color:#2d546a}.theme-wizard .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-wizard .Layout__content--scrollable{overflow-y:auto}.theme-wizard .Layout__content--flexRow{display:flex;flex-flow:row}.theme-wizard .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-wizard .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#213e4e;background-image:linear-gradient(to bottom, #2a4f64 0%, #182d38 100%)}.theme-wizard .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-wizard .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-wizard .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-wizard .Window__contentPadding:after{height:0}.theme-wizard .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-wizard .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(57,91,109,.25);pointer-events:none}.theme-wizard .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-wizard .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-wizard .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-wizard .TitleBar{background-color:#1b9e26;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-wizard .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#1b9e26;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-wizard .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-wizard .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-wizard .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-wizard .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-wizard .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-wizard .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-wizard .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-wizard .Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJtZXRlb3IiIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1tZXRlb3IgZmEtdy0xNiIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBvcGFjaXR5PSIuMzMiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTUxMS4zMjgsMjAuODAyN2MtMTEuNjA3NTksMzguNzAyNjQtMzQuMzA3MjQsMTExLjcwMTczLTYxLjMwMzExLDE4Ny43MDA3Nyw2Ljk5ODkzLDIuMDkzNzIsMTMuNDA0Miw0LDE4LjYwNjUzLDUuNTkzNjhhMTYuMDYxNTgsMTYuMDYxNTgsMCwwLDEsOS40OTg1NCwyMi45MDZjLTIyLjEwNiw0Mi4yOTYzNS04Mi42OTA0NywxNTIuNzk1LTE0Mi40NzgxOSwyMTQuNDAzNTYtLjk5OTg0LDEuMDkzNzMtMS45OTk2OSwyLjUtMi45OTk1NCwzLjQ5OTk1QTE5NC44MzA0NiwxOTQuODMwNDYsMCwxLDEsNTcuMDg1LDE3OS40MTAwOWMuOTk5ODUtMSwyLjQwNTg4LTIsMy40OTk0Ny0zLDYxLjU5OTk0LTU5LjkwNTQ5LDE3MS45NzM2Ny0xMjAuNDA0NzMsMjE0LjM3MzQzLTE0Mi40OTgyYTE2LjA1OCwxNi4wNTgsMCwwLDEsMjIuOTAyNzQsOS40OTk4OGMxLjU5MzUxLDUuMDkzNjgsMy40OTk0NywxMS41OTM2LDUuNTkyOSwxOC41OTM1MUMzNzkuMzQ4MTgsMzUuMDA1NjUsNDUyLjQzMDc0LDEyLjMwMjgxLDQ5MS4xMjc5NC43MDkyMUExNi4xODMyNSwxNi4xODMyNSwwLDAsMSw1MTEuMzI4LDIwLjgwMjdaTTMxOS45NTEsMzIwLjAwMjA3QTEyNy45ODA0MSwxMjcuOTgwNDEsMCwxLDAsMTkxLjk3MDYxLDQ0OC4wMDA0NiwxMjcuOTc1NzMsMTI3Ljk3NTczLDAsMCwwLDMxOS45NTEsMzIwLjAwMjA3Wm0tMTI3Ljk4MDQxLTMxLjk5OTZhMzEuOTk1MSwzMS45OTUxLDAsMSwxLTMxLjk5NTEtMzEuOTk5NkEzMS45NTksMzEuOTU5LDAsMCwxLDE5MS45NzA2MSwyODguMDAyNDdabTMxLjk5NTEsNzkuOTk5YTE1Ljk5NzU1LDE1Ljk5NzU1LDAsMSwxLTE1Ljk5NzU1LTE1Ljk5OThBMTYuMDQ5NzUsMTYuMDQ5NzUsMCwwLDEsMjIzLjk2NTcxLDM2OC4wMDE0N1oiPjwvcGF0aD48L3N2Zz4NCjwhLS0gVGhpcyB3b3JrIGlzIGxpY2Vuc2VkIHVuZGVyIGEgQ3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbi1TaGFyZUFsaWtlIDQuMCBJbnRlcm5hdGlvbmFsIExpY2Vuc2UuIC0tPg0KPCEtLSBodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9ieS1zYS80LjAvIC0tPg==)}
+.theme-syndicate .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-syndicate .Button:last-child{margin-right:0;margin-bottom:0}.theme-syndicate .Button .fa,.theme-syndicate .Button .fas,.theme-syndicate .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-syndicate .Button--hasContent .fa,.theme-syndicate .Button--hasContent .fas,.theme-syndicate .Button--hasContent .far{margin-right:.25em}.theme-syndicate .Button--hasContent.Button--iconPosition--right .fa,.theme-syndicate .Button--hasContent.Button--iconPosition--right .fas,.theme-syndicate .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-syndicate .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-syndicate .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-syndicate .Button--circular{border-radius:50%}.theme-syndicate .Button--compact{padding:0 .25em;line-height:1.333em}.theme-syndicate .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#397439;color:#fff}.theme-syndicate .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--default:hover,.theme-syndicate .Button--color--default:focus{background-color:#595;color:#fff}.theme-syndicate .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-syndicate .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--caution:hover,.theme-syndicate .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-syndicate .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-syndicate .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--danger:hover,.theme-syndicate .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-syndicate .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#550202;color:#fff;background-color:rgba(85,2,2,0);color:rgba(255,255,255,.5)}.theme-syndicate .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--color--transparent:hover,.theme-syndicate .Button--color--transparent:focus{background-color:#751616;color:#fff}.theme-syndicate .Button--disabled{background-color:#363636 !important}.theme-syndicate .Button--selected{transition:color 50ms,background-color 50ms;background-color:#9d0808;color:#fff}.theme-syndicate .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-syndicate .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-syndicate .Button--selected:hover,.theme-syndicate .Button--selected:focus{background-color:#c81c1c;color:#fff}.theme-syndicate .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-syndicate .Input--fluid{display:block;width:auto}.theme-syndicate .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-syndicate .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-syndicate .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-syndicate .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-syndicate .NanoMap__container{overflow:hiddden;width:100%;z-index:1}.theme-syndicate .NanoMap__marker{z-index:10;padding:0px;margin:0px}.theme-syndicate .NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.theme-syndicate .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#fff;background-color:#910101;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.theme-syndicate .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-syndicate .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-syndicate .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-syndicate .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-syndicate .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-syndicate .Input--fluid{display:block;width:auto}.theme-syndicate .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-syndicate .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-syndicate .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-syndicate .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-syndicate .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #87ce87;border:.0833333333em solid rgba(135,206,135,.75);border-radius:.16em;color:#87ce87;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-syndicate .NumberInput--fluid{display:block}.theme-syndicate .NumberInput__content{margin-left:.5em}.theme-syndicate .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-syndicate .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #87ce87;background-color:#87ce87}.theme-syndicate .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-syndicate .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:.16em;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-syndicate .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-syndicate .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-syndicate .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-syndicate .ProgressBar--color--default{border:.0833333333em solid #306330}.theme-syndicate .ProgressBar--color--default .ProgressBar__fill{background-color:#306330}.theme-syndicate .Section{position:relative;margin-bottom:.5em;background-color:#390101;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-syndicate .Section:last-child{margin-bottom:0}.theme-syndicate .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #397439}.theme-syndicate .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-syndicate .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-syndicate .Section__rest{position:relative}.theme-syndicate .Section__content{padding:.66em .5em}.theme-syndicate .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-syndicate .Section--fill{display:flex;flex-direction:column;height:100%}.theme-syndicate .Section--fill>.Section__rest{flex-grow:1}.theme-syndicate .Section--fill>.Section__rest>.Section__content{height:100%}.theme-syndicate .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-syndicate .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-syndicate .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-syndicate .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-syndicate .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-syndicate .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-syndicate .Section .Section:first-child{margin-top:-0.5em}.theme-syndicate .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-syndicate .Section .Section .Section .Section__titleText{font-size:1em}.theme-syndicate .Section--flex{display:flex;flex-flow:column}.theme-syndicate .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-syndicate .Section__content--noTopPadding{padding-top:0}.theme-syndicate .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-syndicate .Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#4a0202;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.theme-syndicate .Layout,.theme-syndicate .Layout *{scrollbar-base-color:#400202;scrollbar-face-color:#7e0303;scrollbar-3dlight-color:#550202;scrollbar-highlight-color:#550202;scrollbar-track-color:#400202;scrollbar-arrow-color:#fa3030;scrollbar-shadow-color:#7e0303}.theme-syndicate .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-syndicate .Layout__content--scrollable{overflow-y:auto}.theme-syndicate .Layout__content--flexRow{display:flex;flex-flow:row}.theme-syndicate .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-syndicate .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#550202;background-image:linear-gradient(to bottom, #730303 0%, #370101 100%)}.theme-syndicate .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-syndicate .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-syndicate .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-syndicate .Window__contentPadding:after{height:0}.theme-syndicate .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-syndicate .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(117,22,22,.25);pointer-events:none}.theme-syndicate .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-syndicate .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-syndicate .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-syndicate .TitleBar{background-color:#910101;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-syndicate .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#910101;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-syndicate .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-syndicate .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-syndicate .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-syndicate .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-syndicate .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-syndicate .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-syndicate .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-syndicate .Layout__content{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjAiIHZpZXdCb3g9IjAgMCAyMDAgMjg5Ljc0MiIgb3BhY2l0eT0iLjMzIj4KICA8cGF0aCBkPSJtIDkzLjUzNzY3NywwIGMgLTE4LjExMzEyNSwwIC0zNC4yMjAxMzMsMy4xMTE2NCAtNDguMzIzNDg0LDkuMzM0MzcgLTEzLjk2NTA5Miw2LjIyMTY3IC0yNC42MTI0NDIsMTUuMDcxMTQgLTMxLjk0MDY1MSwyNi41NDcxIC03LjE4OTkzOTgsMTEuMzM3ODkgLTEwLjMwMTIyNjYsMjQuNzQ5MTEgLTEwLjMwMTIyNjYsNDAuMjM0NzggMCwxMC42NDY2MiAyLjcyNTAwMjYsMjAuNDY0NjUgOC4xNzUxMTE2LDI5LjQ1MjU4IDUuNjE1Mjc3LDguOTg2ODYgMTQuMDM4Mjc3LDE3LjM1MjA0IDI1LjI2ODgyMSwyNS4wOTQzNiAxMS4yMzA1NDQsNy42MDUzMSAyNi41MDc0MjEsMTUuNDE4MzUgNDUuODMwNTE0LDIzLjQzNzgyIDE5Ljk4Mzc0OCw4LjI5NTU3IDM0Ljg0ODg0OCwxNS41NTQ3MSA0NC41OTI5OTgsMjEuNzc2MzggOS43NDQxNCw2LjIyMjczIDE2Ljc2MTcsMTIuODU4NSAyMS4wNTU3MiwxOS45MDk1MSA0LjI5NDA0LDcuMDUyMDggNi40NDE5MywxNS43NjQwOCA2LjQ0MTkzLDI2LjEzNDU5IDAsMTYuMTc3MDIgLTUuMjAxOTYsMjguNDgyMjIgLTE1LjYwNjczLDM2LjkxNjgyIC0xMC4yMzk2LDguNDM0NyAtMjUuMDIyMDMsMTIuNjUyMyAtNDQuMzQ1MTY5LDEyLjY1MjMgLTE0LjAzODE3MSwwIC0yNS41MTUyNDcsLTEuNjU5NCAtMzQuNDMzNjE4LC00Ljk3NzcgLTguOTE4MzcsLTMuNDU2NiAtMTYuMTg1NTcyLC04LjcxMTMgLTIxLjgwMDgzOSwtMTUuNzYzMyAtNS42MTUyNzcsLTcuMDUyMSAtMTAuMDc0Nzk1LC0xNi42NjA4OCAtMTMuMzc3ODk5LC0yOC44MjgxMiBsIC0yNC43NzMxNjI2MjkzOTQ1LDAgMCw1Ni44MjYzMiBDIDMzLjg1Njc2OSwyODYuMDc2MDEgNjMuNzQ5MDQsMjg5Ljc0MjAxIDg5LjY3ODM4MywyODkuNzQyMDEgYyAxNi4wMjAwMjcsMCAzMC43MTk3ODcsLTEuMzgyNyA0NC4wOTczMzcsLTQuMTQ3OSAxMy41NDI3MiwtMi45MDQzIDI1LjEwNDEsLTcuNDY3NiAzNC42ODMwOSwtMTMuNjg5MyA5Ljc0NDEzLC02LjM1OTcgMTcuMzQwNDIsLTE0LjUxOTUgMjIuNzkwNTIsLTI0LjQ3NDggNS40NTAxLC0xMC4wOTMzMiA4LjE3NTExLC0yMi4zOTk1OSA4LjE3NTExLC0zNi45MTY4MiAwLC0xMi45OTc2NCAtMy4zMDIxLC0yNC4zMzUzOSAtOS45MDgyOSwtMzQuMDE0NiAtNi40NDEwNSwtOS44MTcyNSAtMTUuNTI1NDUsLTE4LjUyNzA3IC0yNy4yNTE0NiwtMjYuMTMxMzMgLTExLjU2MDg1LC03LjYwNDI3IC0yNy45MTA4MywtMTUuODMxNDIgLTQ5LjA1MDY2LC0yNC42ODAyMiAtMTcuNTA2NDQsLTcuMTkwMTIgLTMwLjcxOTY2OCwtMTMuNjg5NDggLTM5LjYzODAzOCwtMTkuNDk3MDEgLTguOTE4MzcxLC01LjgwNzUyIC0xOC42MDc0NzQsLTEyLjQzNDA5IC0yNC4wOTY1MjQsLTE4Ljg3NDE3IC01LjQyNjA0MywtNi4zNjYxNiAtOS42NTg4MjYsLTE1LjA3MDAzIC05LjY1ODgyNiwtMjQuODg3MjkgMCwtOS4yNjQwMSAyLjA3NTQxNCwtMTcuMjEzNDUgNi4yMjM0NTQsLTIzLjg1MDMzIDExLjA5ODI5OCwtMTQuMzk3NDggNDEuMjg2NjM4LC0xLjc5NTA3IDQ1LjA3NTYwOSwyNC4zNDc2MiA0LjgzOTM5Miw2Ljc3NDkxIDguODQ5MzUsMTYuMjQ3MjkgMTIuMDI5NTE1LDI4LjQxNTYgbCAyMC41MzIzNCwwIDAsLTU1Ljk5OTY3IGMgLTQuNDc4MjUsLTUuOTI0NDggLTkuOTU0ODgsLTEwLjYzMjIyIC0xNS45MDgzNywtMTQuMzc0MTEgMS42NDA1NSwwLjQ3OTA1IDMuMTkwMzksMS4wMjM3NiA0LjYzODY1LDEuNjQwMjQgNi40OTg2MSwyLjYyNjA3IDEyLjE2NzkzLDcuMzI3NDcgMTcuMDA3MywxNC4xMDM0NSA0LjgzOTM5LDYuNzc0OTEgOC44NDkzNSwxNi4yNDU2NyAxMi4wMjk1MiwyOC40MTM5NyAwLDAgOC40ODEyOCwtMC4xMjg5NCA4LjQ4OTc4LC0wLjAwMiAwLjQxNzc2LDYuNDE0OTQgLTEuNzUzMzksOS40NTI4NiAtNC4xMjM0MiwxMi41NjEwNCAtMi40MTc0LDMuMTY5NzggLTUuMTQ0ODYsNi43ODk3MyAtNC4wMDI3OCwxMy4wMDI5IDEuNTA3ODYsOC4yMDMxOCAxMC4xODM1NCwxMC41OTY0MiAxNC42MjE5NCw5LjMxMTU0IC0zLjMxODQyLC0wLjQ5OTExIC01LjMxODU1LC0xLjc0OTQ4IC01LjMxODU1LC0xLjc0OTQ4IDAsMCAxLjg3NjQ2LDAuOTk4NjggNS42NTExNywtMS4zNTk4MSAtMy4yNzY5NSwwLjk1NTcxIC0xMC43MDUyOSwtMC43OTczOCAtMTEuODAxMjUsLTYuNzYzMTMgLTAuOTU3NTIsLTUuMjA4NjEgMC45NDY1NCwtNy4yOTUxNCAzLjQwMTEzLC0xMC41MTQ4MiAyLjQ1NDYyLC0zLjIxOTY4IDUuMjg0MjYsLTYuOTU4MzEgNC42ODQzLC0xNC40ODgyNCBsIDAuMDAzLDAuMDAyIDguOTI2NzYsMCAwLC01NS45OTk2NyBjIC0xNS4wNzEyNSwtMy44NzE2OCAtMjcuNjUzMTQsLTYuMzYwNDIgLTM3Ljc0NjcxLC03LjQ2NTg2IC05Ljk1NTMxLC0xLjEwNzU1IC0yMC4xODgyMywtMS42NTk4MSAtMzAuNjk2NjEzLC0xLjY1OTgxIHogbSA3MC4zMjE2MDMsMTcuMzA4OTMgMC4yMzgwNSw0MC4zMDQ5IGMgMS4zMTgwOCwxLjIyNjY2IDIuNDM5NjUsMi4yNzgxNSAzLjM0MDgxLDMuMTA2MDIgNC44MzkzOSw2Ljc3NDkxIDguODQ5MzQsMTYuMjQ1NjYgMTIuMDI5NTEsMjguNDEzOTcgbCAyMC41MzIzNCwwIDAsLTU1Ljk5OTY3IGMgLTYuNjc3MzEsLTQuNTkzODEgLTE5LjgzNjQzLC0xMC40NzMwOSAtMzYuMTQwNzEsLTE1LjgyNTIyIHogbSAtMjguMTIwNDksNS42MDU1MSA4LjU2NDc5LDE3LjcxNjU1IGMgLTExLjk3MDM3LC02LjQ2Njk3IC0xMy44NDY3OCwtOS43MTcyNiAtOC41NjQ3OSwtMTcuNzE2NTUgeiBtIDIyLjc5NzA1LDAgYyAyLjc3MTUsNy45OTkyOSAxLjc4NzQxLDExLjI0OTU4IC00LjQ5MzU0LDE3LjcxNjU1IGwgNC40OTM1NCwtMTcuNzE2NTUgeiBtIDE1LjIyMTk1LDI0LjAwODQ4IDguNTY0NzksMTcuNzE2NTUgYyAtMTEuOTcwMzgsLTYuNDY2OTcgLTEzLjg0Njc5LC05LjcxNzI2IC04LjU2NDc5LC0xNy43MTY1NSB6IG0gMjIuNzk3MDQsMCBjIDIuNzcxNSw3Ljk5OTI5IDEuNzg3NDEsMTEuMjQ5NTggLTQuNDkzNTQsMTcuNzE2NTUgbCA0LjQ5MzU0LC0xNy43MTY1NSB6IG0gLTk5LjExMzg0LDIuMjA3NjQgOC41NjQ3OSwxNy43MTY1NSBjIC0xMS45NzAzODIsLTYuNDY2OTcgLTEzLjg0Njc4MiwtOS43MTcyNiAtOC41NjQ3OSwtMTcuNzE2NTUgeiBtIDIyLjc5NTQyLDAgYyAyLjc3MTUsNy45OTkyOSAxLjc4NzQxLDExLjI0OTU4IC00LjQ5MzU0LDE3LjcxNjU1IGwgNC40OTM1NCwtMTcuNzE2NTUgeiIgLz4KPC9zdmc+CjwhLS0gVGhpcyB3b3JrIGlzIGxpY2Vuc2VkIHVuZGVyIGEgQ3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbi1TaGFyZUFsaWtlIDQuMCBJbnRlcm5hdGlvbmFsIExpY2Vuc2UuIC0tPgo8IS0tIGh0dHA6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LXNhLzQuMC8gLS0+Cg==)}
+.theme-wizard .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:2px;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-wizard .Button:last-child{margin-right:0;margin-bottom:0}.theme-wizard .Button .fa,.theme-wizard .Button .fas,.theme-wizard .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-wizard .Button--hasContent .fa,.theme-wizard .Button--hasContent .fas,.theme-wizard .Button--hasContent .far{margin-right:.25em}.theme-wizard .Button--hasContent.Button--iconPosition--right .fa,.theme-wizard .Button--hasContent.Button--iconPosition--right .fas,.theme-wizard .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-wizard .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-wizard .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-wizard .Button--circular{border-radius:50%}.theme-wizard .Button--compact{padding:0 .25em;line-height:1.333em}.theme-wizard .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#1596b6;color:#fff}.theme-wizard .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--default:hover,.theme-wizard .Button--color--default:focus{background-color:#30bde0;color:#fff}.theme-wizard .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-wizard .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--caution:hover,.theme-wizard .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-wizard .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#b30707;color:#fff}.theme-wizard .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--danger:hover,.theme-wizard .Button--color--danger:focus{background-color:#e11b1b;color:#fff}.theme-wizard .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#213e4e;color:#fff;background-color:rgba(33,62,78,0);color:rgba(255,255,255,.5)}.theme-wizard .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--color--transparent:hover,.theme-wizard .Button--color--transparent:focus{background-color:#395b6d;color:#fff}.theme-wizard .Button--disabled{background-color:#02426d !important}.theme-wizard .Button--selected{transition:color 50ms,background-color 50ms;background-color:#465899;color:#fff}.theme-wizard .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-wizard .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-wizard .Button--selected:hover,.theme-wizard .Button--selected:focus{background-color:#6e7eba;color:#fff}.theme-wizard .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-wizard .Input--fluid{display:block;width:auto}.theme-wizard .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-wizard .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-wizard .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-wizard .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-wizard .NanoMap__container{overflow:hiddden;width:100%;z-index:1}.theme-wizard .NanoMap__marker{z-index:10;padding:0px;margin:0px}.theme-wizard .NanoMap__zoomer{z-index:20;background-color:rgba(0,0,0,.33);position:absolute;top:30px;left:0;padding:.5rem;width:30%}.theme-wizard .NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#fff;background-color:#a82d55;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.theme-wizard .NoticeBox--type--info{color:#fff;background-color:#235982}.theme-wizard .NoticeBox--type--success{color:#fff;background-color:#1e662f}.theme-wizard .NoticeBox--type--warning{color:#fff;background-color:#a95219}.theme-wizard .NoticeBox--type--danger{color:#fff;background-color:#8f2828}.theme-wizard .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-wizard .Input--fluid{display:block;width:auto}.theme-wizard .Input__baseline{display:inline-block;color:rgba(0,0,0,0)}.theme-wizard .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:rgba(0,0,0,0);color:#fff;color:inherit}.theme-wizard .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-wizard .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-wizard .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #404b6e;border:.0833333333em solid rgba(64,75,110,.75);border-radius:2px;color:#404b6e;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-wizard .NumberInput--fluid{display:block}.theme-wizard .NumberInput__content{margin-left:.5em}.theme-wizard .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-wizard .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #404b6e;background-color:#404b6e}.theme-wizard .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.theme-wizard .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-radius:2px;background-color:rgba(0,0,0,.5);transition:border-color 900ms ease-out}.theme-wizard .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-wizard .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-wizard .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-wizard .ProgressBar--color--default{border:.0833333333em solid #12809b}.theme-wizard .ProgressBar--color--default .ProgressBar__fill{background-color:#12809b}.theme-wizard .Section{position:relative;margin-bottom:.5em;background-color:#162a34;background-color:rgba(0,0,0,.33);box-sizing:border-box}.theme-wizard .Section:last-child{margin-bottom:0}.theme-wizard .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #1596b6}.theme-wizard .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.theme-wizard .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-wizard .Section__rest{position:relative}.theme-wizard .Section__content{padding:.66em .5em}.theme-wizard .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-wizard .Section--fill{display:flex;flex-direction:column;height:100%}.theme-wizard .Section--fill>.Section__rest{flex-grow:1}.theme-wizard .Section--fill>.Section__rest>.Section__content{height:100%}.theme-wizard .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-wizard .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-wizard .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-wizard .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-wizard .Section--scrollable>.Section__rest>.Section__content{overflow-y:auto;overflow-x:hidden}.theme-wizard .Section .Section{background-color:rgba(0,0,0,0);margin-left:-0.5em;margin-right:-0.5em}.theme-wizard .Section .Section:first-child{margin-top:-0.5em}.theme-wizard .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-wizard .Section .Section .Section .Section__titleText{font-size:1em}.theme-wizard .Section--flex{display:flex;flex-flow:column}.theme-wizard .Section--flex .Section__content{overflow:auto;flex-grow:1}.theme-wizard .Section__content--noTopPadding{padding-top:0}.theme-wizard .Section__content--stretchContents{height:calc(100% - 3rem)}.theme-wizard .Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#2da848;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:2px;max-width:20.8333333333em}.theme-wizard .Layout,.theme-wizard .Layout *{scrollbar-base-color:#192f3b;scrollbar-face-color:#2d546a;scrollbar-3dlight-color:#213e4e;scrollbar-highlight-color:#213e4e;scrollbar-track-color:#192f3b;scrollbar-arrow-color:#73a7c4;scrollbar-shadow-color:#2d546a}.theme-wizard .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-wizard .Layout__content--scrollable{overflow-y:auto}.theme-wizard .Layout__content--flexRow{display:flex;flex-flow:row}.theme-wizard .Layout__content--flexColumn{display:flex;flex-flow:column}.theme-wizard .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#213e4e;background-image:linear-gradient(to bottom, #2a4f64 0%, #182d38 100%)}.theme-wizard .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-wizard .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-wizard .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-wizard .Window__contentPadding:after{height:0}.theme-wizard .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-wizard .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(57,91,109,.25);pointer-events:none}.theme-wizard .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-wizard .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-wizard .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-wizard .TitleBar{background-color:#1b9e26;border-bottom:1px solid #161616;box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-wizard .TitleBar__clickable{color:rgba(255,255,255,.5);background-color:#1b9e26;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-wizard .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-wizard .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(255,255,255,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-wizard .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-wizard .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-wizard .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-wizard .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-wizard .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-wizard .Layout__content{background-image:url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJtZXRlb3IiIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1tZXRlb3IgZmEtdy0xNiIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBvcGFjaXR5PSIuMzMiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTUxMS4zMjgsMjAuODAyN2MtMTEuNjA3NTksMzguNzAyNjQtMzQuMzA3MjQsMTExLjcwMTczLTYxLjMwMzExLDE4Ny43MDA3Nyw2Ljk5ODkzLDIuMDkzNzIsMTMuNDA0Miw0LDE4LjYwNjUzLDUuNTkzNjhhMTYuMDYxNTgsMTYuMDYxNTgsMCwwLDEsOS40OTg1NCwyMi45MDZjLTIyLjEwNiw0Mi4yOTYzNS04Mi42OTA0NywxNTIuNzk1LTE0Mi40NzgxOSwyMTQuNDAzNTYtLjk5OTg0LDEuMDkzNzMtMS45OTk2OSwyLjUtMi45OTk1NCwzLjQ5OTk1QTE5NC44MzA0NiwxOTQuODMwNDYsMCwxLDEsNTcuMDg1LDE3OS40MTAwOWMuOTk5ODUtMSwyLjQwNTg4LTIsMy40OTk0Ny0zLDYxLjU5OTk0LTU5LjkwNTQ5LDE3MS45NzM2Ny0xMjAuNDA0NzMsMjE0LjM3MzQzLTE0Mi40OTgyYTE2LjA1OCwxNi4wNTgsMCwwLDEsMjIuOTAyNzQsOS40OTk4OGMxLjU5MzUxLDUuMDkzNjgsMy40OTk0NywxMS41OTM2LDUuNTkyOSwxOC41OTM1MUMzNzkuMzQ4MTgsMzUuMDA1NjUsNDUyLjQzMDc0LDEyLjMwMjgxLDQ5MS4xMjc5NC43MDkyMUExNi4xODMyNSwxNi4xODMyNSwwLDAsMSw1MTEuMzI4LDIwLjgwMjdaTTMxOS45NTEsMzIwLjAwMjA3QTEyNy45ODA0MSwxMjcuOTgwNDEsMCwxLDAsMTkxLjk3MDYxLDQ0OC4wMDA0NiwxMjcuOTc1NzMsMTI3Ljk3NTczLDAsMCwwLDMxOS45NTEsMzIwLjAwMjA3Wm0tMTI3Ljk4MDQxLTMxLjk5OTZhMzEuOTk1MSwzMS45OTUxLDAsMSwxLTMxLjk5NTEtMzEuOTk5NkEzMS45NTksMzEuOTU5LDAsMCwxLDE5MS45NzA2MSwyODguMDAyNDdabTMxLjk5NTEsNzkuOTk5YTE1Ljk5NzU1LDE1Ljk5NzU1LDAsMSwxLTE1Ljk5NzU1LTE1Ljk5OThBMTYuMDQ5NzUsMTYuMDQ5NzUsMCwwLDEsMjIzLjk2NTcxLDM2OC4wMDE0N1oiPjwvcGF0aD48L3N2Zz4KPCEtLSBUaGlzIHdvcmsgaXMgbGljZW5zZWQgdW5kZXIgYSBDcmVhdGl2ZSBDb21tb25zIEF0dHJpYnV0aW9uLVNoYXJlQWxpa2UgNC4wIEludGVybmF0aW9uYWwgTGljZW5zZS4gLS0+CjwhLS0gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvNC4wLyAtLT4=)}
.theme-abstract .TitleBar__statusIcon{display:none}.theme-abstract .Layout__content{background-image:none}.theme-abstract .TitleBar__title{left:12px}
diff --git a/tgui/public/tgui.bundle.js b/tgui/public/tgui.bundle.js
index 830b41e8e6..ec682f8275 100644
--- a/tgui/public/tgui.bundle.js
+++ b/tgui/public/tgui.bundle.js
@@ -1 +1 @@
-!function(){var e={21926:function(e,t,n){"use strict";t.__esModule=!0,t.createPopper=void 0,t.popperGenerator=h;var o=m(n(48764)),r=m(n(68349)),a=m(n(3671)),i=m(n(55490)),c=(m(n(40755)),m(n(69282))),l=m(n(27672)),d=(m(n(30752)),m(n(12459)),m(n(27629)),m(n(54220))),s=m(n(75949));t.detectOverflow=s["default"];var u=n(79388);n(15954);function m(e){return e&&e.__esModule?e:{"default":e}}var p={placement:"bottom",modifiers:[],strategy:"absolute"};function f(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(a=(0,r.round)(n.width)/l||1),c>0&&(i=(0,r.round)(n.height)/c||1)}return{width:n.width/a,height:n.height/i,top:n.top/i,right:n.right/a,bottom:n.bottom/i,left:n.left/a,x:n.left/a,y:n.top/i}};var o=n(79388),r=n(36291)},65647:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t,n){var o="clippingParents"===t?function(e){var t=(0,i["default"])((0,m["default"])(e)),n=["absolute","fixed"].indexOf((0,d["default"])(e).position)>=0&&(0,s.isHTMLElement)(e)?(0,c["default"])(e):e;if(!(0,s.isElement)(n))return[];return t.filter((function(e){return(0,s.isElement)(e)&&(0,p["default"])(e,n)&&"body"!==(0,f["default"])(e)}))}(e):[].concat(t),r=[].concat(o,[n]),a=r[0],l=r.reduce((function(t,n){var o=N(e,n);return t.top=(0,C.max)(o.top,t.top),t.right=(0,C.min)(o.right,t.right),t.bottom=(0,C.min)(o.bottom,t.bottom),t.left=(0,C.max)(o.left,t.left),t}),N(e,a));return l.width=l.right-l.left,l.height=l.bottom-l.top,l.x=l.left,l.y=l.top,l};var o=n(15954),r=b(n(8204)),a=b(n(40015)),i=b(n(3671)),c=b(n(55490)),l=b(n(25890)),d=b(n(40755)),s=n(79388),u=b(n(11100)),m=b(n(95136)),p=b(n(62215)),f=b(n(38569)),h=b(n(73060)),C=n(36291);function b(e){return e&&e.__esModule?e:{"default":e}}function N(e,t){return t===o.viewport?(0,h["default"])((0,r["default"])(e)):(0,s.isElement)(t)?function(e){var t=(0,u["default"])(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(t):(0,h["default"])((0,a["default"])((0,l["default"])(e)))}},48764:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t,n){void 0===n&&(n=!1);var u=(0,i.isHTMLElement)(t),m=(0,i.isHTMLElement)(t)&&function(e){var t=e.getBoundingClientRect(),n=(0,s.round)(t.width)/e.offsetWidth||1,o=(0,s.round)(t.height)/e.offsetHeight||1;return 1!==n||1!==o}(t),p=(0,l["default"])(t),f=(0,o["default"])(e,m),h={scrollLeft:0,scrollTop:0},C={x:0,y:0};(u||!u&&!n)&&(("body"!==(0,a["default"])(t)||(0,d["default"])(p))&&(h=(0,r["default"])(t)),(0,i.isHTMLElement)(t)?((C=(0,o["default"])(t,!0)).x+=t.clientLeft,C.y+=t.clientTop):p&&(C.x=(0,c["default"])(p)));return{x:f.left+h.scrollLeft-C.x,y:f.top+h.scrollTop-C.y,width:f.width,height:f.height}};var o=u(n(11100)),r=u(n(3514)),a=u(n(38569)),i=n(79388),c=u(n(36056)),l=u(n(25890)),d=u(n(57360)),s=n(36291);function u(e){return e&&e.__esModule?e:{"default":e}}},40755:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(0,r["default"])(e).getComputedStyle(e)};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},25890:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(((0,o.isElement)(e)?e.ownerDocument:e.document)||window.document).documentElement};var o=n(79388)},40015:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t,n=(0,o["default"])(e),l=(0,i["default"])(e),d=null==(t=e.ownerDocument)?void 0:t.body,s=(0,c.max)(n.scrollWidth,n.clientWidth,d?d.scrollWidth:0,d?d.clientWidth:0),u=(0,c.max)(n.scrollHeight,n.clientHeight,d?d.scrollHeight:0,d?d.clientHeight:0),m=-l.scrollLeft+(0,a["default"])(e),p=-l.scrollTop;"rtl"===(0,r["default"])(d||n).direction&&(m+=(0,c.max)(n.clientWidth,d?d.clientWidth:0)-s);return{width:s,height:u,x:m,y:p}};var o=l(n(25890)),r=l(n(40755)),a=l(n(36056)),i=l(n(69211)),c=n(36291);function l(e){return e&&e.__esModule?e:{"default":e}}},41829:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}},68349:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=e.offsetWidth,o=e.offsetHeight;Math.abs(t.width-n)<=1&&(n=t.width);Math.abs(t.height-o)<=1&&(o=t.height);return{x:e.offsetLeft,y:e.offsetTop,width:n,height:o}};var o,r=(o=n(11100))&&o.__esModule?o:{"default":o}},38569:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e?(e.nodeName||"").toLowerCase():null}},3514:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return e!==(0,r["default"])(e)&&(0,a.isHTMLElement)(e)?(0,i["default"])(e):(0,o["default"])(e)};var o=c(n(69211)),r=c(n(96904)),a=n(79388),i=c(n(41829));function c(e){return e&&e.__esModule?e:{"default":e}}},55490:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,o["default"])(e),n=s(e);for(;n&&(0,c["default"])(n)&&"static"===(0,a["default"])(n).position;)n=s(n);if(n&&("html"===(0,r["default"])(n)||"body"===(0,r["default"])(n)&&"static"===(0,a["default"])(n).position))return t;return n||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&(0,i.isHTMLElement)(e)){if("fixed"===(0,a["default"])(e).position)return null}var n=(0,l["default"])(e);(0,i.isShadowRoot)(n)&&(n=n.host);for(;(0,i.isHTMLElement)(n)&&["html","body"].indexOf((0,r["default"])(n))<0;){var o=(0,a["default"])(n);if("none"!==o.transform||"none"!==o.perspective||"paint"===o.contain||-1!==["transform","perspective"].indexOf(o.willChange)||t&&"filter"===o.willChange||t&&o.filter&&"none"!==o.filter)return n;n=n.parentNode}return null}(e)||t};var o=d(n(96904)),r=d(n(38569)),a=d(n(40755)),i=n(79388),c=d(n(94437)),l=d(n(95136));function d(e){return e&&e.__esModule?e:{"default":e}}function s(e){return(0,i.isHTMLElement)(e)&&"fixed"!==(0,a["default"])(e).position?e.offsetParent:null}},95136:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){if("html"===(0,o["default"])(e))return e;return e.assignedSlot||e.parentNode||((0,a.isShadowRoot)(e)?e.host:null)||(0,r["default"])(e)};var o=i(n(38569)),r=i(n(25890)),a=n(79388);function i(e){return e&&e.__esModule?e:{"default":e}}},43367:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function l(e){if(["html","body","#document"].indexOf((0,a["default"])(e))>=0)return e.ownerDocument.body;if((0,i.isHTMLElement)(e)&&(0,r["default"])(e))return e;return l((0,o["default"])(e))};var o=c(n(95136)),r=c(n(57360)),a=c(n(38569)),i=n(79388);function c(e){return e&&e.__esModule?e:{"default":e}}},8204:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,o["default"])(e),n=(0,r["default"])(e),i=t.visualViewport,c=n.clientWidth,l=n.clientHeight,d=0,s=0;i&&(c=i.width,l=i.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(d=i.offsetLeft,s=i.offsetTop));return{width:c,height:l,x:d+(0,a["default"])(e),y:s}};var o=i(n(96904)),r=i(n(25890)),a=i(n(36056));function i(e){return e&&e.__esModule?e:{"default":e}}},96904:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}},69211:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=t.pageXOffset,o=t.pageYOffset;return{scrollLeft:n,scrollTop:o}};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},36056:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(0,o["default"])((0,r["default"])(e)).left+(0,a["default"])(e).scrollLeft};var o=i(n(11100)),r=i(n(25890)),a=i(n(69211));function i(e){return e&&e.__esModule?e:{"default":e}}},79388:function(e,t,n){"use strict";t.__esModule=!0,t.isElement=function(e){var t=(0,r["default"])(e).Element;return e instanceof t||e instanceof Element},t.isHTMLElement=function(e){var t=(0,r["default"])(e).HTMLElement;return e instanceof t||e instanceof HTMLElement},t.isShadowRoot=function(e){if("undefined"==typeof ShadowRoot)return!1;var t=(0,r["default"])(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},57360:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=t.overflow,o=t.overflowX,a=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+a+o)};var o,r=(o=n(40755))&&o.__esModule?o:{"default":o}},94437:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return["table","td","th"].indexOf((0,r["default"])(e))>=0};var o,r=(o=n(38569))&&o.__esModule?o:{"default":o}},3671:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function l(e,t){var n;void 0===t&&(t=[]);var c=(0,o["default"])(e),d=c===(null==(n=e.ownerDocument)?void 0:n.body),s=(0,a["default"])(c),u=d?[s].concat(s.visualViewport||[],(0,i["default"])(c)?c:[]):c,m=t.concat(u);return d?m:m.concat(l((0,r["default"])(u)))};var o=c(n(43367)),r=c(n(95136)),a=c(n(96904)),i=c(n(57360));function c(e){return e&&e.__esModule?e:{"default":e}}},15954:function(e,t){"use strict";t.__esModule=!0,t.write=t.viewport=t.variationPlacements=t.top=t.start=t.right=t.reference=t.read=t.popper=t.placements=t.modifierPhases=t.main=t.left=t.end=t.clippingParents=t.bottom=t.beforeWrite=t.beforeRead=t.beforeMain=t.basePlacements=t.auto=t.afterWrite=t.afterRead=t.afterMain=void 0;t.top="top";var n="bottom";t.bottom=n;var o="right";t.right=o;var r="left";t.left=r;var a="auto";t.auto=a;var i=["top",n,o,r];t.basePlacements=i;var c="start";t.start=c;var l="end";t.end=l;t.clippingParents="clippingParents";t.viewport="viewport";t.popper="popper";t.reference="reference";var d=i.reduce((function(e,t){return e.concat([t+"-"+c,t+"-"+l])}),[]);t.variationPlacements=d;var s=[].concat(i,[a]).reduce((function(e,t){return e.concat([t,t+"-"+c,t+"-"+l])}),[]);t.placements=s;var u="beforeRead";t.beforeRead=u;var m="read";t.read=m;var p="afterRead";t.afterRead=p;var f="beforeMain";t.beforeMain=f;var h="main";t.main=h;var C="afterMain";t.afterMain=C;var b="beforeWrite";t.beforeWrite=b;var N="write";t.write=N;var g="afterWrite";t.afterWrite=g;var V=[u,m,p,f,h,C,b,N,g];t.modifierPhases=V},37809:function(e,t,n){"use strict";t.__esModule=!0;var o={popperGenerator:!0,detectOverflow:!0,createPopperBase:!0,createPopper:!0,createPopperLite:!0};t.popperGenerator=t.detectOverflow=t.createPopperLite=t.createPopperBase=t.createPopper=void 0;var r=n(15954);Object.keys(r).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===r[e]||(t[e]=r[e]))}));var a=n(4207);Object.keys(a).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===a[e]||(t[e]=a[e]))}));var i=n(21926);t.popperGenerator=i.popperGenerator,t.detectOverflow=i.detectOverflow,t.createPopperBase=i.createPopper;var c=n(17827);t.createPopper=c.createPopper;var l=n(47952);t.createPopperLite=l.createPopper},89290:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(38569))&&o.__esModule?o:{"default":o},a=n(79388);var i={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},o=t.attributes[e]||{},i=t.elements[e];(0,a.isHTMLElement)(i)&&(0,r["default"])(i)&&(Object.assign(i.style,n),Object.keys(o).forEach((function(e){var t=o[e];!1===t?i.removeAttribute(e):i.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var o=t.elements[e],i=t.attributes[e]||{},c=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});(0,a.isHTMLElement)(o)&&(0,r["default"])(o)&&(Object.assign(o.style,c),Object.keys(i).forEach((function(e){o.removeAttribute(e)})))}))}},requires:["computeStyles"]};t["default"]=i},71313:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=m(n(27629)),r=m(n(68349)),a=m(n(62215)),i=m(n(55490)),c=m(n(78772)),l=n(54444),d=m(n(11277)),s=m(n(45674)),u=n(15954);n(79388);function m(e){return e&&e.__esModule?e:{"default":e}}var p=function(e,t){return e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,(0,d["default"])("number"!=typeof e?e:(0,s["default"])(e,u.basePlacements))};var f={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,a=e.name,d=e.options,s=n.elements.arrow,m=n.modifiersData.popperOffsets,f=(0,o["default"])(n.placement),h=(0,c["default"])(f),C=[u.left,u.right].indexOf(f)>=0?"height":"width";if(s&&m){var b=p(d.padding,n),N=(0,r["default"])(s),g="y"===h?u.top:u.left,V="y"===h?u.bottom:u.right,v=n.rects.reference[C]+n.rects.reference[h]-m[h]-n.rects.popper[C],_=m[h]-n.rects.reference[h],y=(0,i["default"])(s),k=y?"y"===h?y.clientHeight||0:y.clientWidth||0:0,x=v/2-_/2,w=b[g],B=k-N[C]-b[V],L=k/2-N[C]/2+x,S=(0,l.within)(w,L,B),I=h;n.modifiersData[a]=((t={})[I]=S,t.centerOffset=S-L,t)}},effect:function(e){var t=e.state,n=e.options.element,o=void 0===n?"[data-popper-arrow]":n;null!=o&&("string"!=typeof o||(o=t.elements.popper.querySelector(o)))&&(0,a["default"])(t.elements.popper,o)&&(t.elements.arrow=o)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};t["default"]=f},54680:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0,t.mapToStyles=p;var o=n(15954),r=u(n(55490)),a=u(n(96904)),i=u(n(25890)),c=u(n(40755)),l=u(n(27629)),d=u(n(31686)),s=n(36291);function u(e){return e&&e.__esModule?e:{"default":e}}var m={top:"auto",right:"auto",bottom:"auto",left:"auto"};function p(e){var t,n=e.popper,l=e.popperRect,d=e.placement,u=e.variation,p=e.offsets,f=e.position,h=e.gpuAcceleration,C=e.adaptive,b=e.roundOffsets,N=e.isFixed,g=p.x,V=void 0===g?0:g,v=p.y,_=void 0===v?0:v,y="function"==typeof b?b({x:V,y:_}):{x:V,y:_};V=y.x,_=y.y;var k=p.hasOwnProperty("x"),x=p.hasOwnProperty("y"),w=o.left,B=o.top,L=window;if(C){var S=(0,r["default"])(n),I="clientHeight",T="clientWidth";if(S===(0,a["default"])(n)&&(S=(0,i["default"])(n),"static"!==(0,c["default"])(S).position&&"absolute"===f&&(I="scrollHeight",T="scrollWidth")),d===o.top||(d===o.left||d===o.right)&&u===o.end)B=o.bottom,_-=(N&&S===L&&L.visualViewport?L.visualViewport.height:S[I])-l.height,_*=h?1:-1;if(d===o.left||(d===o.top||d===o.bottom)&&u===o.end)w=o.right,V-=(N&&S===L&&L.visualViewport?L.visualViewport.width:S[T])-l.width,V*=h?1:-1}var A,M=Object.assign({position:f},C&&m),E=!0===b?function(e){var t=e.x,n=e.y,o=window.devicePixelRatio||1;return{x:(0,s.round)(t*o)/o||0,y:(0,s.round)(n*o)/o||0}}({x:V,y:_}):{x:V,y:_};return V=E.x,_=E.y,h?Object.assign({},M,((A={})[B]=x?"0":"",A[w]=k?"0":"",A.transform=(L.devicePixelRatio||1)<=1?"translate("+V+"px, "+_+"px)":"translate3d("+V+"px, "+_+"px, 0)",A)):Object.assign({},M,((t={})[B]=x?_+"px":"",t[w]=k?V+"px":"",t.transform="",t))}var f={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,o=n.gpuAcceleration,r=void 0===o||o,a=n.adaptive,i=void 0===a||a,c=n.roundOffsets,s=void 0===c||c,u={placement:(0,l["default"])(t.placement),variation:(0,d["default"])(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,p(Object.assign({},u,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:i,roundOffsets:s})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,p(Object.assign({},u,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:s})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}};t["default"]=f},53887:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(96904))&&o.__esModule?o:{"default":o};var a={passive:!0};var i={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,o=e.options,i=o.scroll,c=void 0===i||i,l=o.resize,d=void 0===l||l,s=(0,r["default"])(t.elements.popper),u=[].concat(t.scrollParents.reference,t.scrollParents.popper);return c&&u.forEach((function(e){e.addEventListener("scroll",n.update,a)})),d&&s.addEventListener("resize",n.update,a),function(){c&&u.forEach((function(e){e.removeEventListener("scroll",n.update,a)})),d&&s.removeEventListener("resize",n.update,a)}},data:{}};t["default"]=i},82566:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=s(n(31477)),r=s(n(27629)),a=s(n(44214)),i=s(n(75949)),c=s(n(2894)),l=n(15954),d=s(n(31686));function s(e){return e&&e.__esModule?e:{"default":e}}var u={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,s=e.name;if(!t.modifiersData[s]._skip){for(var u=n.mainAxis,m=void 0===u||u,p=n.altAxis,f=void 0===p||p,h=n.fallbackPlacements,C=n.padding,b=n.boundary,N=n.rootBoundary,g=n.altBoundary,V=n.flipVariations,v=void 0===V||V,_=n.allowedAutoPlacements,y=t.options.placement,k=(0,r["default"])(y),x=h||(k===y||!v?[(0,o["default"])(y)]:function(e){if((0,r["default"])(e)===l.auto)return[];var t=(0,o["default"])(e);return[(0,a["default"])(e),t,(0,a["default"])(t)]}(y)),w=[y].concat(x).reduce((function(e,n){return e.concat((0,r["default"])(n)===l.auto?(0,c["default"])(t,{placement:n,boundary:b,rootBoundary:N,padding:C,flipVariations:v,allowedAutoPlacements:_}):n)}),[]),B=t.rects.reference,L=t.rects.popper,S=new Map,I=!0,T=w[0],A=0;A=0,F=O?"width":"height",D=(0,i["default"])(t,{placement:M,boundary:b,rootBoundary:N,altBoundary:g,padding:C}),R=O?P?l.right:l.left:P?l.bottom:l.top;B[F]>L[F]&&(R=(0,o["default"])(R));var j=(0,o["default"])(R),W=[];if(m&&W.push(D[E]<=0),f&&W.push(D[R]<=0,D[j]<=0),W.every((function(e){return e}))){T=M,I=!1;break}S.set(M,W)}if(I)for(var z=function(e){var t=w.find((function(t){var n=S.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return T=t,"break"},U=v?3:1;U>0;U--){if("break"===z(U))break}t.placement!==T&&(t.modifiersData[s]._skip=!0,t.placement=T,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};t["default"]=u},27353:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=n(15954),a=(o=n(75949))&&o.__esModule?o:{"default":o};function i(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function c(e){return[r.top,r.right,r.bottom,r.left].some((function(t){return e[t]>=0}))}var l={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,o=t.rects.reference,r=t.rects.popper,l=t.modifiersData.preventOverflow,d=(0,a["default"])(t,{elementContext:"reference"}),s=(0,a["default"])(t,{altBoundary:!0}),u=i(d,o),m=i(s,r,l),p=c(u),f=c(m);t.modifiersData[n]={referenceClippingOffsets:u,popperEscapeOffsets:m,isReferenceHidden:p,hasPopperEscaped:f},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":f})}};t["default"]=l},4207:function(e,t,n){"use strict";t.__esModule=!0,t.preventOverflow=t.popperOffsets=t.offset=t.hide=t.flip=t.eventListeners=t.computeStyles=t.arrow=t.applyStyles=void 0;var o=m(n(89290));t.applyStyles=o["default"];var r=m(n(71313));t.arrow=r["default"];var a=m(n(54680));t.computeStyles=a["default"];var i=m(n(53887));t.eventListeners=i["default"];var c=m(n(82566));t.flip=c["default"];var l=m(n(27353));t.hide=l["default"];var d=m(n(99873));t.offset=d["default"];var s=m(n(83662));t.popperOffsets=s["default"];var u=m(n(21031));function m(e){return e&&e.__esModule?e:{"default":e}}t.preventOverflow=u["default"]},99873:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0,t.distanceAndSkiddingToXY=i;var o,r=(o=n(27629))&&o.__esModule?o:{"default":o},a=n(15954);function i(e,t,n){var o=(0,r["default"])(e),i=[a.left,a.top].indexOf(o)>=0?-1:1,c="function"==typeof n?n(Object.assign({},t,{placement:e})):n,l=c[0],d=c[1];return l=l||0,d=(d||0)*i,[a.left,a.right].indexOf(o)>=0?{x:d,y:l}:{x:l,y:d}}var c={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,o=e.name,r=n.offset,c=void 0===r?[0,0]:r,l=a.placements.reduce((function(e,n){return e[n]=i(n,t.rects,c),e}),{}),d=l[t.placement],s=d.x,u=d.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=s,t.modifiersData.popperOffsets.y+=u),t.modifiersData[o]=l}};t["default"]=c},83662:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(2002))&&o.__esModule?o:{"default":o};var a={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=(0,r["default"])({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}};t["default"]=a},21031:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=n(15954),r=f(n(27629)),a=f(n(78772)),i=f(n(16696)),c=n(54444),l=f(n(68349)),d=f(n(55490)),s=f(n(75949)),u=f(n(31686)),m=f(n(22710)),p=n(36291);function f(e){return e&&e.__esModule?e:{"default":e}}var h={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,f=e.name,h=n.mainAxis,C=void 0===h||h,b=n.altAxis,N=void 0!==b&&b,g=n.boundary,V=n.rootBoundary,v=n.altBoundary,_=n.padding,y=n.tether,k=void 0===y||y,x=n.tetherOffset,w=void 0===x?0:x,B=(0,s["default"])(t,{boundary:g,rootBoundary:V,padding:_,altBoundary:v}),L=(0,r["default"])(t.placement),S=(0,u["default"])(t.placement),I=!S,T=(0,a["default"])(L),A=(0,i["default"])(T),M=t.modifiersData.popperOffsets,E=t.rects.reference,P=t.rects.popper,O="function"==typeof w?w(Object.assign({},t.rects,{placement:t.placement})):w,F="number"==typeof O?{mainAxis:O,altAxis:O}:Object.assign({mainAxis:0,altAxis:0},O),D=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,R={x:0,y:0};if(M){if(C){var j,W="y"===T?o.top:o.left,z="y"===T?o.bottom:o.right,U="y"===T?"height":"width",H=M[T],q=H+B[W],G=H-B[z],K=k?-P[U]/2:0,Y=S===o.start?E[U]:P[U],$=S===o.start?-P[U]:-E[U],X=t.elements.arrow,Q=k&&X?(0,l["default"])(X):{width:0,height:0},J=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:(0,m["default"])(),Z=J[W],ee=J[z],te=(0,c.within)(0,E[U],Q[U]),ne=I?E[U]/2-K-te-Z-F.mainAxis:Y-te-Z-F.mainAxis,oe=I?-E[U]/2+K+te+ee+F.mainAxis:$+te+ee+F.mainAxis,re=t.elements.arrow&&(0,d["default"])(t.elements.arrow),ae=re?"y"===T?re.clientTop||0:re.clientLeft||0:0,ie=null!=(j=null==D?void 0:D[T])?j:0,ce=H+ne-ie-ae,le=H+oe-ie,de=(0,c.within)(k?(0,p.min)(q,ce):q,H,k?(0,p.max)(G,le):G);M[T]=de,R[T]=de-H}if(N){var se,ue="x"===T?o.top:o.left,me="x"===T?o.bottom:o.right,pe=M[A],fe="y"===A?"height":"width",he=pe+B[ue],Ce=pe-B[me],be=-1!==[o.top,o.left].indexOf(L),Ne=null!=(se=null==D?void 0:D[A])?se:0,ge=be?he:pe-E[fe]-P[fe]-Ne+F.altAxis,Ve=be?pe+E[fe]+P[fe]-Ne-F.altAxis:Ce,ve=k&&be?(0,c.withinMaxClamp)(ge,pe,Ve):(0,c.within)(k?ge:he,pe,k?Ve:Ce);M[A]=ve,R[A]=ve-pe}t.modifiersData[f]=R}},requiresIfExists:["offset"]};t["default"]=h},47952:function(e,t,n){"use strict";t.__esModule=!0,t.defaultModifiers=t.createPopper=void 0;var o=n(21926);t.popperGenerator=o.popperGenerator,t.detectOverflow=o.detectOverflow;var r=l(n(53887)),a=l(n(83662)),i=l(n(54680)),c=l(n(89290));function l(e){return e&&e.__esModule?e:{"default":e}}var d=[r["default"],a["default"],i["default"],c["default"]];t.defaultModifiers=d;var s=(0,o.popperGenerator)({defaultModifiers:d});t.createPopper=s},17827:function(e,t,n){"use strict";t.__esModule=!0;var o={createPopper:!0,createPopperLite:!0,defaultModifiers:!0,popperGenerator:!0,detectOverflow:!0};t.defaultModifiers=t.createPopperLite=t.createPopper=void 0;var r=n(21926);t.popperGenerator=r.popperGenerator,t.detectOverflow=r.detectOverflow;var a=C(n(53887)),i=C(n(83662)),c=C(n(54680)),l=C(n(89290)),d=C(n(99873)),s=C(n(82566)),u=C(n(21031)),m=C(n(71313)),p=C(n(27353)),f=n(47952);t.createPopperLite=f.createPopper;var h=n(4207);function C(e){return e&&e.__esModule?e:{"default":e}}Object.keys(h).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===h[e]||(t[e]=h[e]))}));var b=[a["default"],i["default"],c["default"],l["default"],d["default"],s["default"],u["default"],m["default"],p["default"]];t.defaultModifiers=b;var N=(0,r.popperGenerator)({defaultModifiers:b});t.createPopperLite=t.createPopper=N},2894:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t){void 0===t&&(t={});var n=t,c=n.placement,l=n.boundary,d=n.rootBoundary,s=n.padding,u=n.flipVariations,m=n.allowedAutoPlacements,p=void 0===m?r.placements:m,f=(0,o["default"])(c),h=f?u?r.variationPlacements:r.variationPlacements.filter((function(e){return(0,o["default"])(e)===f})):r.basePlacements,C=h.filter((function(e){return p.indexOf(e)>=0}));0===C.length&&(C=h);var b=C.reduce((function(t,n){return t[n]=(0,a["default"])(e,{placement:n,boundary:l,rootBoundary:d,padding:s})[(0,i["default"])(n)],t}),{});return Object.keys(b).sort((function(e,t){return b[e]-b[t]}))};var o=c(n(31686)),r=n(15954),a=c(n(75949)),i=c(n(27629));function c(e){return e&&e.__esModule?e:{"default":e}}},2002:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t,n=e.reference,c=e.element,l=e.placement,d=l?(0,o["default"])(l):null,s=l?(0,r["default"])(l):null,u=n.x+n.width/2-c.width/2,m=n.y+n.height/2-c.height/2;switch(d){case i.top:t={x:u,y:n.y-c.height};break;case i.bottom:t={x:u,y:n.y+n.height};break;case i.right:t={x:n.x+n.width,y:m};break;case i.left:t={x:n.x-c.width,y:m};break;default:t={x:n.x,y:n.y}}var p=d?(0,a["default"])(d):null;if(null!=p){var f="y"===p?"height":"width";switch(s){case i.start:t[p]=t[p]-(n[f]/2-c[f]/2);break;case i.end:t[p]=t[p]+(n[f]/2-c[f]/2)}}return t};var o=c(n(27629)),r=c(n(31686)),a=c(n(78772)),i=n(15954);function c(e){return e&&e.__esModule?e:{"default":e}}},27672:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=undefined,n(e())}))}))),t}}},75949:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t){void 0===t&&(t={});var n=t,m=n.placement,p=void 0===m?e.placement:m,f=n.boundary,h=void 0===f?l.clippingParents:f,C=n.rootBoundary,b=void 0===C?l.viewport:C,N=n.elementContext,g=void 0===N?l.popper:N,V=n.altBoundary,v=void 0!==V&&V,_=n.padding,y=void 0===_?0:_,k=(0,s["default"])("number"!=typeof y?y:(0,u["default"])(y,l.basePlacements)),x=g===l.popper?l.reference:l.popper,w=e.rects.popper,B=e.elements[v?x:g],L=(0,o["default"])((0,d.isElement)(B)?B:B.contextElement||(0,r["default"])(e.elements.popper),h,b),S=(0,a["default"])(e.elements.reference),I=(0,i["default"])({reference:S,element:w,strategy:"absolute",placement:p}),T=(0,c["default"])(Object.assign({},w,I)),A=g===l.popper?T:S,M={top:L.top-A.top+k.top,bottom:A.bottom-L.bottom+k.bottom,left:L.left-A.left+k.left,right:A.right-L.right+k.right},E=e.modifiersData.offset;if(g===l.popper&&E){var P=E[p];Object.keys(M).forEach((function(e){var t=[l.right,l.bottom].indexOf(e)>=0?1:-1,n=[l.top,l.bottom].indexOf(e)>=0?"y":"x";M[e]+=P[n]*t}))}return M};var o=m(n(65647)),r=m(n(25890)),a=m(n(11100)),i=m(n(2002)),c=m(n(73060)),l=n(15954),d=n(79388),s=m(n(11277)),u=m(n(45674));function m(e){return e&&e.__esModule?e:{"default":e}}},45674:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}},80885:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o=0?"x":"y"}},31477:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.replace(/left|right|bottom|top/g,(function(e){return n[e]}))};var n={left:"right",right:"left",bottom:"top",top:"bottom"}},44214:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.replace(/start|end/g,(function(e){return n[e]}))};var n={start:"end",end:"start"}},31686:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.split("-")[1]}},36291:function(e,t){"use strict";t.__esModule=!0,t.round=t.min=t.max=void 0;var n=Math.max;t.max=n;var o=Math.min;t.min=o;var r=Math.round;t.round=r},54220:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}},11277:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return Object.assign({},(0,r["default"])(),e)};var o,r=(o=n(22710))&&o.__esModule?o:{"default":o}},69282:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=function(e){var t=new Map,n=new Set,o=[];function r(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var o=t.get(e);o&&r(o)}})),o.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||r(e)})),o}(e);return o.modifierPhases.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])};var o=n(15954)},73060:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}},12459:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e,t){var n=new Set;return e.filter((function(e){var o=t(e);if(!n.has(o))return n.add(o),!0}))}},30752:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){e.forEach((function(t){[].concat(Object.keys(t),a).filter((function(e,t,n){return n.indexOf(e)===t})).forEach((function(n){switch(n){case"name":t.name;break;case"enabled":t.enabled;break;case"phase":r.modifierPhases.indexOf(t.phase);break;case"fn":t.fn;break;case"effect":null!=t.effect&&t.effect;break;case"requires":null!=t.requires&&Array.isArray(t.requires);break;case"requiresIfExists":Array.isArray(t.requiresIfExists)}t.requires&&t.requires.forEach((function(t){e.find((function(e){return e.name===t}))}))}))}))};(o=n(80885))&&o.__esModule;var o,r=n(15954);var a=["name","enabled","phase","fn","effect","requires","options"]},54444:function(e,t,n){"use strict";t.__esModule=!0,t.within=r,t.withinMaxClamp=function(e,t,n){var o=r(e,t,n);return o>n?n:o};var o=n(36291);function r(e,t,n){return(0,o.max)(e,(0,o.min)(t,n))}},7696:function(e,t,n){"use strict";var o=n(45744),r=n(56279),a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not a function")}},99079:function(e,t,n){"use strict";var o=n(49332),r=n(56279),a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not a constructor")}},3760:function(e,t,n){"use strict";var o=n(45744),r=String,a=TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+r(e)+" as a prototype")}},48144:function(e,t,n){"use strict";var o=n(43741),r=n(48525),a=n(92723).f,i=o("unscopables"),c=Array.prototype;c[i]==undefined&&a(c,i,{configurable:!0,value:r(null)}),e.exports=function(e){c[i][e]=!0}},21679:function(e,t,n){"use strict";var o=n(59529).charAt;e.exports=function(e,t,n){return t+(n?o(e,t).length:1)}},41706:function(e,t,n){"use strict";var o=n(76469),r=TypeError;e.exports=function(e,t){if(o(t,e))return e;throw r("Incorrect invocation")}},65522:function(e,t,n){"use strict";var o=n(5484),r=String,a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not an object")}},65167:function(e){"use strict";e.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},26974:function(e,t,n){"use strict";var o=n(39125);e.exports=o((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},92574:function(e,t,n){"use strict";var o,r,a,i=n(65167),c=n(77849),l=n(61770),d=n(45744),s=n(5484),u=n(77807),m=n(10374),p=n(56279),f=n(87229),h=n(73e3),C=n(92723).f,b=n(76469),N=n(56997),g=n(44958),V=n(43741),v=n(8220),_=n(48797),y=_.enforce,k=_.get,x=l.Int8Array,w=x&&x.prototype,B=l.Uint8ClampedArray,L=B&&B.prototype,S=x&&N(x),I=w&&N(w),T=Object.prototype,A=l.TypeError,M=V("toStringTag"),E=v("TYPED_ARRAY_TAG"),P="TypedArrayConstructor",O=i&&!!g&&"Opera"!==m(l.opera),F=!1,D={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},R={BigInt64Array:8,BigUint64Array:8},j=function(e){if(!s(e))return!1;var t=m(e);return"DataView"===t||u(D,t)||u(R,t)},W=function(e){if(!s(e))return!1;var t=m(e);return u(D,t)||u(R,t)};for(o in D)(a=(r=l[o])&&r.prototype)?y(a).TypedArrayConstructor=r:O=!1;for(o in R)(a=(r=l[o])&&r.prototype)&&(y(a).TypedArrayConstructor=r);if((!O||!d(S)||S===Function.prototype)&&(S=function(){throw A("Incorrect invocation")},O))for(o in D)l[o]&&g(l[o],S);if((!O||!I||I===T)&&(I=S.prototype,O))for(o in D)l[o]&&g(l[o].prototype,I);if(O&&N(L)!==I&&g(L,I),c&&!u(I,M))for(o in F=!0,C(I,M,{get:function(){return s(this)?this[E]:undefined}}),D)l[o]&&f(l[o],E,o);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:O,TYPED_ARRAY_TAG:F&&E,aTypedArray:function(e){if(W(e))return e;throw A("Target is not a typed array")},aTypedArrayConstructor:function(e){if(d(e)&&(!g||b(S,e)))return e;throw A(p(e)+" is not a typed array constructor")},exportTypedArrayMethod:function(e,t,n,o){if(c){if(n)for(var r in D){var a=l[r];if(a&&u(a.prototype,e))try{delete a.prototype[e]}catch(i){try{a.prototype[e]=t}catch(d){}}}I[e]&&!n||h(I,e,n?t:O&&w[e]||t,o)}},exportTypedArrayStaticMethod:function(e,t,n){var o,r;if(c){if(g){if(n)for(o in D)if((r=l[o])&&u(r,e))try{delete r[e]}catch(a){}if(S[e]&&!n)return;try{return h(S,e,n?t:O&&S[e]||t)}catch(a){}}for(o in D)!(r=l[o])||r[e]&&!n||h(r,e,t)}},getTypedArrayConstructor:function z(e){var t=N(e);if(s(t)){var n=k(t);return n&&u(n,P)?n.TypedArrayConstructor:z(t)}},isView:j,isTypedArray:W,TypedArray:S,TypedArrayPrototype:I}},10377:function(e,t,n){"use strict";var o=n(61770),r=n(90655),a=n(77849),i=n(65167),c=n(82429),l=n(87229),d=n(60495),s=n(39125),u=n(41706),m=n(94868),p=n(87543),f=n(76124),h=n(29209),C=n(56997),b=n(44958),N=n(94600).f,g=n(92723).f,V=n(8093),v=n(74337),_=n(93182),y=n(48797),k=c.PROPER,x=c.CONFIGURABLE,w=y.get,B=y.set,L="ArrayBuffer",S="DataView",I="Wrong index",T=o.ArrayBuffer,A=T,M=A&&A.prototype,E=o.DataView,P=E&&E.prototype,O=Object.prototype,F=o.Array,D=o.RangeError,R=r(V),j=r([].reverse),W=h.pack,z=h.unpack,U=function(e){return[255&e]},H=function(e){return[255&e,e>>8&255]},q=function(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]},G=function(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]},K=function(e){return W(e,23,4)},Y=function(e){return W(e,52,8)},$=function(e,t){g(e.prototype,t,{get:function(){return w(this)[t]}})},X=function(e,t,n,o){var r=f(n),a=w(e);if(r+t>a.byteLength)throw D(I);var i=w(a.buffer).bytes,c=r+a.byteOffset,l=v(i,c,c+t);return o?l:j(l)},Q=function(e,t,n,o,r,a){var i=f(n),c=w(e);if(i+t>c.byteLength)throw D(I);for(var l=w(c.buffer).bytes,d=i+c.byteOffset,s=o(+r),u=0;ute;)(Z=ee[te++])in A||l(A,Z,T[Z]);M.constructor=A}b&&C(P)!==O&&b(P,O);var ne=new E(new A(2)),oe=r(P.setInt8);ne.setInt8(0,2147483648),ne.setInt8(1,2147483649),!ne.getInt8(0)&&ne.getInt8(1)||d(P,{setInt8:function(e,t){oe(this,e,t<<24>>24)},setUint8:function(e,t){oe(this,e,t<<24>>24)}},{unsafe:!0})}else M=(A=function(e){u(this,M);var t=f(e);B(this,{bytes:R(F(t),0),byteLength:t}),a||(this.byteLength=t)}).prototype,P=(E=function(e,t,n){u(this,P),u(e,M);var o=w(e).byteLength,r=m(t);if(r<0||r>o)throw D("Wrong offset");if(r+(n=n===undefined?o-r:p(n))>o)throw D("Wrong length");B(this,{buffer:e,byteLength:n,byteOffset:r}),a||(this.buffer=e,this.byteLength=n,this.byteOffset=r)}).prototype,a&&($(A,"byteLength"),$(E,"buffer"),$(E,"byteLength"),$(E,"byteOffset")),d(P,{getInt8:function(e){return X(this,1,e)[0]<<24>>24},getUint8:function(e){return X(this,1,e)[0]},getInt16:function(e){var t=X(this,2,e,arguments.length>1?arguments[1]:undefined);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=X(this,2,e,arguments.length>1?arguments[1]:undefined);return t[1]<<8|t[0]},getInt32:function(e){return G(X(this,4,e,arguments.length>1?arguments[1]:undefined))},getUint32:function(e){return G(X(this,4,e,arguments.length>1?arguments[1]:undefined))>>>0},getFloat32:function(e){return z(X(this,4,e,arguments.length>1?arguments[1]:undefined),23)},getFloat64:function(e){return z(X(this,8,e,arguments.length>1?arguments[1]:undefined),52)},setInt8:function(e,t){Q(this,1,e,U,t)},setUint8:function(e,t){Q(this,1,e,U,t)},setInt16:function(e,t){Q(this,2,e,H,t,arguments.length>2?arguments[2]:undefined)},setUint16:function(e,t){Q(this,2,e,H,t,arguments.length>2?arguments[2]:undefined)},setInt32:function(e,t){Q(this,4,e,q,t,arguments.length>2?arguments[2]:undefined)},setUint32:function(e,t){Q(this,4,e,q,t,arguments.length>2?arguments[2]:undefined)},setFloat32:function(e,t){Q(this,4,e,K,t,arguments.length>2?arguments[2]:undefined)},setFloat64:function(e,t){Q(this,8,e,Y,t,arguments.length>2?arguments[2]:undefined)}});_(A,L),_(E,S),e.exports={ArrayBuffer:A,DataView:E}},21497:function(e,t,n){"use strict";var o=n(73502),r=n(312),a=n(10950),i=n(33099),c=Math.min;e.exports=[].copyWithin||function(e,t){var n=o(this),l=a(n),d=r(e,l),s=r(t,l),u=arguments.length>2?arguments[2]:undefined,m=c((u===undefined?l:r(u,l))-s,l-d),p=1;for(s0;)s in n?n[d]=n[s]:i(n,d),d+=p,s+=p;return n}},8093:function(e,t,n){"use strict";var o=n(73502),r=n(312),a=n(10950);e.exports=function(e){for(var t=o(this),n=a(t),i=arguments.length,c=r(i>1?arguments[1]:undefined,n),l=i>2?arguments[2]:undefined,d=l===undefined?n:r(l,n);d>c;)t[c++]=e;return t}},29074:function(e,t,n){"use strict";var o=n(36249).forEach,r=n(74640)("forEach");e.exports=r?[].forEach:function(e){return o(this,e,arguments.length>1?arguments[1]:undefined)}},15993:function(e,t,n){"use strict";var o=n(10950);e.exports=function(e,t){for(var n=0,r=o(t),a=new e(r);r>n;)a[n]=t[n++];return a}},49981:function(e,t,n){"use strict";var o=n(9341),r=n(76348),a=n(73502),i=n(63635),c=n(94535),l=n(49332),d=n(10950),s=n(61154),u=n(93247),m=n(52522),p=Array;e.exports=function(e){var t=a(e),n=l(this),f=arguments.length,h=f>1?arguments[1]:undefined,C=h!==undefined;C&&(h=o(h,f>2?arguments[2]:undefined));var b,N,g,V,v,_,y=m(t),k=0;if(!y||this===p&&c(y))for(b=d(t),N=n?new this(b):p(b);b>k;k++)_=C?h(t[k],k):t[k],s(N,k,_);else for(v=(V=u(t,y)).next,N=n?new this:[];!(g=r(v,V)).done;k++)_=C?i(V,h,[g.value,k],!0):g.value,s(N,k,_);return N.length=k,N}},89344:function(e,t,n){"use strict";var o=n(4254),r=n(312),a=n(10950),i=function(e){return function(t,n,i){var c,l=o(t),d=a(l),s=r(i,d);if(e&&n!=n){for(;d>s;)if((c=l[s++])!=c)return!0}else for(;d>s;s++)if((e||s in l)&&l[s]===n)return e||s||0;return!e&&-1}};e.exports={includes:i(!0),indexOf:i(!1)}},36249:function(e,t,n){"use strict";var o=n(9341),r=n(90655),a=n(83609),i=n(73502),c=n(10950),l=n(64711),d=r([].push),s=function(e){var t=1==e,n=2==e,r=3==e,s=4==e,u=6==e,m=7==e,p=5==e||u;return function(f,h,C,b){for(var N,g,V=i(f),v=a(V),_=o(h,C),y=c(v),k=0,x=b||l,w=t?x(f,y):n||m?x(f,0):undefined;y>k;k++)if((p||k in v)&&(g=_(N=v[k],k,V),e))if(t)w[k]=g;else if(g)switch(e){case 3:return!0;case 5:return N;case 6:return k;case 2:d(w,N)}else switch(e){case 4:return!1;case 7:d(w,N)}return u?-1:r||s?s:w}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},93881:function(e,t,n){"use strict";var o=n(10261),r=n(4254),a=n(94868),i=n(10950),c=n(74640),l=Math.min,d=[].lastIndexOf,s=!!d&&1/[1].lastIndexOf(1,-0)<0,u=c("lastIndexOf"),m=s||!u;e.exports=m?function(e){if(s)return o(d,this,arguments)||0;var t=r(this),n=i(t),c=n-1;for(arguments.length>1&&(c=l(c,a(arguments[1]))),c<0&&(c=n+c);c>=0;c--)if(c in t&&t[c]===e)return c||0;return-1}:d},10112:function(e,t,n){"use strict";var o=n(39125),r=n(43741),a=n(64279),i=r("species");e.exports=function(e){return a>=51||!o((function(){var t=[];return(t.constructor={})[i]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},74640:function(e,t,n){"use strict";var o=n(39125);e.exports=function(e,t){var n=[][e];return!!n&&o((function(){n.call(null,t||function(){return 1},1)}))}},21038:function(e,t,n){"use strict";var o=n(7696),r=n(73502),a=n(83609),i=n(10950),c=TypeError,l=function(e){return function(t,n,l,d){o(n);var s=r(t),u=a(s),m=i(s),p=e?m-1:0,f=e?-1:1;if(l<2)for(;;){if(p in u){d=u[p],p+=f;break}if(p+=f,e?p<0:m<=p)throw c("Reduce of empty array with no initial value")}for(;e?p>=0:m>p;p+=f)p in u&&(d=n(d,u[p],p,s));return d}};e.exports={left:l(!1),right:l(!0)}},74337:function(e,t,n){"use strict";var o=n(312),r=n(10950),a=n(61154),i=Array,c=Math.max;e.exports=function(e,t,n){for(var l=r(e),d=o(t,l),s=o(n===undefined?l:n,l),u=i(c(s-d,0)),m=0;d0;)e[o]=e[--o];o!==a++&&(e[o]=n)}return e},i=function(e,t,n,o){for(var r=t.length,a=n.length,i=0,c=0;i1?arguments[1]:undefined);t=t?t.next:n.first;)for(o(t.value,t.key,this);t&&t.removed;)t=t.previous},has:function(e){return!!N(this,e)}}),a(p,n?{get:function(e){var t=N(this,e);return t&&t.value},set:function(e,t){return b(this,0===e?0:e,t)}}:{add:function(e){return b(this,e=0===e?0:e,e)}}),u&&o(p,"size",{get:function(){return C(this).size}}),s},setStrong:function(e,t,n){var o=t+" Iterator",r=h(t),a=h(o);d(e,t,(function(e,t){f(this,{type:o,target:e,state:r(e),kind:t,last:undefined})}),(function(){for(var e=a(this),t=e.kind,n=e.last;n&&n.removed;)n=n.previous;return e.target&&(e.last=n=n?n.next:e.state.first)?"keys"==t?{value:n.key,done:!1}:"values"==t?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(e.target=undefined,{value:undefined,done:!0})}),n?"entries":"values",!n,!0),s(t)}}},81995:function(e,t,n){"use strict";var o=n(90655),r=n(60495),a=n(49632).getWeakData,i=n(65522),c=n(5484),l=n(41706),d=n(47916),s=n(36249),u=n(77807),m=n(48797),p=m.set,f=m.getterFor,h=s.find,C=s.findIndex,b=o([].splice),N=0,g=function(e){return e.frozen||(e.frozen=new V)},V=function(){this.entries=[]},v=function(e,t){return h(e.entries,(function(e){return e[0]===t}))};V.prototype={get:function(e){var t=v(this,e);if(t)return t[1]},has:function(e){return!!v(this,e)},set:function(e,t){var n=v(this,e);n?n[1]=t:this.entries.push([e,t])},"delete":function(e){var t=C(this.entries,(function(t){return t[0]===e}));return~t&&b(this.entries,t,1),!!~t}},e.exports={getConstructor:function(e,t,n,o){var s=e((function(e,r){l(e,m),p(e,{type:t,id:N++,frozen:undefined}),r!=undefined&&d(r,e[o],{that:e,AS_ENTRIES:n})})),m=s.prototype,h=f(t),C=function(e,t,n){var o=h(e),r=a(i(t),!0);return!0===r?g(o).set(t,n):r[o.id]=n,e};return r(m,{"delete":function(e){var t=h(this);if(!c(e))return!1;var n=a(e);return!0===n?g(t)["delete"](e):n&&u(n,t.id)&&delete n[t.id]},has:function(e){var t=h(this);if(!c(e))return!1;var n=a(e);return!0===n?g(t).has(e):n&&u(n,t.id)}}),r(m,n?{get:function(e){var t=h(this);if(c(e)){var n=a(e);return!0===n?g(t).get(e):n?n[t.id]:undefined}},set:function(e,t){return C(this,e,t)}}:{add:function(e){return C(this,e,!0)}}),s}}},18291:function(e,t,n){"use strict";var o=n(59450),r=n(61770),a=n(90655),i=n(16851),c=n(73e3),l=n(49632),d=n(47916),s=n(41706),u=n(45744),m=n(5484),p=n(39125),f=n(98994),h=n(93182),C=n(75121);e.exports=function(e,t,n){var b=-1!==e.indexOf("Map"),N=-1!==e.indexOf("Weak"),g=b?"set":"add",V=r[e],v=V&&V.prototype,_=V,y={},k=function(e){var t=a(v[e]);c(v,e,"add"==e?function(e){return t(this,0===e?0:e),this}:"delete"==e?function(e){return!(N&&!m(e))&&t(this,0===e?0:e)}:"get"==e?function(e){return N&&!m(e)?undefined:t(this,0===e?0:e)}:"has"==e?function(e){return!(N&&!m(e))&&t(this,0===e?0:e)}:function(e,n){return t(this,0===e?0:e,n),this})};if(i(e,!u(V)||!(N||v.forEach&&!p((function(){(new V).entries().next()})))))_=n.getConstructor(t,e,b,g),l.enable();else if(i(e,!0)){var x=new _,w=x[g](N?{}:-0,1)!=x,B=p((function(){x.has(1)})),L=f((function(e){new V(e)})),S=!N&&p((function(){for(var e=new V,t=5;t--;)e[g](t,t);return!e.has(-0)}));L||((_=t((function(e,t){s(e,v);var n=C(new V,e,_);return t!=undefined&&d(t,n[g],{that:n,AS_ENTRIES:b}),n}))).prototype=v,v.constructor=_),(B||S)&&(k("delete"),k("has"),b&&k("get")),(S||w)&&k(g),N&&v.clear&&delete v.clear}return y[e]=_,o({global:!0,constructor:!0,forced:_!=V},y),h(_,e),N||n.setStrong(_,e,b),_}},35155:function(e,t,n){"use strict";var o=n(77807),r=n(75379),a=n(12488),i=n(92723);e.exports=function(e,t,n){for(var c=r(t),l=i.f,d=a.f,s=0;s"+l+""+t+">"}},92413:function(e,t,n){"use strict";var o=n(80936).IteratorPrototype,r=n(48525),a=n(20471),i=n(93182),c=n(53481),l=function(){return this};e.exports=function(e,t,n,d){var s=t+" Iterator";return e.prototype=r(o,{next:a(+!d,n)}),i(e,s,!1,!0),c[s]=l,e}},87229:function(e,t,n){"use strict";var o=n(77849),r=n(92723),a=n(20471);e.exports=o?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},20471:function(e){"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},61154:function(e,t,n){"use strict";var o=n(23986),r=n(92723),a=n(20471);e.exports=function(e,t,n){var i=o(t);i in e?r.f(e,i,a(0,n)):e[i]=n}},36849:function(e,t,n){"use strict";var o=n(90655),r=n(39125),a=n(79408).start,i=RangeError,c=Math.abs,l=Date.prototype,d=l.toISOString,s=o(l.getTime),u=o(l.getUTCDate),m=o(l.getUTCFullYear),p=o(l.getUTCHours),f=o(l.getUTCMilliseconds),h=o(l.getUTCMinutes),C=o(l.getUTCMonth),b=o(l.getUTCSeconds);e.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=d.call(new Date(-50000000000001))}))||!r((function(){d.call(new Date(NaN))}))?function(){if(!isFinite(s(this)))throw i("Invalid time value");var e=this,t=m(e),n=f(e),o=t<0?"-":t>9999?"+":"";return o+a(c(t),o?6:4,0)+"-"+a(C(e)+1,2,0)+"-"+a(u(e),2,0)+"T"+a(p(e),2,0)+":"+a(h(e),2,0)+":"+a(b(e),2,0)+"."+a(n,3,0)+"Z"}:d},81990:function(e,t,n){"use strict";var o=n(65522),r=n(2118),a=TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return r(this,e)}},66384:function(e,t,n){"use strict";var o=n(28859),r=n(92723);e.exports=function(e,t,n){return n.get&&o(n.get,t,{getter:!0}),n.set&&o(n.set,t,{setter:!0}),r.f(e,t,n)}},73e3:function(e,t,n){"use strict";var o=n(45744),r=n(92723),a=n(28859),i=n(58962);e.exports=function(e,t,n,c){c||(c={});var l=c.enumerable,d=c.name!==undefined?c.name:t;return o(n)&&a(n,d,c),c.global?l?e[t]=n:i(t,n):(c.unsafe?e[t]&&(l=!0):delete e[t],l?e[t]=n:r.f(e,t,{value:n,enumerable:!1,configurable:!c.nonConfigurable,writable:!c.nonWritable})),e}},60495:function(e,t,n){"use strict";var o=n(73e3);e.exports=function(e,t,n){for(var r in t)o(e,r,t[r],n);return e}},58962:function(e,t,n){"use strict";var o=n(61770),r=Object.defineProperty;e.exports=function(e,t){try{r(o,e,{value:t,configurable:!0,writable:!0})}catch(n){o[e]=t}return t}},11335:function(e,t,n){"use strict";var o=n(59450),r=n(76348),a=n(37249),i=n(82429),c=n(45744),l=n(92413),d=n(56997),s=n(44958),u=n(93182),m=n(87229),p=n(73e3),f=n(43741),h=n(53481),C=n(80936),b=i.PROPER,N=i.CONFIGURABLE,g=C.IteratorPrototype,V=C.BUGGY_SAFARI_ITERATORS,v=f("iterator"),_="keys",y="values",k="entries",x=function(){return this};e.exports=function(e,t,n,i,f,C,w){l(n,t,i);var B,L,S,I=function(e){if(e===f&&P)return P;if(!V&&e in M)return M[e];switch(e){case _:case y:case k:return function(){return new n(this,e)}}return function(){return new n(this)}},T=t+" Iterator",A=!1,M=e.prototype,E=M[v]||M["@@iterator"]||f&&M[f],P=!V&&E||I(f),O="Array"==t&&M.entries||E;if(O&&(B=d(O.call(new e)))!==Object.prototype&&B.next&&(a||d(B)===g||(s?s(B,g):c(B[v])||p(B,v,x)),u(B,T,!0,!0),a&&(h[T]=x)),b&&f==y&&E&&E.name!==y&&(!a&&N?m(M,"name",y):(A=!0,P=function(){return r(E,this)})),f)if(L={values:I(y),keys:C?P:I(_),entries:I(k)},w)for(S in L)(V||A||!(S in M))&&p(M,S,L[S]);else o({target:t,proto:!0,forced:V||A},L);return a&&!w||M[v]===P||p(M,v,P,{name:f}),h[t]=P,L}},89604:function(e,t,n){"use strict";var o=n(62660),r=n(77807),a=n(68438),i=n(92723).f;e.exports=function(e){var t=o.Symbol||(o.Symbol={});r(t,e)||i(t,e,{value:a.f(e)})}},33099:function(e,t,n){"use strict";var o=n(56279),r=TypeError;e.exports=function(e,t){if(!delete e[t])throw r("Cannot delete property "+o(t)+" of "+o(e))}},77849:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},50842:function(e,t,n){"use strict";var o=n(61770),r=n(5484),a=o.document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},97989:function(e){"use strict";var t=TypeError;e.exports=function(e){if(e>9007199254740991)throw t("Maximum allowed index exceeded");return e}},13811:function(e,t,n){"use strict";var o=n(42630).match(/firefox\/(\d+)/i);e.exports=!!o&&+o[1]},15904:function(e){"use strict";e.exports="object"==typeof window&&"object"!=typeof Deno},86936:function(e,t,n){"use strict";var o=n(42630);e.exports=/MSIE|Trident/.test(o)},48715:function(e,t,n){"use strict";var o=n(42630),r=n(61770);e.exports=/ipad|iphone|ipod/i.test(o)&&r.Pebble!==undefined},25515:function(e,t,n){"use strict";var o=n(42630);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(o)},67745:function(e,t,n){"use strict";var o=n(61496),r=n(61770);e.exports="process"==o(r.process)},35016:function(e,t,n){"use strict";var o=n(42630);e.exports=/web0s(?!.*chrome)/i.test(o)},42630:function(e,t,n){"use strict";var o=n(54965);e.exports=o("navigator","userAgent")||""},64279:function(e,t,n){"use strict";var o,r,a=n(61770),i=n(42630),c=a.process,l=a.Deno,d=c&&c.versions||l&&l.version,s=d&&d.v8;s&&(r=(o=s.split("."))[0]>0&&o[0]<4?1:+(o[0]+o[1])),!r&&i&&(!(o=i.match(/Edge\/(\d+)/))||o[1]>=74)&&(o=i.match(/Chrome\/(\d+)/))&&(r=+o[1]),e.exports=r},86778:function(e,t,n){"use strict";var o=n(42630).match(/AppleWebKit\/(\d+)\./);e.exports=!!o&&+o[1]},59096:function(e){"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},59450:function(e,t,n){"use strict";var o=n(61770),r=n(12488).f,a=n(87229),i=n(73e3),c=n(58962),l=n(35155),d=n(16851);e.exports=function(e,t){var n,s,u,m,p,f=e.target,h=e.global,C=e.stat;if(n=h?o:C?o[f]||c(f,{}):(o[f]||{}).prototype)for(s in t){if(m=t[s],u=e.dontCallGetSet?(p=r(n,s))&&p.value:n[s],!d(h?s:f+(C?".":"#")+s,e.forced)&&u!==undefined){if(typeof m==typeof u)continue;l(m,u)}(e.sham||u&&u.sham)&&a(m,"sham",!0),i(n,s,m,e)}}},39125:function(e){"use strict";e.exports=function(e){try{return!!e()}catch(t){return!0}}},6531:function(e,t,n){"use strict";n(50044);var o=n(90655),r=n(73e3),a=n(50174),i=n(39125),c=n(43741),l=n(87229),d=c("species"),s=RegExp.prototype;e.exports=function(e,t,n,u){var m=c(e),p=!i((function(){var t={};return t[m]=function(){return 7},7!=""[e](t)})),f=p&&!i((function(){var t=!1,n=/a/;return"split"===e&&((n={}).constructor={},n.constructor[d]=function(){return n},n.flags="",n[m]=/./[m]),n.exec=function(){return t=!0,null},n[m](""),!t}));if(!p||!f||n){var h=o(/./[m]),C=t(m,""[e],(function(e,t,n,r,i){var c=o(e),l=t.exec;return l===a||l===s.exec?p&&!i?{done:!0,value:h(t,n,r)}:{done:!0,value:c(n,t,r)}:{done:!1}}));r(String.prototype,e,C[0]),r(s,m,C[1])}u&&l(s[m],"sham",!0)}},23507:function(e,t,n){"use strict";var o=n(98037),r=n(10950),a=n(97989),i=n(9341);e.exports=function c(e,t,n,l,d,s,u,m){for(var p,f=d,h=0,C=!!u&&i(u,m);h0&&o(p)?f=c(e,t,p,r(p),f,s-1)-1:(a(f+1),e[f]=p),f++),h++;return f}},57724:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){return Object.isExtensible(Object.preventExtensions({}))}))},10261:function(e,t,n){"use strict";var o=n(14687),r=Function.prototype,a=r.apply,i=r.call;e.exports="object"==typeof Reflect&&Reflect.apply||(o?i.bind(a):function(){return i.apply(a,arguments)})},9341:function(e,t,n){"use strict";var o=n(90655),r=n(7696),a=n(14687),i=o(o.bind);e.exports=function(e,t){return r(e),t===undefined?e:a?i(e,t):function(){return e.apply(t,arguments)}}},14687:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},38349:function(e,t,n){"use strict";var o=n(90655),r=n(7696),a=n(5484),i=n(77807),c=n(53898),l=n(14687),d=Function,s=o([].concat),u=o([].join),m={},p=function(e,t,n){if(!i(m,t)){for(var o=[],r=0;r]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,n,o,u,m){var p=n+e.length,f=o.length,h=s;return u!==undefined&&(u=r(u),h=d),c(m,h,(function(r,c){var d;switch(i(c,0)){case"$":return"$";case"&":return e;case"`":return l(t,0,n);case"'":return l(t,p);case"<":d=u[l(c,1,-1)];break;default:var s=+c;if(0===s)return r;if(s>f){var m=a(s/10);return 0===m?r:m<=f?o[m-1]===undefined?i(c,1):o[m-1]+i(c,1):r}d=o[s-1]}return d===undefined?"":d}))}},61770:function(e,t,n){"use strict";var o=function(e){return e&&e.Math==Math&&e};e.exports=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},77807:function(e,t,n){"use strict";var o=n(90655),r=n(73502),a=o({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return a(r(e),t)}},31645:function(e){"use strict";e.exports={}},66791:function(e,t,n){"use strict";var o=n(61770);e.exports=function(e,t){var n=o.console;n&&n.error&&(1==arguments.length?n.error(e):n.error(e,t))}},29093:function(e,t,n){"use strict";var o=n(54965);e.exports=o("document","documentElement")},17041:function(e,t,n){"use strict";var o=n(77849),r=n(39125),a=n(50842);e.exports=!o&&!r((function(){return 7!=Object.defineProperty(a("div"),"a",{get:function(){return 7}}).a}))},29209:function(e){"use strict";var t=Array,n=Math.abs,o=Math.pow,r=Math.floor,a=Math.log,i=Math.LN2;e.exports={pack:function(e,c,l){var d,s,u,m=t(l),p=8*l-c-1,f=(1<>1,C=23===c?o(2,-24)-o(2,-77):0,b=e<0||0===e&&1/e<0?1:0,N=0;for((e=n(e))!=e||e===Infinity?(s=e!=e?1:0,d=f):(d=r(a(e)/i),e*(u=o(2,-d))<1&&(d--,u*=2),(e+=d+h>=1?C/u:C*o(2,1-h))*u>=2&&(d++,u/=2),d+h>=f?(s=0,d=f):d+h>=1?(s=(e*u-1)*o(2,c),d+=h):(s=e*o(2,h-1)*o(2,c),d=0));c>=8;)m[N++]=255&s,s/=256,c-=8;for(d=d<0;)m[N++]=255&d,d/=256,p-=8;return m[--N]|=128*b,m},unpack:function(e,t){var n,r=e.length,a=8*r-t-1,i=(1<>1,l=a-7,d=r-1,s=e[d--],u=127&s;for(s>>=7;l>0;)u=256*u+e[d--],l-=8;for(n=u&(1<<-l)-1,u>>=-l,l+=t;l>0;)n=256*n+e[d--],l-=8;if(0===u)u=1-c;else{if(u===i)return n?NaN:s?-Infinity:Infinity;n+=o(2,t),u-=c}return(s?-1:1)*n*o(2,u-t)}}},83609:function(e,t,n){"use strict";var o=n(90655),r=n(39125),a=n(61496),i=Object,c=o("".split);e.exports=r((function(){return!i("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):i(e)}:i},75121:function(e,t,n){"use strict";var o=n(45744),r=n(5484),a=n(44958);e.exports=function(e,t,n){var i,c;return a&&o(i=t.constructor)&&i!==n&&r(c=i.prototype)&&c!==n.prototype&&a(e,c),e}},44790:function(e,t,n){"use strict";var o=n(90655),r=n(45744),a=n(42878),i=o(Function.toString);r(a.inspectSource)||(a.inspectSource=function(e){return i(e)}),e.exports=a.inspectSource},49632:function(e,t,n){"use strict";var o=n(59450),r=n(90655),a=n(31645),i=n(5484),c=n(77807),l=n(92723).f,d=n(94600),s=n(25586),u=n(65067),m=n(8220),p=n(57724),f=!1,h=m("meta"),C=0,b=function(e){l(e,h,{value:{objectID:"O"+C++,weakData:{}}})},N=e.exports={enable:function(){N.enable=function(){},f=!0;var e=d.f,t=r([].splice),n={};n[h]=1,e(n).length&&(d.f=function(n){for(var o=e(n),r=0,a=o.length;rN;N++)if((V=S(e[N]))&&d(h,V))return V;return new f(!1)}C=s(e,b)}for(v=C.next;!(_=r(v,C)).done;){try{V=S(_.value)}catch(I){m(C,"throw",I)}if("object"==typeof V&&V&&d(h,V))return V}return new f(!1)}},80261:function(e,t,n){"use strict";var o=n(76348),r=n(65522),a=n(36750);e.exports=function(e,t,n){var i,c;r(e);try{if(!(i=a(e,"return"))){if("throw"===t)throw n;return n}i=o(i,e)}catch(l){c=!0,i=l}if("throw"===t)throw n;if(c)throw i;return r(i),n}},80936:function(e,t,n){"use strict";var o,r,a,i=n(39125),c=n(45744),l=n(48525),d=n(56997),s=n(73e3),u=n(43741),m=n(37249),p=u("iterator"),f=!1;[].keys&&("next"in(a=[].keys())?(r=d(d(a)))!==Object.prototype&&(o=r):f=!0),o==undefined||i((function(){var e={};return o[p].call(e)!==e}))?o={}:m&&(o=l(o)),c(o[p])||s(o,p,(function(){return this})),e.exports={IteratorPrototype:o,BUGGY_SAFARI_ITERATORS:f}},53481:function(e){"use strict";e.exports={}},10950:function(e,t,n){"use strict";var o=n(87543);e.exports=function(e){return o(e.length)}},28859:function(e,t,n){"use strict";var o=n(39125),r=n(45744),a=n(77807),i=n(77849),c=n(82429).CONFIGURABLE,l=n(44790),d=n(48797),s=d.enforce,u=d.get,m=Object.defineProperty,p=i&&!o((function(){return 8!==m((function(){}),"length",{value:8}).length})),f=String(String).split("String"),h=e.exports=function(e,t,n){"Symbol("===String(t).slice(0,7)&&(t="["+String(t).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(t="get "+t),n&&n.setter&&(t="set "+t),(!a(e,"name")||c&&e.name!==t)&&m(e,"name",{value:t,configurable:!0}),p&&n&&a(n,"arity")&&e.length!==n.arity&&m(e,"length",{value:n.arity});try{n&&a(n,"constructor")&&n.constructor?i&&m(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=undefined)}catch(r){}var o=s(e);return a(o,"source")||(o.source=f.join("string"==typeof t?t:"")),e};Function.prototype.toString=h((function(){return r(this)&&u(this).source||l(this)}),"toString")},73346:function(e){"use strict";var t=Math.expm1,n=Math.exp;e.exports=!t||t(10)>22025.465794806718||t(10)<22025.465794806718||-2e-17!=t(-2e-17)?function(e){var t=+e;return 0==t?t:t>-1e-6&&t<1e-6?t+t*t/2:n(t)-1}:t},92647:function(e,t,n){"use strict";var o=n(61303),r=Math.abs,a=Math.pow,i=a(2,-52),c=a(2,-23),l=a(2,127)*(2-c),d=a(2,-126);e.exports=Math.fround||function(e){var t,n,a=+e,s=r(a),u=o(a);return sl||n!=n?u*Infinity:u*n}},12153:function(e){"use strict";var t=Math.log,n=Math.LOG10E;e.exports=Math.log10||function(e){return t(e)*n}},28010:function(e){"use strict";var t=Math.log;e.exports=Math.log1p||function(e){var n=+e;return n>-1e-8&&n<1e-8?n-n*n/2:t(1+n)}},61303:function(e){"use strict";e.exports=Math.sign||function(e){var t=+e;return 0==t||t!=t?t:t<0?-1:1}},9275:function(e){"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var o=+e;return(o>0?n:t)(o)}},34063:function(e,t,n){"use strict";var o,r,a,i,c,l,d,s,u=n(61770),m=n(9341),p=n(12488).f,f=n(61777).set,h=n(25515),C=n(48715),b=n(35016),N=n(67745),g=u.MutationObserver||u.WebKitMutationObserver,V=u.document,v=u.process,_=u.Promise,y=p(u,"queueMicrotask"),k=y&&y.value;k||(o=function(){var e,t;for(N&&(e=v.domain)&&e.exit();r;){t=r.fn,r=r.next;try{t()}catch(n){throw r?i():a=undefined,n}}a=undefined,e&&e.enter()},h||N||b||!g||!V?!C&&_&&_.resolve?((d=_.resolve(undefined)).constructor=_,s=m(d.then,d),i=function(){s(o)}):N?i=function(){v.nextTick(o)}:(f=m(f,u),i=function(){f(o)}):(c=!0,l=V.createTextNode(""),new g(o).observe(l,{characterData:!0}),i=function(){l.data=c=!c})),e.exports=k||function(e){var t={fn:e,next:undefined};a&&(a.next=t),r||(r=t,i()),a=t}},58822:function(e,t,n){"use strict";var o=n(67581);e.exports=o&&!!Symbol["for"]&&!!Symbol.keyFor},67581:function(e,t,n){"use strict";var o=n(64279),r=n(39125);e.exports=!!Object.getOwnPropertySymbols&&!r((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&o&&o<41}))},37494:function(e,t,n){"use strict";var o=n(61770),r=n(45744),a=n(44790),i=o.WeakMap;e.exports=r(i)&&/native code/.test(a(i))},16002:function(e,t,n){"use strict";var o=n(7696),r=function(e){var t,n;this.promise=new e((function(e,o){if(t!==undefined||n!==undefined)throw TypeError("Bad Promise constructor");t=e,n=o})),this.resolve=o(t),this.reject=o(n)};e.exports.f=function(e){return new r(e)}},96794:function(e,t,n){"use strict";var o=n(71857),r=TypeError;e.exports=function(e){if(o(e))throw r("The method doesn't accept regular expressions");return e}},46329:function(e,t,n){"use strict";var o=n(61770).isFinite;e.exports=Number.isFinite||function(e){return"number"==typeof e&&o(e)}},90119:function(e,t,n){"use strict";var o=n(61770),r=n(39125),a=n(90655),i=n(95372),c=n(56404).trim,l=n(93966),d=a("".charAt),s=o.parseFloat,u=o.Symbol,m=u&&u.iterator,p=1/s(l+"-0")!=-Infinity||m&&!r((function(){s(Object(m))}));e.exports=p?function(e){var t=c(i(e)),n=s(t);return 0===n&&"-"==d(t,0)?-0:n}:s},80280:function(e,t,n){"use strict";var o=n(61770),r=n(39125),a=n(90655),i=n(95372),c=n(56404).trim,l=n(93966),d=o.parseInt,s=o.Symbol,u=s&&s.iterator,m=/^[+-]?0x/i,p=a(m.exec),f=8!==d(l+"08")||22!==d(l+"0x16")||u&&!r((function(){d(Object(u))}));e.exports=f?function(e,t){var n=c(i(e));return d(n,t>>>0||(p(m,n)?16:10))}:d},35350:function(e,t,n){"use strict";var o=n(77849),r=n(90655),a=n(76348),i=n(39125),c=n(21417),l=n(41543),d=n(89328),s=n(73502),u=n(83609),m=Object.assign,p=Object.defineProperty,f=r([].concat);e.exports=!m||i((function(){if(o&&1!==m({b:1},m(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=m({},e)[n]||c(m({},t)).join("")!=r}))?function(e,t){for(var n=s(e),r=arguments.length,i=1,m=l.f,p=d.f;r>i;)for(var h,C=u(arguments[i++]),b=m?f(c(C),m(C)):c(C),N=b.length,g=0;N>g;)h=b[g++],o&&!a(p,C,h)||(n[h]=C[h]);return n}:m},48525:function(e,t,n){"use strict";var o,r=n(65522),a=n(86328),i=n(59096),c=n(31645),l=n(29093),d=n(50842),s=n(95541),u=s("IE_PROTO"),m=function(){},p=function(e){return"